diff --git a/Changelog b/Changelog
index 2290b9d2c296d3f010874f619dec8c3d98ef6ca0..4ed47db6484aba239150f55906fc66acc51b56a7 100644
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,32 @@
 FusionDirectory changelog
 =========================
 
+* FusionDirectory 1.0.17
+
+[Fix] FusionDirectory plugins - Bugs #4953: auto.master should be stored into ldap
+[Fix] Bugs #5190: Too many ldap request when loading user list
+[Fix] Bugs #5191: Too many ldap request when loading list (snapshots)
+[Fix] FusionDirectory plugins - Bugs #5192: Fusiondirectory ldapmanager plugin fatal error when importing a ldif file
+[Fix] Bugs #5194: wrong icons / issue with objectType class_groupManagement.inc
+[Fix] Bugs #5195: Undefined index: dn / del_lock()
+FusionDirectory plugins - Bugs #5196: webservice: object is modified instead of created
+|Fix] FusionDirectory plugins - Bugs #5197: removing the ldif for default policy from the ppolicy plugin,
+[Feature] FusionDirectory plugins - Bugs #5198: merge the dhcp code from 1.1 into 1.0.17
+|Fix] FusionDirectory plugins - Bugs #5225: due to dhcp modification the network section on system is not inside a section
+[Fix] FusionDirectory plugins - Bugs #5226: audit showing an error everytime we save an dhcp object
+[Fix] FusionDirectory plugins - Bugs #5227: moving from branch inside a dhcp entry
+[Fix] FusionDirectory plugins - Bugs #5228: when trying to copy a dhcp entry is get Missing argument 3 for userinfo::is_copyable(), called in /usr/share/fusiondirectory/include/class_CopyPasteHandler.inc on line 226 and defined" - File: /usr/share/fusiondirectory/include/class_userinfo.inc (Line 31
+[Fix] FusionDirectory plugins - Bugs #5229: when i have a system who is in the dhcp range of my dhcp server, it find and display the right data but don't save it
+[Feature] Bugs #5230: we need a fusiondirectory-setup --migrate-dhcp
+|Fix] FusionDirectory plugins - Bugs #5231: we should not be able to remove the global
+[Feature] FusionDirectory plugins - Bugs #5232: we miss a dropdown for failover in the Create new DHCP section
+[Fix] FusionDirectory plugins - Bugs #5233: Remove ppolicydefault.ldif and dhcpd.schema from source
+[Fix] Bugs #5234: Plugin's configuration are not inserted if they are already installed
+[Fix] FusionDirectory plugins - Bugs #5236: Missed icon and CSS error
+[Fix] Bugs #5237: ogroup icon not clickable
+[Feature] FusionDirectory plugins - Wishlist #5193: Add ppolicy tab for DSA accounts
+[Feature] FusionDirectory plugins - Wishlist #5239: Champs pour enregistrer la volonté d'afficher la photo de la personne sur le site web
+
 * FusionDirectory 1.0.16
 
 |Fix] Bugs #3587: Edit a template add bad characters
diff --git a/contrib/bin/fusiondirectory-setup b/contrib/bin/fusiondirectory-setup
index 20f5e8536315450c1c5c7cdeb280512ce670dc3f..1e23fd04ef9b11e8ab5513abbbb0e01cfcc132a2 100644
--- a/contrib/bin/fusiondirectory-setup
+++ b/contrib/bin/fusiondirectory-setup
@@ -93,6 +93,7 @@ my $aclrolerdn  = "ou=aclroles";
 my $grouprdn    = "ou=groups";
 my $systemrdn   = "ou=systems";
 my $dnsrdn      = "ou=dns";
+my $dhcprdn     = "ou=dhcp";
 
 #################################################################################################################################################
 
@@ -148,7 +149,7 @@ sub ask_user_input {
  return $answer;
 }
 
-# Die on all LDAP error except for «No such object»
+# Die on all LDAP error except for «No such object»
 sub die_on_ldap_errors
 {
   my ($mesg) = @_;
@@ -510,7 +511,7 @@ sub check_rights {
 sub check_directories {
   my $apache_group = get_apache_group();
 
-  # for each config directory
+  # for each config directory
   foreach my $dir (@config_dirs) {
 
       # if $dir is one of the dirs that remains to root
@@ -732,7 +733,7 @@ sub get_ldap_connexion {
   # read ldap's server's info from /etc/fusiondirectory/fusiondirectory.conf
   if (-e $fd_config) {
     my $twig = XML::Twig->new();    # create the twig
-    $twig->safe_parsefile($fd_config) or die("There is an error in $fd_config XML code: ".(split /\n/, $@)[1]."\n");
+    $twig->safe_parsefile($fd_config) or die("There is an error in $fd_config XML code: ".(split /\n/, $@)[1]."\n");
     my @locs = $twig->root->first_child('main')->children('location');
     my %locations = ();
     foreach my $loc (@locs) {
@@ -1299,7 +1300,7 @@ sub migrate_dns {
   foreach my $entry (@entries) {
     if ($entry->dn() !~ m/$dnsrdn/) {
       if (scalar(@baddns) == 0) {
-        print "The following are not in the DNS branch ($dnsrdn):\n";
+        print "The following are not in the DNS branch ($dnsrdn):\n";
       }
       print $entry->dn()."\n";
       push @baddns, $entry->dn();
@@ -1307,9 +1308,9 @@ sub migrate_dns {
   }
 
   if (scalar(@baddns) == 0) {
-    print "They all already are in the DNS branch ($dnsrdn):\n";
+    print "They all already are in the DNS branch ($dnsrdn):\n";
   } else {
-    if (ask_yn_question("Move these entries to the DNS branch ($dnsrdn)?")) {
+    if (ask_yn_question("Move these entries to the DNS branch ($dnsrdn)?")) {
       foreach my $entrydn (@baddns) {
         $entrydn =~ m/^([^,]+),(.+$systemrdn,(.+))$/ or die "Could not parse dn ".$entrydn."\n";
         my $rdn = $1;
@@ -1415,6 +1416,95 @@ sub migrate_dns {
   }
 }
 
+# function that moves DHCP configurations from systems to ou=dhcp
+sub migrate_dhcp {
+  # 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};
+
+  # Search for DHCP configurations
+  my $mesg = $ldap->search(
+    base => "$base",
+    filter => "(objectClass=dhcpService)",
+    attrs => ['cn']
+  );
+  $mesg->code && die $mesg->error;
+
+  my @entries = $mesg->entries;
+
+  print "There are ".$mesg->count." DHCP configurations in the LDAP\n";
+
+  my @baddns  = ();
+
+  foreach my $entry (@entries) {
+    if ($entry->dn() !~ m/$dhcprdn/) {
+      if (scalar(@baddns) == 0) {
+        print "The following are not in the DHCP branch ($dhcprdn):\n";
+      }
+      print $entry->dn()."\n";
+      push @baddns, $entry->dn();
+    }
+  }
+
+  if (scalar(@baddns) == 0) {
+    print "They all already are in the DHCP branch ($dhcprdn):\n";
+  } else {
+    if (ask_yn_question("Move these entries to the DHCP branch ($dhcprdn)?")) {
+      foreach my $entrydn (@baddns) {
+        $entrydn =~ m/^([^,]+),(.+$systemrdn,(.+))$/ or die "Could not parse dn ".$entrydn."\n";
+        my $rdn = $1;
+        my $systemdn = $2;
+        my $entrybase = $3;
+        if (!branch_exists($ldap, "$dhcprdn,$entrybase")) {
+          create_branch($ldap, $entrybase, $dhcprdn);
+        }
+        my $result = $ldap->moddn (
+          $entrydn,
+          newrdn        => $rdn,
+          deleteoldrdn  => '1',
+          newsuperior   => "$dhcprdn,$entrybase"
+        );
+        $result->code && die "Migration of DHCP configuration entry failed, LDAP error: ".$result->error."\n";
+
+        my $configDn = "$rdn,$dhcprdn,$entrybase";
+
+        # Add DHCP service on server
+        $mesg = $ldap->search(
+          base    => $systemdn,
+          scope   => 'base',
+          filter  => '(objectClass=*)'
+        );
+        $mesg->code && die $mesg->error;
+        my $system_entry = $mesg->shift_entry;
+        $system_entry->get_value('objectClass');
+        my @classes = $system_entry->get_value('objectClass');
+        if (grep {$_ eq 'dhcpServer'} @classes) {
+          $result = $ldap->modify (
+            "$systemdn",
+            replace => {
+              'dhcpServiceDN' => $configDn,
+            }
+          );
+        } else {
+          $result = $ldap->modify (
+            "$systemdn",
+            replace => {
+              'dhcpServiceDN' => $configDn,
+            },
+            add => {
+              'objectClass' => 'dhcpServer'
+            }
+          );
+        }
+        $result->code && print "Could not add DHCP service on $systemdn, LDAP error: ".$result->error."\nYou'll need to activate it yourself\n";
+      }
+    }
+  }
+}
+
 sub migrate_acls {
   # initiate the LDAP connexion
   my %hash_ldap_param = get_ldap_connexion();
@@ -1794,7 +1884,7 @@ sub ldif_deprecated {
   }
 }
 
-# Read FD config in the LDAP
+# Read FD config in the LDAP
 sub read_ldap_config {
   # initiate the LDAP connexion
   my %hash_ldap_param = get_ldap_connexion();
@@ -1822,6 +1912,9 @@ sub read_ldap_config {
     if (($mesg->entries)[0]->exists('fdDnsRDN')) {
       $dnsrdn = ($mesg->entries)[0]->get_value('fdDnsRDN');
     }
+    if (($mesg->entries)[0]->exists('fdDhcpRDN')) {
+      $dhcprdn = ($mesg->entries)[0]->get_value('fdDhcpRDN');
+    }
   }
 
   return ($mesg->entries)[0];
@@ -1913,6 +2006,7 @@ die ("! You have to run this script as root\n") if ($<!=0);
   $commands{"--migrate-users"}        = ["Migrating your users",                          \&migrate_users];
   $commands{"--migrate-printers"}     = ["Migrating your printer from FD < 1.0.14",       \&migrate_printers];
   $commands{"--migrate-dns"}          = ["Migrating DNS zones for FD 1.0.10",             \&migrate_dns];
+  $commands{"--migrate-dhcp"}         = ["Migrating DHCP configurations for FD >= 1.0.17",\&migrate_dhcp];
   $commands{"--migrate-acls"}         = ["Migrating your ACLs",                           \&migrate_acls];
   $commands{"--delete-gosa-locks"}    = ["Delete lock tokens using old gosaLockEntry class", \&delete_gosa_locks];
   $commands{"--install-plugins"}      = ["Installing FusionDirectory's plugins",          \&install_plugins];
@@ -1924,7 +2018,7 @@ 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{"--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;
@@ -2019,6 +2113,10 @@ This option replace gosaPrinter objectClass by new fdPrinter objectClass.
 
 This option moves DNS zones from systems branch to DNS branch, which is necessary for FusionDirectory 1.0.10 and above.
 
+=item --migrate-dhcp
+
+This option moves DHCP configurations from systems branch to DHCP branch, which is necessary for FusionDirectory 1.0.17 and above.
+
 =item --migrate-acls
 
 This option will migrated old GOsa style acl from 1.0.7 into FusionDirectory acl roles in 1.0.8
diff --git a/contrib/docs/UPGRADE b/contrib/docs/UPGRADE
index 95530c66bdc6a8be520349d93372f062bd11ac6c..2da819d7419b1460fb1a0ee8fef8984ccdd6636e 100644
--- a/contrib/docs/UPGRADE
+++ b/contrib/docs/UPGRADE
@@ -1961,8 +1961,6 @@ You must modify your hook so that they don't use quotes. The attributes are now
 
 In this version by default there is a new more modern theme called breezy. To active it completely go to the configuration plugin, click edit and in the "Look and feel" section select breezy
 
-Enjoy :)
-
 
 Migrate FusionDirectory from 1.0.15 to 1.0.16
 =============================================
@@ -1978,6 +1976,7 @@ http://packages.ubuntu.com/trusty/all/php-cas/download
 
 and select your preferred mirror
 
+
 Upgrade FusionDirectory first
 =============================
 
@@ -2132,6 +2131,193 @@ If they are old objectClasses it will warn you and you will have to remove them
 
 !! Please read it carefully before applying !!
 
+
+Migrate FusionDirectory from 1.0.16 to 1.0.17
+=============================================
+
+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 schemas
+
+if your are using the fai plugin you have to update its schema
+
+fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/fai.schema
+
+if your are using the dhcp plugin you have to install a new schema
+
+fusiondirectory-insert-schema -m /etc/ldap/schema/dhcp-fd-conf.schema
+
+
+Remove old ldif from /etc/ldap/schema/fusiondirectory
+=====================================================
+
+We removed a default ldif from the ppolicy plugin, you can delete it
+safely from /etc/ldap/schema/fusiondirectory/ppolicydefault.ldif
+
+
+Check for deprecated attributes and objectClasses in your LDAP
+==============================================================
+
+The --list-deprecated option of fusiondirectory-setup show deprecated attributes and objectClasses for FusionDirectory
+
+fusiondirectory-setup  --list-deprecated 
+List deprecated attributes and objectclasses
+Deprecated attributes:
+ gotoLpdServer                  (GOto - Gonicus Terminal Concept, value lpdServer.)             - 1.3.6.1.4.1.10098.1.1.1.4
+ fdPhoneMacroRDN                (FusionDirectory - Phone macro RDN)                             - 1.3.6.1.4.1.38414.19.10.2
+ gotoCdromEnable                (GOto - Gonicus Terminal Concept, value cdromEnable.)           - 1.3.6.1.4.1.10098.1.1.1.8
+ gotoFontPath                   (GOto - Gonicus Terminal Concept, value fontPath.)              - 1.3.6.1.4.1.10098.1.1.1.5
+ printerWindowsDriverDir        (Path to directory that contains windows drivers for this printer)      - 1.3.6.1.4.1.38414.6.10.2
+ avHttpProxyURL                 (How to get the updates)                                        - 1.3.6.1.4.1.10098.1.1.9.76
+ avMaxDirectoryRecursions       (Number of recursions done with directories)                    - 1.3.6.1.4.1.10098.1.1.9.69
+ goFonPassword                  (Admin password for fon server)                                 - 1.3.6.1.4.1.10098.1.1.9.27
+ gotoFilesystem                 (GOto - Gonicus Terminal Concept, value filesystem.)            - 1.3.6.1.4.1.10098.1.1.1.6
+ gotoPrinterPPD                 (GOto - Gonicus Terminal Concept, PPD data)                     - 1.3.6.1.4.1.10098.1.1.11.6
+ fdSnapshotAdminDn              (FusionDirectory - Snaphost admin dn)                           - 1.3.6.1.4.1.38414.8.17.4
+ ghUsbSupport                   (Hardware definitions, value usbSupport)                        - 1.3.6.1.4.1.10098.1.1.2.3
+ gotoScannerEnable              (GOto - Gonicus Terminal Concept, value scannerEnable.)         - 1.3.6.1.4.1.10098.1.1.1.10
+ gotoNtpServer                  (GOto - Gonicus Terminal Concept, value ntpServer.)             - 1.3.6.1.4.1.10098.1.1.1.2
+ goFaxPassword                  (Admin password for fax server)                                 - 1.3.6.1.4.1.10098.1.1.9.23
+ gotoSysStatus                  (Keeps current system status - info shown in GOsa)              - 1.3.6.1.4.1.10098.1.1.2.11
+ gotoUserAdminPrinter           (GOto - keeps printers we are admin for)                        - 1.3.6.1.4.1.10098.1.1.11.13
+ ghIdeDev                       (Hardware definitions, value ideDev)                            - 1.3.6.1.4.1.10098.1.1.2.4
+ gotoSndModule                  (GOto - Gonicus Terminal Concept, value sound Modules.)         - 1.3.6.1.4.1.10098.1.1.1.29
+ goFaxAdmin                     (Admin principal for fax server)                                - 1.3.6.1.4.1.10098.1.1.9.22
+ gotoAdaptPath                  (GOto - Gonicus Terminal Concept, value adaptpath.)             - 1.3.6.1.4.1.10098.1.1.1.33
+ gotoScannerModel               (GOto - Gonicus Terminal Concept, value scannerModel.)          - 1.3.6.1.4.1.10098.1.1.1.40
+ gotoXColordepth                (GOto - Gonicus Terminal Concept, value xColordepth.)           - 1.3.6.1.4.1.10098.1.1.1.21
+ fdAsteriskDriver               (Driver used for asterisk DB)                                   - 1.3.6.1.4.1.10098.1.1.9.30
+ fdSipContexts                  (FusionDirectory - available sip contexts)                      - 1.3.6.1.4.1.38414.19.11.1
+ gosaObject                     (GOsa - DN of an object)                                        - 1.3.6.1.4.1.10098.1.1.12.3
+ ghInventoryNumber              (Unique number for inclusion in an inventory)                   - 1.3.6.1.4.1.10098.1.1.2.10
+ ghSoundAdapter                 (Hardware definitions, value soundAdapter)                      - 1.3.6.1.4.1.10098.1.1.2.7
+ ghGfxAdapter                   (Hardware definitions, value Grafikkarte)                       - 1.3.6.1.4.1.10098.1.1.2.9
+ gotoXDriver                    (GOto - Gonicus Terminal Concept, value xDriver.)               - 1.3.6.1.4.1.10098.1.1.1.28
+ gotoShare                      (GOto - specifies a share)                                      - 1.3.6.1.4.1.10098.1.1.11.9
+ fdCopyPaste                    (FusionDirectory - (de)Activate copy/paste)                     - 1.3.6.1.4.1.38414.8.14.5
+ gotoAutoFs                     (GOto - Gonicus Terminal Concept, value autofs.)                - 1.3.6.1.4.1.10098.1.1.1.31
+ gotoScannerBackend             (GOto - Gonicus Terminal Concept, value scannerBackend.)        - 1.3.6.1.4.1.10098.1.1.1.39
+ gotoUserPrinter                (GOto - keeps printers shown for this user)                     - 1.3.6.1.4.1.10098.1.1.11.12
+ printerWindowsInfFile          (Path to windows inf file for this printer)                     - 1.3.6.1.4.1.38414.6.10.1
+ avChecksPerDay                 (Update checks per day)                                         - 1.3.6.1.4.1.10098.1.1.9.78
+ gotoScannerClients             (GOto - Gonicus Terminal Concept, value scannerClients.)        - 1.3.6.1.4.1.10098.1.1.1.11
+ gotoXKbLayout                  (GOto - Gonicus Terminal Concept, value xKblayout.)             - 1.3.6.1.4.1.10098.1.1.1.26
+ fdSnapshotAdminPassword        (FusionDirectory - Snaphost admin password)                     - 1.3.6.1.4.1.38414.8.17.5
+ fdPersonalTitleInDN            (FusionDirectory - Personal title in dn)                        - 1.3.6.1.4.1.38414.8.12.5
+ gotoXResolution                (GOto - Gonicus Terminal Concept, value xResolution.)           - 1.3.6.1.4.1.10098.1.1.1.20
+ fdPasswordHook                 (FusionDirectory - Password hook (external command))            - 1.3.6.1.4.1.38414.8.13.4
+ fdVoicemailContexts            (FusionDirectory - available voicemail contexts)                - 1.3.6.1.4.1.38414.19.11.2
+ fdIdGenerator                  (FusionDirectory - An automatic way to generate new user ids)   - 1.3.6.1.4.1.38414.8.12.4
+ goLogPassword                  (Admin password for log server)                                 - 1.3.6.1.4.1.10098.1.1.9.25
+ ghCpuType                      (Hardware definitions, value cpuType)                           - 1.3.6.1.4.1.10098.1.1.2.1
+ gotoGroupAdminPrinter          (GOto - keeps printers we are admin for)                        - 1.3.6.1.4.1.10098.1.1.11.17
+ fdAccountRDN                   (FusionDirectory - use a placeholder pattern for generating account RDNs)       - 1.3.6.1.4.1.38414.8.12.2
+ gotoFloppyEnable               (GOto - Gonicus Terminal Concept, value floppyEnable.)          - 1.3.6.1.4.1.10098.1.1.1.7
+ goFonAreaCode                  (Store area code)                                               - 1.3.6.1.4.1.10098.1.1.9.28
+ avArchiveMaxRecursion          (Maximum number of archive nestings)                            - 1.3.6.1.4.1.10098.1.1.9.73
+ gotoRootPasswd                 (GOto - Gonicus Terminal Concept, value rootPasswd.)            - 1.3.6.1.4.1.10098.1.1.1.14
+ fdPrimaryGroupFilter           (FusionDirectory - Primary group filter)                        - 1.3.6.1.4.1.38414.8.14.1
+ goFonCountryCode               (Store country code)                                            - 1.3.6.1.4.1.10098.1.1.9.29
+ avArchiveMaxFileSize           (Maximum archive file size)                                     - 1.3.6.1.4.1.10098.1.1.9.72
+ gotoProfileServer              (GOto - specifies the profile server)                           - 1.3.6.1.4.1.10098.1.1.11.8
+ goLogAdmin                     (Admin user for log server)                                     - 1.3.6.1.4.1.10098.1.1.9.24
+ fdPhoneConferenceRDN           (FusionDirectory - Phone conference RDN)                        - 1.3.6.1.4.1.38414.19.10.3
+ goFonAdmin                     (Admin user for fon server)                                     - 1.3.6.1.4.1.10098.1.1.9.26
+ goLogDriver                    (FD logging MDB2 driver name)                                   - 1.3.6.1.4.1.10098.1.1.9.84
+ gotoLpdEnable                  (GOto - Gonicus Terminal Concept, value lpdEnable.)             - 1.3.6.1.4.1.10098.1.1.1.9
+ gotoModules                    (GOto - Gonicus Terminal Concept, value kernel modules.)        - 1.3.6.1.4.1.10098.1.1.1.32
+ gotoProfileQuota               (GOto - save quota for home)                                    - 1.3.6.1.4.1.10098.1.1.11.15
+ avFlags                        (Special flags for the antivirus scan engine)                   - 1.3.6.1.4.1.10098.1.1.9.71
+ avUser                         (Username to run antivirus with)                                - 1.3.6.1.4.1.10098.1.1.9.70
+ ghMemSize                      (Hardware definitions, value memSize)                           - 1.3.6.1.4.1.10098.1.1.2.2
+ gotoXMonitor                   (GOto - Gonicus Terminal Concept, value xMonitor.)              - 1.3.6.1.4.1.10098.1.1.1.17
+ gotoGroupPrinter               (GOto - keeps printers shown for this user)                     - 1.3.6.1.4.1.10098.1.1.11.16
+ fdRfc2307bis                   (FusionDirectory - rfc2307bis)                                  - 1.3.6.1.4.1.38414.8.10.1
+ gotoProfileFlags               (GOto - Flags for Profile handling - C is for caching)          - 1.3.6.1.4.1.10098.1.1.11.7
+ fdMailMethod                   (FusionDirectory - Mail method)                                 - 1.3.6.1.4.1.38414.10.10.1
+ gotoXKbVariant                 (GOto - Gonicus Terminal Concept, value xKbvariant.)            - 1.3.6.1.4.1.10098.1.1.1.27
+ gotoXMouseport                 (GOto - Gonicus Terminal Concept, value xMouseport.)            - 1.3.6.1.4.1.10098.1.1.1.22
+ fdSnapshotURI                  (FusionDirectory - Snaphost URI)                                - 1.3.6.1.4.1.38414.8.17.3
+ gotoHardwareChecksum           (GOto - quick way to see if something has changed)              - 1.3.6.1.4.1.10098.1.1.2.12
+ printerWindowsDriverName       (Windows name of the printer driver)                            - 1.3.6.1.4.1.38414.6.10.3
+ ghScsiDev                      (Hardware definitions, value scsiDev)                           - 1.3.6.1.4.1.10098.1.1.2.5
+ gotoXMouseType                 (Hardware definitions, value Type of mouse)                     - 1.3.6.1.4.1.10098.1.1.1.34
+ gotoXVsync                     (GOto - Gonicus Terminal Concept, value xVsync.)                - 1.3.6.1.4.1.10098.1.1.1.19
+ goSyslogSection                (What sections wants the server for its syslog service? i.e. *.*)       - 1.3.6.1.4.1.10098.1.1.9.9
+ avDatabaseMirror               (Where to find updates)                                         - 1.3.6.1.4.1.10098.1.1.9.75
+ goLogDB                        (GOsa logging DB name)                                          - 1.3.6.1.4.1.10098.1.1.9.83
+ gosaUser                       (GOsa - DN of a user)                                           - 1.3.6.1.4.1.10098.1.1.12.2
+ gotoXHsync                     (GOto - Gonicus Terminal Concept, value xHsync.)                - 1.3.6.1.4.1.10098.1.1.1.18
+ avMaxThreads                   (Number of AV scanning threads)                                 - 1.3.6.1.4.1.10098.1.1.9.68
+ gotoXMouseButtons              (GOto - Gonicus Terminal Concept, value xMouseButtons.)         - 1.3.6.1.4.1.10098.1.1.1.23
+ avArchiveMaxCompressionRatio   (Maximum compression ratio)                                     - 1.3.6.1.4.1.10098.1.1.9.74
+ ghNetNic                       (Hardware definitions, value Network Device)                    - 1.3.6.1.4.1.10098.1.1.2.8
+ gotoXKbModel                   (GOto - Gonicus Terminal Concept, value xKbmodel.)              - 1.3.6.1.4.1.10098.1.1.1.25
+Deprecated objectClasses:
+ goFaxServer                    (Fax server description)                                        - 1.3.6.1.4.1.10098.1.2.1.26
+ goSyslogServer                 (Syslog server description)                                     - 1.3.6.1.4.1.10098.1.2.1.21
+ goCupsServer                   (CUPS server description)                                       - 1.3.6.1.4.1.10098.1.2.1.23
+ goNtpServer                    (Time server description)                                       - 1.3.6.1.4.1.10098.1.2.1.20
+ gosaLockEntry                  (GOsa - Class for GOsa locking)                                 - 1.3.6.1.4.1.10098.1.2.1.19.2
+ goVirusServer                  (Virus server definition)                                       - 1.3.6.1.4.1.10098.1.2.1.39
+ gosaUserTemplate               (GOsa - Class for GOsa User Templates)                          - 1.3.6.1.4.1.10098.1.2.1.19.11
+ goNfsServer                    (NFS server description)                                        - 1.3.6.1.4.1.10098.1.2.1.19
+ goFonServer                    (Fon server description)                                        - 1.3.6.1.4.1.10098.1.2.1.29
+ goLogDBServer                  (Log DB server description)                                     - 1.3.6.1.4.1.10098.1.2.1.28
+
+The --check-deprecated option 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
+
+The --ldif-deprecated option will output an ldif file on the console that you can use with ldapmodify to clean you ldap server from old attributes.
+
+fusiondirectory-setup --ldif-deprecated > remove_deprecated.ldif
+
+If they are old objectClasses it will warn you and you will have to remove them by hand, they have been specified at the --check-deprecated step.
+
+!! Please read it carefully before applying !!
+
+
+Migrate your DHCP entries
+=========================
+
+if you where using the DHCP plugin in 1.0.16, you need to migrate your entries to the dhcp branch, run the **fusiondirectory-setup --migrate-dhcp** for this
+
+fusiondirectory-setup --migrate-dhcp
+
+
+Checking your indexed attributes
+================================
+
+Check that all you index still match with valid attributes present in your ldap directory 
+
 Enjoy :)
 
 ---
diff --git a/contrib/man/fusiondirectory-insert-schema.1 b/contrib/man/fusiondirectory-insert-schema.1
index e825f28452168ed8f5c5b94f4ac7bd8120e8aada..9a06d41fab97206dd1e069a57b9aeb3ae50afcd0 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-08-01" "FusionDirectory 1.0.x" "FusionDirectory Documentation"
+.TH FUSIONDIRECTORY-INSERT-SCHEMA 1 "2016-11-02" "FusionDirectory 1.0.17" "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 144513b75938022325c11a53d9cb40b37ea07289..eea3b520349783c4fa28b77a43aeb2cfc771cd5a 100644
--- a/contrib/man/fusiondirectory-setup.1
+++ b/contrib/man/fusiondirectory-setup.1
@@ -133,7 +133,7 @@
 .\" ========================================================================
 .\"
 .IX Title "FUSIONDIRECTORY-SETUP 1"
-.TH FUSIONDIRECTORY-SETUP 1 "2016-10-03" "FusionDirectory 1.0.15" "FusionDirectory Documentation"
+.TH FUSIONDIRECTORY-SETUP 1 "2016-11-08" "FusionDirectory 1.0.17" "FusionDirectory Documentation"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
@@ -174,6 +174,9 @@ This option replace gosaPrinter objectClass by new fdPrinter objectClass.
 .IP "\-\-migrate\-dns" 4
 .IX Item "--migrate-dns"
 This option moves \s-1DNS\s0 zones from systems branch to \s-1DNS\s0 branch, which is necessary for FusionDirectory 1.0.10 and above.
+.IP "\-\-migrate\-dhcp" 4
+.IX Item "--migrate-dhcp"
+This option moves \s-1DHCP\s0 configurations from systems branch to \s-1DHCP\s0 branch, which is necessary for FusionDirectory 1.0.17 and above.
 .IP "\-\-migrate\-acls" 4
 .IX Item "--migrate-acls"
 This option will migrated old GOsa style acl from 1.0.7 into FusionDirectory acl roles in 1.0.8
diff --git a/contrib/man/fusiondirectory.conf.5 b/contrib/man/fusiondirectory.conf.5
index c08fd5982e75ad1f1bd06b60250e4b17e34f9c13..6bd4ae2f3b962f99fcc41b4680686c508c9fd63f 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-08-01" "FusionDirectory 1.0.15" "FusionDirectory Documentation"
+.TH FUSIONDIRECTORY.CONF 1 "2016-11-02" "FusionDirectory 1.0.17" "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/smarty/plugins/block.render.php b/contrib/smarty/plugins/block.render.php
index 35c03472d5f8155ebe85231406e6a8e7ec0a0425..f47fabd5fe4f29803a4df6ae8e9aa8756611da2b 100644
--- a/contrib/smarty/plugins/block.render.php
+++ b/contrib/smarty/plugins/block.render.php
@@ -20,125 +20,125 @@
 */
 function smarty_block_render($params, $text, &$smarty)
 {
-	/* Skip closing tag </render> */
-	if(empty($text)) {
-		return("");
-	}
+  /* Skip closing tag </render> */
+  if(empty($text)) {
+    return("");
+  }
 
-	/* Get acl parameter */
-	$acl = "";
-	if (isset($params['acl'])) {
-		$acl = $params['acl'];
-	}
+  /* Get acl parameter */
+  $acl = "";
+  if (isset($params['acl'])) {
+    $acl = $params['acl'];
+  }
 
-	/* Debug output */
-	if (session::is_set('DEBUGLEVEL') && session::get('DEBUGLEVEL') & DEBUG_ACL ){
-		echo "<div style='color:blue;font-size:2;'>&nbsp;".$acl."</div>";
-	}
+  /* Debug output */
+  if (session::is_set('DEBUGLEVEL') && session::get('DEBUGLEVEL') & DEBUG_ACL ){
+    echo "<div style='color:blue;font-size:2;'>&nbsp;".$acl."</div>";
+  }
 
 
 
-	/* Parameter : checkbox, checked
+  /* Parameter : checkbox, checked
      *  If the parameter 'checkbox' is given, we create a html checkbox in front
      *   of the current object.
-     *	The parameter 'checked' specifies whether the box is checked or not.
+     *  The parameter 'checked' specifies whether the box is checked or not.
      *  The checkbox disables or enables the current object.
      */
-	if(isset($params['checkbox']) && $params['checkbox']){
-
-		/* Detect name and id of the current object */
-		$use_text = preg_replace("/\n/"," ",$text);
-		$name = preg_replace('/^.* name[ ]*=[ ]*("|\')([^\"\' ]*).*$/i',"\\2",$use_text);
-
-		/* Detect id */
-		if(preg_match("/ id=(\"|')[^\"']*(\"|')/i",$text)){
-			$id = preg_replace('/^.* id[ ]*=[ ]*("|\')([^\"\' ]*).*$/i',"\\2",$use_text);
-		}else{
-			$id = "";
-		}
-
-		/* Is the box checked? */
-		isset($params['checked'])&&$params['checked'] ? $check = " checked " : $check = "";
-
-		/* If name isset, we have a html input field */
-		if(!empty($name)){
-
-			/* Print checkbox */
-			echo "<input type='checkbox' name='use_".$name."' ".$check."
-					onClick=\"changeState('".$name."');\" class='center'>";
-
-			/* Disable current object, if checkbox isn't checked */
-			if($check == ""){
-				$text = preg_replace("/name=/i"," disabled name=",$text);
-			}
-
-			/* Add id to current entry, if it is missing */
-			if($id == ""){
-				$text = preg_replace("/name=/i"," id=\"".$name."\" name=",$text);
-			}
-		}
-	}
-
-
-	/* Read / Write*/
-	if(preg_match("/w/i",$acl)){
-		return ($text);
-	}
-
-	$text = preg_replace ("/\n/","GOSA_LINE_BREAK",$text);
-
-	/* Disable objects, but keep those active that have mode=read_active */
-	if(!(isset($params['mode']) && ($params['mode']=='read_active') && preg_match("/(r|w)/",$acl))){
-
-		/* Disable options && greyout divlists */
-		$from 	= array("/class=['\"]list1nohighlight['\"]/i",
-				"/class=['\"]list0['\"]/i",
-				"/class=['\"]list1['\"]/i",
-				"/class=['\"]sortableListItem[^'\"]*['\"]/i");
-		$to 	= array("class='list1nohighlightdisabled'",
-				"class='list1nohighlightdisabled'",
-				"class='list1nohighlightdisabled'",
-				"class='sortableListItemDisabled'");
-
-		if(!preg_match('/ disabled(="disabled")?( |\/?>)/', $text)){
-			$from [] = "/name=/i" ;
-			$to   [] = "disabled name=";
-		}
-
-		$text 	= preg_replace($from,$to,$text);
-
-		/* Replace picture if object is disabled */
-		if(isset($params['disable_picture'])){
-			$syn = "/src=['\"][^\"']*['\"]/i";
-			$new = "src=\"".$params['disable_picture']."\"";
-			$text = preg_replace($syn,$new,$text);
-		}
-	}
-
-	/* Read only */
-	if(preg_match("/r/i",$acl)){
-		return(preg_replace("/GOSA_LINE_BREAK/","\n",$text));
-	}
-
-	/* No acls */
-	if(preg_match("/type['\"= ].*submit/",$text)){
-		$text = preg_replace("/submit/","button",$text);
-	}else{
-		$text = preg_replace("/value=['\"][^\"']*['\"]/","",$text);
-	}
-
-	/* Remove select options */
-	$from 	= array("#<option.*<\/option>#i",
-			"/(<textarea.*>).*(<\/textarea>)/i",
-			"/^(.*<input.*)checked(.*>.*)$/i");
-
-	$to 	= array(" ",
-			"\\1\\2",
-			"\\1 \\2");
-	$text 	= preg_replace($from,$to,$text);
-	$text = preg_replace("/GOSA_LINE_BREAK/","\n",$text);
-
-	return $text;
+  if(isset($params['checkbox']) && $params['checkbox']){
+
+    /* Detect name and id of the current object */
+    $use_text = preg_replace("/\n/"," ",$text);
+    $name = preg_replace('/^.* name[ ]*=[ ]*("|\')([^\"\' ]*).*$/i',"\\2",$use_text);
+
+    /* Detect id */
+    if(preg_match("/ id=(\"|')[^\"']*(\"|')/i",$text)){
+      $id = preg_replace('/^.* id[ ]*=[ ]*("|\')([^\"\' ]*).*$/i',"\\2",$use_text);
+    }else{
+      $id = "";
+    }
+
+    /* Is the box checked? */
+    isset($params['checked'])&&$params['checked'] ? $check = " checked " : $check = "";
+
+    /* If name isset, we have a html input field */
+    if(!empty($name)){
+
+      /* Print checkbox */
+      echo "<input type='checkbox' name='use_".$name."' ".$check."
+          onClick=\"changeState('".$name."');\" class='center'>";
+
+      /* Disable current object, if checkbox isn't checked */
+      if($check == ""){
+        $text = preg_replace("/name=/i"," disabled name=",$text);
+      }
+
+      /* Add id to current entry, if it is missing */
+      if($id == ""){
+        $text = preg_replace("/name=/i"," id=\"".$name."\" name=",$text);
+      }
+    }
+  }
+
+
+  /* Read / Write*/
+  if(preg_match("/w/i",$acl)){
+    return ($text);
+  }
+
+  $text = preg_replace ("/\n/","GOSA_LINE_BREAK",$text);
+
+  /* Disable objects, but keep those active that have mode=read_active */
+  if(!(isset($params['mode']) && ($params['mode']=='read_active') && preg_match("/(r|w)/",$acl))){
+
+    /* Disable options && greyout divlists */
+    $from   = array("/class=['\"]list1nohighlight['\"]/i",
+        "/class=['\"]list0['\"]/i",
+        "/class=['\"]list1['\"]/i",
+        "/class=['\"]sortableListItem[^'\"]*['\"]/i");
+    $to   = array("class='list1nohighlightdisabled'",
+        "class='list1nohighlightdisabled'",
+        "class='list1nohighlightdisabled'",
+        "class='sortableListItemDisabled'");
+
+    if(!preg_match('/ disabled(="disabled")?( |\/?>)/', $text)){
+      $from [] = "/name=/i" ;
+      $to   [] = "disabled name=";
+    }
+
+    $text   = preg_replace($from,$to,$text);
+
+    /* Replace picture if object is disabled */
+    if(isset($params['disable_picture'])){
+      $syn = "/src=['\"][^\"']*['\"]/i";
+      $new = "src=\"".$params['disable_picture']."\"";
+      $text = preg_replace($syn,$new,$text);
+    }
+  }
+
+  /* Read only */
+  if(preg_match("/r/i",$acl)){
+    return(preg_replace("/GOSA_LINE_BREAK/","\n",$text));
+  }
+
+  /* No acls */
+  if(preg_match("/type['\"= ].*submit/",$text)){
+    $text = preg_replace("/submit/","button",$text);
+  }else{
+    $text = preg_replace("/value=['\"][^\"']*['\"]/","",$text);
+  }
+
+  /* Remove select options */
+  $from   = array("#<option.*<\/option>#i",
+      "/(<textarea.*>).*(<\/textarea>)/i",
+      "/^(.*<input.*)checked(.*>.*)$/i");
+
+  $to   = array(" ",
+      "\\1\\2",
+      "\\1 \\2");
+  $text   = preg_replace($from,$to,$text);
+  $text = preg_replace("/GOSA_LINE_BREAK/","\n",$text);
+
+  return $text;
 }
 
 ?>
diff --git a/contrib/smarty/plugins/function.msgPool.php b/contrib/smarty/plugins/function.msgPool.php
index 717942f11f9054f6bd69e7e35423eb67d4ab60ef..a50542ecc197be40e4e97714306ce733ddf11ede 100644
--- a/contrib/smarty/plugins/function.msgPool.php
+++ b/contrib/smarty/plugins/function.msgPool.php
@@ -20,20 +20,20 @@
 */
 function smarty_function_msgPool($params, &$smarty)
 {
-	if(class_available("msgPool") && isset($params['type'])){
-		$parameter = array();
-		foreach($params as $para => $value){
-			if(!preg_match("/^type$/i",$para)){
-				$parameter[$para] = $value;
-			}
-		}
-		if(is_callable("msgPool::".$params['type'])){
-			echo call_user_func_array(array("msgPool",$params['type']), $parameter);
-		}else{
-			trigger_error("Unknown msgPool function ".$params['type']);
-		}
-	}else{
-		trigger_error("Unknown class msgPool.");
-	}
+  if(class_available("msgPool") && isset($params['type'])){
+    $parameter = array();
+    foreach($params as $para => $value){
+      if(!preg_match("/^type$/i",$para)){
+        $parameter[$para] = $value;
+      }
+    }
+    if(is_callable("msgPool::".$params['type'])){
+      echo call_user_func_array(array("msgPool",$params['type']), $parameter);
+    }else{
+      trigger_error("Unknown msgPool function ".$params['type']);
+    }
+  }else{
+    trigger_error("Unknown class msgPool.");
+  }
 }
 ?>
diff --git a/html/geticon.php b/html/geticon.php
index 90ee12531880c072feb68e38d4642d3dc3dd3b3c..2c7c7c419bbe9f0ae07a2fcf3a24cad05fae7f8e 100644
--- a/html/geticon.php
+++ b/html/geticon.php
@@ -36,6 +36,10 @@ if (session::global_is_set('config')) {
 }
 IconTheme::$default_theme = 'breezy';
 IconTheme::$extensions    = array('png');
+if (!isset($_GET['context']) || !isset($_GET['icon']) || !isset($_GET['size'])) {
+  trigger_error('Missing information in query string: '.$_SERVER['QUERY_STRING']);
+  exit;
+}
 $src    = IconTheme::findThemeIcon($theme, $_GET['context'], $_GET['icon'], $_GET['size']);
 
 header("Content-Type: image/png");
diff --git a/html/include/datepicker.js b/html/include/datepicker.js
index d6a21359540a5874e03d63d469a710ed9f640ceb..89c501e5c28c44f5d0a16aee5acd89c8be25afe4 100644
--- a/html/include/datepicker.js
+++ b/html/include/datepicker.js
@@ -255,10 +255,10 @@ DatePicker.prototype  = {
   initialize  : function ( h_p ) {
 
     /* arguments */
-    this._relative= h_p["relative"];
+    this._relative = h_p["relative"];
     if (h_p["language"]) {
       this._language = h_p["language"];
-      if (this._language_close.get(this._language) == undefined) {
+      if (this._language_close.get(this._language) === undefined) {
         this._language = 'en';
       }
     }
@@ -293,39 +293,39 @@ DatePicker.prototype  = {
       this._dateFormat = h_p["dateFormat"];
     if (Object.isFunction(h_p["cellCallback"]))
       this._cellCallback = h_p["cellCallback"];
-      this._setPositionTop  = ( h_p["setPositionTop"] ) ? parseInt(Number(h_p["setPositionTop"])) : 0;
-    this._setPositionLeft = ( h_p["setPositionLeft"] ) ? parseInt(Number(h_p["setPositionLeft"])) : 0;
     if (!Object.isUndefined(h_p["enableCloseOnBlur"]) && h_p["enableCloseOnBlur"])
       this._enableCloseOnBlur = true;
     if (!Object.isUndefined(h_p["disablePastDate"]) && h_p["disablePastDate"])
       this._disablePastDate = true;
     if (!Object.isUndefined(h_p["disableFutureDate"]) && !h_p["disableFutureDate"])
       this._disableFutureDate = false;
+    this._setPositionTop  = ( h_p["setPositionTop"] ) ? parseInt(Number(h_p["setPositionTop"])) : 0;
+    this._setPositionLeft = ( h_p["setPositionLeft"] ) ? parseInt(Number(h_p["setPositionLeft"])) : 0;
 
-    this._id_datepicker         = 'datepicker-'+ this._relative;
-    this._id_datepicker_prev    = this._id_datepicker +'-prev';
+    this._id_datepicker           = 'datepicker-'+ this._relative;
+    this._id_datepicker_prev      = this._id_datepicker +'-prev';
     this._id_datepicker_prev_year = this._id_datepicker +'-prev-year';
-    this._id_datepicker_next    = this._id_datepicker +'-next';
+    this._id_datepicker_next      = this._id_datepicker +'-next';
     this._id_datepicker_next_year = this._id_datepicker +'-next-year';
-    this._id_datepicker_hdr     = this._id_datepicker +'-header';
-    this._id_datepicker_ftr     = this._id_datepicker +'-footer';
+    this._id_datepicker_hdr       = this._id_datepicker +'-header';
+    this._id_datepicker_ftr       = this._id_datepicker +'-footer';
 
     /* build up calendar skel */
     this._div = new Element('div', {
       id      : this._id_datepicker,
       className   : 'datepicker',
-      style     : 'display: none; z-index:'+ this._zindex });
+      style     : 'display: none; z-index:'+ this._zindex
+    });
 
-//    this._div.innerHTML = '<table><thead><tr><th width="10px" id="'+ this._id_datepicker_prev +'" style="cursor: pointer;">&nbsp;&lt;&lt;&nbsp;</th><th id="'+ this._id_datepicker_hdr +'" colspan="5"></th><th width="10px" id="'+ this._id_datepicker_next +'" style="cursor: pointer;">&nbsp;&gt;&gt;&nbsp;</th></tr></thead><tbody id="'+ this._id_datepicker +'-tbody"></tbody><tfoot><td colspan="7" id="'+ this._id_datepicker_ftr +'"></td></tfoot></table>';
-      this._div.innerHTML = '<div class="datepicker-header"><table class="header"><tr><td id="'+ this._id_datepicker_prev_year +'" class="prev_year"> << </td><td id="'+ this._id_datepicker_prev +'" class="prev"> < </td><td id="'+ this._id_datepicker_hdr +'" class="header"></td><td id="'+ this._id_datepicker_next +'" class="next"> > </td><td id="'+ this._id_datepicker_next_year +'" class="next_year"> >> </td></tr></table></div><div class="datepicker-calendar"><table class="body"><tbody id="'+ this._id_datepicker +'-tbody"></tbody></table></div><div id="'+ this._id_datepicker_ftr +'" class="datepicker-footer"></div>';
+    this._div.innerHTML = '<div class="datepicker-header"><table class="header"><tr><td id="'+ this._id_datepicker_prev_year +'" class="prev-year"> << </td><td id="'+ this._id_datepicker_prev +'" class="prev"> < </td><td id="'+ this._id_datepicker_hdr +'" class="header"></td><td id="'+ this._id_datepicker_next +'" class="next"> > </td><td id="'+ this._id_datepicker_next_year +'" class="next-year"> >> </td></tr></table></div><div class="datepicker-calendar"><table class="body"><tbody id="'+ this._id_datepicker +'-tbody"></tbody></table></div><div id="'+ this._id_datepicker_ftr +'" class="datepicker-footer"></div>';
 
     /* Build the datepicker icon */
     var datepickeropener = Builder.node('table',{className : "datepicker-opener-table", id: this._id_datepicker + '_image'});
     var con = Builder.node('tr',{},[
-        Builder.node('td',{className : "datepicker-opener", id : "datepicker-opener-"+ this._relative})
+      Builder.node('td',{className : "datepicker-opener", id : "datepicker-opener-"+ this._relative})
     ]);
     // insert into TBODY
-    if (datepickeropener.childNodes[0] != undefined) {
+    if (datepickeropener.childNodes[0] !== undefined) {
       datepickeropener.childNodes[0].appendChild(con);
     } else {
       datepickeropener.appendChild(con);
@@ -336,9 +336,6 @@ DatePicker.prototype  = {
     this.insertAfter($(this._relative).parentNode,datepickeropener,$(this._relative));
     /* End Build the datepicker icon */
 
-    /* finally declare the event listener on input field */
-    //Event.observe(this._relative, 'click', this.click.bindAsEventListener(this), false);
-
     /* need to append on body when doc is loaded for IE */
     document.observe('dom:loaded', this.load.bindAsEventListener(this), false);
 
@@ -427,7 +424,8 @@ DatePicker.prototype  = {
   click : function () {
 
     /* init the datepicker if it doesn't exists */
-    if ( $(this._id_datepicker) == null ) this.load();
+    if ($(this._id_datepicker) == null)
+      this.load();
     var a_pos = Element.cumulativeOffset($(this._relative));
     this.setPosition(a_pos[1], a_pos[0]);
     if (!this._isPositionned && this._relativePosition) {
@@ -444,8 +442,8 @@ DatePicker.prototype  = {
       this._redrawCalendar();
     }
 
-    /* eval the clickCallback function */
-    eval(this._clickCallback());
+    /* call the clickCallback function */
+    this._clickCallback();
 
     /* Effect toggle to fade-in / fade-out the datepicker */
     if ( this._enableShowEffect ) {
@@ -488,7 +486,7 @@ DatePicker.prototype  = {
     } else {
       $(this._id_datepicker).hide();
     }
-    eval(this._afterClose());
+    this._afterClose();
   },
 
   /**
@@ -520,7 +518,7 @@ DatePicker.prototype  = {
    * _getMonthDays : given the year and month find the number of days.
    */
   _getMonthDays : function ( year, month ) {
-    if (((0 == (year%4)) && ((0 != (year%100)) || (0 == (year%400)))) && (month == 1))
+    if ((((year%4) === 0) && (((year%100) !== 0) || ((year%400) !== 0))) && (month === 1))
       return 29;
     return this._daysInMonth[month];
   },
@@ -530,7 +528,6 @@ DatePicker.prototype  = {
    */
   _buildCalendar : function () {
 
-    var _self = this;
     var tbody = $(this._id_datepicker +'-tbody');
     try {
       while ( tbody.hasChildNodes() )
@@ -563,10 +560,9 @@ DatePicker.prototype  = {
     var d = new Date(this._current_year, this._current_mon, 1, 12);
 
     /* start the day list on monday */
-    var startIndex  = ( !d.getDay() ) ? 6 : d.getDay() - 1;
-    var nbDaysInMonth = this._getMonthDays(
-    this._current_year, this._current_mon);
-    var daysIndex = 1;
+    var startIndex    = ( !d.getDay() ) ? 6 : d.getDay() - 1;
+    var nbDaysInMonth = this._getMonthDays(this._current_year, this._current_mon);
+    var daysIndex     = 1;
 
     for ( var j = startIndex; j < 7; j++ ) {
       a_d[0][j] = {
@@ -596,7 +592,7 @@ DatePicker.prototype  = {
           d : daysIndex,
           m : currentMonth,
           y : currentYear,
-          c : ( switchNextMonth ) ? 'outbound' : (((daysIndex == this._todayDate.getDate()) && (this._current_mon  == this._todayDate.getMonth()) && (this._current_year == this._todayDate.getFullYear())) ? 'today' : null)
+          c : (switchNextMonth ? 'outbound' : (((daysIndex === this._todayDate.getDate()) && (this._current_mon  === this._todayDate.getMonth()) && (this._current_year === this._todayDate.getFullYear())) ? 'today' : null))
         };
         daysIndex++;
 
@@ -635,15 +631,16 @@ DatePicker.prototype  = {
 
         /* on onclick : rebuild date value from id of current cell */
         var _curDate = new Date();
+        var _res;
 
         _curDate.setFullYear(h_ij["y"], h_ij["m"], h_ij["d"]);
         if ( this._disablePastDate || this._disableFutureDate ) {
           if ( this._disablePastDate ) {
-            var _res  = ( _curDate >= this._todayDate ) ? true : false;
+            _res  = ( _curDate >= this._todayDate ) ? true : false;
             this._bindCellOnClick( td, true, _res, h_ij["c"] );
           }
           if ( this._disableFutureDate ) {
-            var _res  = ( this._todayDate.getTime() + this._oneDayInMs > _curDate.getTime() ) ? true : false;
+            _res  = ( this._todayDate.getTime() + this._oneDayInMs > _curDate.getTime() ) ? true : false;
             this._bindCellOnClick( td, true, _res,  h_ij["c"] );
           }
         } else {
@@ -666,7 +663,7 @@ DatePicker.prototype  = {
       if ( compareresult ) {
         doBind  = true;
       } else {
-        td.className= ( h_ij_c ) ? 'nclick_outbound' : 'nclick';
+        td.className= ( h_ij_c ) ? 'nclick-outbound' : 'nclick';
       }
     } else {
       doBind = true;
diff --git a/html/include/fusiondirectory.js b/html/include/fusiondirectory.js
index 9c0ccc15f865e10e7f7cf1391afd205dd5c95419..b11bd354d0af34017404f796924abc622e1f35b6 100644
--- a/html/include/fusiondirectory.js
+++ b/html/include/fusiondirectory.js
@@ -19,18 +19,15 @@
 */
 
 /* Install event handlers */
-Event.observe(window, 'resize', resizeHandler);
-Event.observe(window, 'load', resizeHandler);
 Event.observe(window, 'load', initProgressPie);
 
-
 /* Toggle checkbox that matches regex */
 function chk_set_all(regex,value)
 {
   for (var i = 0; i < document.mainform.elements.length; i++) {
-    var _id=document.mainform.elements[i].id;
+    var _id = document.mainform.elements[i].id;
     if(_id.match(regex)) {
-            document.mainform.elements[i].checked= value;
+      document.mainform.elements[i].checked = value;
     }
   }
 }
@@ -39,19 +36,16 @@ function chk_set_all(regex,value)
 function chk_set_all_by_class(regex,value)
 {
   for (var i = 0; i < document.mainform.elements.length; i++) {
-    var _class=document.mainform.elements[i].getAttribute("class");
-        if(_class) {
-            if(_class.match(regex)) {
-                document.mainform.elements[i].checked= value;
-            }
+    var _class = document.mainform.elements[i].getAttribute("class");
+    if(_class && _class.match(regex)) {
+      document.mainform.elements[i].checked = value;
     }
   }
 }
 
-
 function toggle_all_(regex,state_object)
 {
-  state = document.getElementById(state_object).checked;
+  var state = document.getElementById(state_object).checked;
   chk_set_all(regex, state);
 }
 
@@ -73,12 +67,12 @@ function acl_set_all(regex,value)
 function acl_toggle_all(regex)
 {
   for (var i = 0; i < document.mainform.elements.length; i++) {
-    var _id=document.mainform.elements[i].id;
+    var _id = document.mainform.elements[i].id;
     if(_id.match(regex)) {
-      if (document.getElementById(_id).checked == true){
-        document.getElementById(_id).checked= false;
+      if (document.getElementById(_id).checked === true){
+        document.getElementById(_id).checked = false;
       } else {
-        document.getElementById(_id).checked= true;
+        document.getElementById(_id).checked = true;
       }
     }
   }
@@ -87,7 +81,7 @@ function acl_toggle_all(regex)
 function inArray(p_val, array) {
   var l = array.length;
   for (var i = 0; i < l; i++) {
-    if (array[i] == p_val) {
+    if (array[i] === p_val) {
       return true;
     }
   }
@@ -109,85 +103,19 @@ function js_check(form) {
   form.javascript.value = 'true';
 }
 
-function resizeHandler (e) {
-  if (!e) e=window.event;
-  if (document.getElementById("menucell") && document.getElementById("d_scrollbody")) {
-    var inner_height= window.innerHeight;
-    var min_height= 450;
-    var px_height= min_height;
-    var suggested= px_height;
-
-    // document.defaultView allows access to the rendered size of elements and should be supported by modern browsers
-    if(document.defaultView) {
-      var menu_height= 0;
-      if (document.getElementById("d_height")){
-        suggested= parseInt(document.getElementById("d_height").value);
-      } else {
-        menu_height=parseInt(document.defaultView.getComputedStyle(document.getElementById("menucell"),"").getPropertyValue('height'));
-        // Minimum height for divlist should be the bottom edge of the menu
-        min_height= menu_height-197;
-        suggested= min_height;
-        if((inner_height-230)-suggested>0) {
-          suggested= inner_height-230;
-        }
-
-      }
-
-      // IE uses other height specifications
-    } else if (Prototype.Browser.IE) {
-      suggested= document.all.menucell.offsetHeight;
-      offset= absTop(d_scrollbody);
-      suggested-= offset;
-      if((inner_height-230)-suggested>0) {
-        suggested= inner_height-230;
-      }
-    }
-
-    /* Reduce height if a list footer is set */
-        /*
-    if(document.getElementById("t_scrollfoot")){
-      suggested = suggested -20;
-    }
-
-    if (!document.getElementById("list_workaround")) {
-      document.getElementById("d_scrollbody").style.height=suggested+"px";
-    } else {
-      if (!Prototype.Browser.IE) {
-        current_height= parseInt(document.defaultView.getComputedStyle(document.getElementById("t_nscrollbody"),"").getPropertyValue('height'));
-        if (current_height < menu_height) {
-          document.getElementById("d_scrollbody").style.height=suggested+20+"px";
-        }
-      }
-    }
-    if (document.getElementById("t_nscrollbody")) {
-      document.getElementById("t_nscrollbody").style.height=(suggested-22)+"px";
-    }
-        */
-  }
-  return true;
-}
-
-function absTop(e) {
-  return (e.offsetParent)?e.offsetTop+absTop(e.offsetParent) : e.offsetTop;
-}
-
 /* Set focus to first valid input field
    avoid IExplorer warning about hidding or disabled fields
  */
 function focus_field()
 {
-  var i     = 0;
-  var e     = 0;
-  var found = false;
-  var element_name = "";
-  var element =null;
-
-  while(focus_field.arguments[i] && !found){
+  var i       = 0;
+  var found   = false;
+  var element = null;
 
+  while (focus_field.arguments[i] && !found) {
     var tmp = document.getElementsByName(focus_field.arguments[i]);
-    for(e = 0 ; e < tmp.length ; e ++ ){
-
-      if(tmp[e].disabled != true &&  tmp[e].type != "none" && tmp[e].type != "hidden" ){
+    for (var e = 0 ; e < tmp.length ; e++) {
+      if ((tmp[e].disabled !== true) &&  (tmp[e].type !== "none") && (tmp[e].type !== "hidden")) {
         found = true;
         element = tmp[e];
         break;
@@ -196,7 +124,7 @@ function focus_field()
     i++;
   }
 
-  if(element && found){
+  if (element && found) {
     element.blur();
     element.focus();
   }
@@ -214,48 +142,48 @@ function focus_field()
  */
 function next_msg_dialog()
 {
-  var s_pending = "";
-  var a_pending = new Array();
-  var i_id      = 0;
-  var i         = 0;
+  var s_pending;
+  var a_pending;
+  var i_id;
   var tmp       = "";
-  var ele       = null;
-  var ele2      = null;
-  var cur_id    = "";
+  var ele;
+  var ele2;
+  var ele3;
+  var cur_id;
 
-  if(document.getElementById('current_msg_dialogs')){
+  if (document.getElementById('current_msg_dialogs')) {
     cur_id = document.getElementById('current_msg_dialogs').value;
-    if(cur_id != ""){
+    if (cur_id !== "") {
       ele = document.getElementById('e_layer' + cur_id);
       ele.onmousemove = "";
       $('e_layer' + cur_id).hide();
       document.getElementById('closed_msg_dialogs').value += "," + cur_id;
-      document.getElementById('current_msg_dialogs').value= "";
+      document.getElementById('current_msg_dialogs').value = "";
     }
   }
 
-  if(document.getElementById('pending_msg_dialogs')){
+  if (document.getElementById('pending_msg_dialogs')) {
     s_pending = document.getElementById('pending_msg_dialogs').value;
     a_pending = s_pending.split(",");
-    if(a_pending.length){
+    if (a_pending.length) {
       i_id = a_pending.pop();
-      for (i = 0 ; i < a_pending.length; ++i){
+      for (var i = 0 ; i < a_pending.length; ++i) {
         tmp = tmp + a_pending[i] + ',';
       }
       tmp = tmp.replace(/,$/g,"");
-      if(i_id != ""){
+      if (i_id !== "") {
         ele = document.getElementById('e_layer' + i_id);
-        ele3 = document.getElementById('e_layerTitle' + i_id);
-        ele.style.display= 'block'  ;
-        document.getElementById('pending_msg_dialogs').value= tmp;
-        document.getElementById('current_msg_dialogs').value= i_id;
-        ele2 = document.getElementById('e_layer2') ;
-        ele3.onmousedown = start_move_div_by_cursor;
-        ele2.onmouseup  = stop_move_div_by_cursor;
-        ele2.onmousemove = move_div_by_cursor;
-      }else{
         ele2 = document.getElementById('e_layer2') ;
-        ele2.style.display ="none";
+        ele3 = document.getElementById('e_layerTitle' + i_id);
+        ele.style.display = 'block'  ;
+        document.getElementById('pending_msg_dialogs').value = tmp;
+        document.getElementById('current_msg_dialogs').value = i_id;
+        ele3.onmousedown  = start_move_div_by_cursor;
+        ele2.onmouseup    = stop_move_div_by_cursor;
+        ele2.onmousemove  = move_div_by_cursor;
+      } else {
+        ele2 = document.getElementById('e_layer2');
+        ele2.style.display = "none";
       }
     }
   }
@@ -276,35 +204,39 @@ function start_move_div_by_cursor(e)
 {
   var x = 0;
   var y = 0;
-  var cur_id = 0;
-  var dialog = null;
-  var event = null;
+  var cur_id;
+  var dialog;
+  var event;
 
   /* Get current msg_dialog position
    */
   cur_id = document.getElementById('current_msg_dialogs').value;
-  if(cur_id != ""){
+  if (cur_id !== "") {
     dialog = document.getElementById('e_layer' + cur_id);
     x = dialog.style.left;
     y = dialog.style.top;
     x = x.replace(/[^0-9]/g,"");
     y = y.replace(/[^0-9]/g,"");
-    if(!y) y = 200;
-    if(!x) x = 200;
+    if(!y) {
+      y = 200;
+    }
+    if(!x) {
+      x = 200;
+    }
   }
 
   /* Get mouse position within msg_dialog
    */
-  if(window.event){
+  if (window.event) {
     event = window.event;
-    if(event.offsetX){
+    if (event.offsetX) {
       div_offset_x   = event.clientX -x;
       div_offset_y   = event.clientY -y;
       enable_move_div_by_cursor = true;
     }
-  }else if(e){
+  } else if(e) {
     event = e;
-    if(event.layerX){
+    if (event.layerX) {
       div_offset_x  = event.screenX -x;
       div_offset_y  = event.screenY -y;
       enable_move_div_by_cursor = true;
@@ -328,134 +260,136 @@ function stop_move_div_by_cursor()
 /* Move msg_dialog with cursor */
 function move_div_by_cursor(e)
 {
-  var event         = false;
-  var mouse_pos_x   = 0;
-  var mouse_pos_y   = 0;
-  var cur_div_x = 0;
-  var cur_div_y = 0;
-  var cur_id  = 0;
-  var dialog = null;
-
-
-  if(undefined !== enable_move_div_by_cursor && enable_move_div_by_cursor == true){
-
-    if(document.getElementById('current_msg_dialogs')){
-
-      /* Get mouse position on screen
-       */
-      if(window.event){
-        event = window.event;
-        mouse_pos_x = event.clientX;
-        mouse_pos_y = event.clientY;
-      }else if (e){
-        event = e;
-        mouse_pos_x = event.screenX;
-        mouse_pos_y = event.screenY;
-      }else{
-        return;
-      }
-
-      /* Get id of current msg_dialog */
-      cur_id = document.getElementById('current_msg_dialogs').value;
-      if(cur_id != ""){
-        dialog = document.getElementById('e_layer' + cur_id);
+  var event;
+  var mouse_pos_x;
+  var mouse_pos_y;
+  var cur_div_x;
+  var cur_div_y;
+  var cur_id;
+  var dialog;
+
+
+  if ((enable_move_div_by_cursor === true) && document.getElementById('current_msg_dialogs')) {
+    /* Get mouse position on screen */
+    if (window.event) {
+      event = window.event;
+      mouse_pos_x = event.clientX;
+      mouse_pos_y = event.clientY;
+    } else if (e) {
+      event = e;
+      mouse_pos_x = event.screenX;
+      mouse_pos_y = event.screenY;
+    } else {
+      return;
+    }
 
-        /* Calculate new position */
-        cur_div_x = mouse_pos_x - div_offset_x;
-        cur_div_y = mouse_pos_y - div_offset_y;
+    /* Get id of current msg_dialog */
+    cur_id = document.getElementById('current_msg_dialogs').value;
+    if (cur_id !== "") {
+      dialog = document.getElementById('e_layer' + cur_id);
 
-        /* Ensure that dialog can't be moved out of screen */
-        if(cur_div_x < 0 ) cur_div_x = 0
-        if(cur_div_y < 0 ) cur_div_y = 0
+      /* Calculate new position */
+      cur_div_x = mouse_pos_x - div_offset_x;
+      cur_div_y = mouse_pos_y - div_offset_y;
 
-        /* Assign new values */
-        dialog.style.left     = (cur_div_x ) + "px";
-        dialog.style.top      = (cur_div_y ) + "px";
-        dialog.style.margin   = "0";
-        dialog.style.position = "absolute";
+      /* Ensure that dialog can't be moved out of screen */
+      if (cur_div_x < 0 ) {
+        cur_div_x = 0;
+      }
+      if (cur_div_y < 0 ) {
+        cur_div_y = 0;
       }
+
+      /* Assign new values */
+      dialog.style.left     = (cur_div_x ) + "px";
+      dialog.style.top      = (cur_div_y ) + "px";
+      dialog.style.margin   = "0";
+      dialog.style.position = "absolute";
     }
   }
 }
 
 function setProgressPie(context, percent)
 {
-    context.clearRect(0, 0, 22, 22);
+  context.clearRect(0, 0, 22, 22);
 
-    var r = "3D";
-    var g = "AE";
-    var b = "E9";
+  var r = "3D";
+  var g = "AE";
+  var b = "E9";
 
-    // Fade orange
-    if (percent > 50) {
-        r = "F6"
-        g = "74"
-        b = "00";
-    }
+  // Fade orange
+  if (percent > 50) {
+    r = "F6"
+    g = "74"
+    b = "00";
+  }
 
-    // Fade red
-    if (percent > 75) {
-        r = "ED"
-        g = "15"
-        b = "15";
-    }
+  // Fade red
+  if (percent > 75) {
+    r = "ED"
+    g = "15"
+    b = "15";
+  }
 
-    context.strokeStyle = "#" + r  + g + b
-        context.fillStyle = context.strokeStyle;
+  context.strokeStyle = "#" + r  + g + b
+  context.fillStyle   = context.strokeStyle;
 
-    context.beginPath();
-    context.moveTo(11,11)
-        context.arc(11,11,8,-Math.PI/2,-Math.PI/2 + Math.PI*percent/50,true);
-    context.closePath();
-    context.fill();
+  context.beginPath();
+  context.moveTo(11,11)
+  context.arc(11,11,8,-Math.PI/2,-Math.PI/2 + Math.PI*percent/50,true);
+  context.closePath();
+  context.fill();
 
-    context.moveTo(11,11)
-        context.beginPath();
-    context.arc(11,11,8,0,Math.PI*2,false);
-    context.closePath();
-    context.stroke();
+  context.moveTo(11,11)
+  context.beginPath();
+  context.arc(11,11,8,0,Math.PI*2,false);
+  context.closePath();
+  context.stroke();
 }
 
-function initProgressPie(){
-    var canvas = $('sTimeout');
+function initProgressPie() {
+  var canvas = $('sTimeout');
+
+  // Check the element is in the DOM and the browser supports canvas
+  if(canvas && canvas.getContext) {
+    var percent = 0.01;
+    var context = canvas.getContext('2d');
+    setProgressPie(context, percent);
+
+    // Extract timeout and title string out out canvas.title
+    var data = canvas.title;
+    var timeout = data.replace(/\|.*$/,'');
+    var title = data.replace(/^.*\|/,'');
+    var interval = 1;
+    var time = 0;
+    setInterval(
+      function() {
+        // Calculate percentage
+        percent += (interval / timeout) * 100;
+
+        // Increase current time by interval
+        time += interval;
+
+        // Generate title
+        var minutes = parseInt((timeout-time) / 60 );
+        var seconds = '' + parseInt((timeout-time) % 60);
+        if (seconds.length === 1) {
+          seconds = '0' + seconds;
+        }
+        minutes = minutes + ':' + seconds;
 
-    // Check the element is in the DOM and the browser supports canvas
-    if(canvas && canvas.getContext) {
-        var percent = 0.01;
-        var context = canvas.getContext('2d');
+        // Set new  canval title
+        canvas.title = title.replace(/%d/ ,minutes);
         setProgressPie(context, percent);
 
-        // Extract timeout and title string out out canvas.title
-        var data = canvas.title;
-        var timeout = data.replace(/\|.*$/,'');
-        var title = data.replace(/^.*\|/,'');
-        var interval = 1;
-        var time = 0;
-        setInterval(function() {
-
-                // Calculate percentage
-                percent+= (interval / timeout) * 100;
-
-                // Increase current time by interval
-                time += interval;
-
-                // Generate title
-                var minutes = parseInt((timeout-time) / 60 );
-                var seconds = '' + parseInt((timeout-time) % 60);
-                if(seconds.length == 1) seconds = '0' + seconds ;
-                minutes = minutes + ':' + seconds;
-
-                // Set new  canval title
-                canvas.title=  title.replace(/%d/ ,minutes);
-                setProgressPie(context, percent);
-
-                if (percent>99) percent= 99;
-                }, (interval * 1000));
-    }
+        if (percent > 99) {
+          percent = 99;
+        }
+      },
+      (interval * 1000)
+    );
+  }
 }
 
-
 // Global storage for baseSelector timer
 var rtimer;
-
-// vim:ts=2:syntax
diff --git a/html/include/pulldown.js b/html/include/pulldown.js
index cabfe26a64edc1154e564537421fb60afc1a6744..01869e5b10372827eb1fb8ad546e8498da2b7d2f 100644
--- a/html/include/pulldown.js
+++ b/html/include/pulldown.js
@@ -35,7 +35,7 @@ Menu.prototype = {
     this.closingMenuItem = null;
 
     this.config();
-    if (typeof customConfigFunction == "function") {
+    if (typeof customConfigFunction === "function") {
       this.customConfig = customConfigFunction;
       this.customConfig();
     }
@@ -60,24 +60,31 @@ MenuContainer.prototype = {
 
   init: function(idOrElement, parent) {
     this.element = $(idOrElement);
-          if (!this.element) return;
+    if (!this.element) {
+      return;
+    }
     this.parent = parent;
-    this.parentMenu = (this.type == "menuContainer") ? ((parent) ? parent.parent : null) : parent;
+    this.parentMenu = (this.type === "menuContainer") ? ((parent) ? parent.parent : null) : parent;
     this.root = parent instanceof Menu ? parent : parent.root;
     this.id = this.element.id;
 
-    if (this.type == "menuContainer") {
-      if (this.element.hasClassName("level1")) this.menuType = "horizontal";
-    else if (this.element.hasClassName("level2")) this.menuType = "dropdown";
-    else this.menuType = "flyout";
+    if (this.type === "menuContainer") {
+      if (this.element.hasClassName("level1")) {
+        this.menuType = "horizontal";
+      } else if (this.element.hasClassName("level2")) {
+        this.menuType = "dropdown";
+      } else {
+        this.menuType = "flyout";
+      }
 
-      if (this.menuType == "flyout" || this.menuType == "dropdown") {
+      if (this.menuType === "flyout" || this.menuType === "dropdown") {
         this.isOpen = false;
-      Element.setStyle(this.element,{
+        Element.setStyle(this.element,{
           position: "absolute",
           top: "0px",
           left: "0px",
-          visibility: "hidden"});
+          visibility: "hidden"
+        });
       } else {
         this.isOpen = true;
       }
@@ -86,17 +93,19 @@ MenuContainer.prototype = {
     }
 
     var childNodes = this.element.childNodes;
-    if (childNodes == null) return;
+    if (childNodes === null) {
+      return;
+    }
 
     for (var i = 0; i < childNodes.length; i++) {
       var node = childNodes[i];
-      if (node.nodeType == 1) {
-        if (this.type == "menuContainer") {
-          if (node.tagName.toLowerCase() == "li") {
+      if (node.nodeType === 1) {
+        if (this.type === "menuContainer") {
+          if (node.tagName.toLowerCase() === "li") {
             this.menuItems.push(new MenuItem(node, this));
           }
         } else {
-          if (node.tagName.toLowerCase() == "ul") {
+          if (node.tagName.toLowerCase() === "ul") {
             this.subMenu = new MenuContainer(node, this);
           }
         }
@@ -107,46 +116,49 @@ MenuContainer.prototype = {
   getBorders: function(element) {
     var ltrb = ["Left","Top","Right","Bottom"];
     var result = {};
+    var value;
     for (var i = 0; i < ltrb.length; ++i) {
-      if (this.element.currentStyle)
-        var value = parseInt(this.element.currentStyle["border"+ltrb[i]+"Width"]);
-      else if (window.getComputedStyle)
-        var value = parseInt(window.getComputedStyle(this.element, "").getPropertyValue("border-"+ltrb[i].toLowerCase()+"-width"));
-      else
-        var value = parseInt(this.element.style["border"+ltrb[i]]);
+      if (this.element.currentStyle) {
+        value = parseInt(this.element.currentStyle["border"+ltrb[i]+"Width"]);
+      } else if (window.getComputedStyle) {
+        value = parseInt(window.getComputedStyle(this.element, "").getPropertyValue("border-"+ltrb[i].toLowerCase()+"-width"));
+      } else {
+        value = parseInt(this.element.style["border"+ltrb[i]]);
+      }
       result[ltrb[i].toLowerCase()] = isNaN(value) ? 0 : value;
     }
     return result;
   },
 
   open: function() {
-    if (this.root.closeDelayTimer) window.clearTimeout(this.root.closeDelayTimer);
+    if (this.root.closeDelayTimer) {
+      window.clearTimeout(this.root.closeDelayTimer);
+    }
     this.parentMenu.closeAll(this);
     this.isOpen = true;
-    if (this.menuType == "dropdown") {
-    Element.setStyle(this.element,{
-      left: (Position.positionedOffset(this.parent.element)[0]) + "px",
-      top: (Position.positionedOffset(this.parent.element)[1] + Element.getHeight(this.parent.element)) + "px"
-    });
-
-    } else if (this.menuType == "flyout") {
-      var parentMenuBorders = this.parentMenu ? this.parentMenu.getBorders() : new Object();
+    if (this.menuType === "dropdown") {
+      Element.setStyle(this.element,{
+        left: (Position.positionedOffset(this.parent.element)[0]) + "px",
+        top: (Position.positionedOffset(this.parent.element)[1] + Element.getHeight(this.parent.element)) + "px"
+      });
+    } else if (this.menuType === "flyout") {
+      var parentMenuBorders = this.parentMenu ? this.parentMenu.getBorders() : {};
       var thisBorders = this.getBorders();
       if (
         (Position.positionedOffset(this.parentMenu.element)[0] + this.parentMenu.element.offsetWidth + this.element.offsetWidth + 20) >
         (window.innerWidth ? window.innerWidth : document.body.offsetWidth)
       ) {
-      Element.setStyle(this.element,{
-            left: (- this.element.offsetWidth - (this.root.collapseBorders ?  0 : parentMenuBorders["left"])) + "px"
-      });
+        Element.setStyle(this.element,{
+          left: (- this.element.offsetWidth - (this.root.collapseBorders ?  0 : parentMenuBorders["left"])) + "px"
+        });
       } else {
-      Element.setStyle(this.element,{
+        Element.setStyle(this.element,{
           left: (this.parentMenu.element.offsetWidth - parentMenuBorders["left"] - (this.root.collapseBorders ?  Math.min(parentMenuBorders["right"], thisBorders["left"]) : 0)) + "px"
-      });
+        });
       }
-    Element.setStyle(this.element,{
+      Element.setStyle(this.element,{
         top: (this.parent.element.offsetTop - parentMenuBorders["top"] - this.menuItems[0].element.offsetTop) + "px"
-    });
+      });
     }
     Element.setStyle(this.element,{visibility: "visible"});
   },
@@ -179,37 +191,43 @@ Object.extend(Object.extend(MenuItem.prototype, MenuContainer.prototype), {
         menuItem.subMenu.open();
       }
     } else {
-    if (this.root.quickCollapse) {
-      this.element.onmouseover = function() {
-      menuItem.parentMenu.closeAll();
+      if (this.root.quickCollapse) {
+        this.element.onmouseover = function() {
+          menuItem.parentMenu.closeAll();
+        }
       }
     }
-      }
-      var linkTag = this.element.getElementsByTagName("A")[0];
-      if (linkTag) {
+    var linkTag = this.element.getElementsByTagName("A")[0];
+    if (linkTag) {
      linkTag.onfocus = this.element.onmouseover;
      this.link = linkTag;
      this.text = linkTag.text;
-      }
-      if (this.subMenu) {
-    this.element.onmouseout = function() {
-      if (menuItem.root.openDelayTimer) window.clearTimeout(menuItem.root.openDelayTimer);
-      if (menuItem.root.closeDelayTimer) window.clearTimeout(menuItem.root.closeDelayTimer);
-      eval(menuItem.root.name + ".closingMenuItem = menuItem");
-      menuItem.root.closeDelayTimer = window.setTimeout(menuItem.root.name + ".closingMenuItem.subMenu.close()", menuItem.root.closeDelayTime);
     }
+    if (this.subMenu) {
+      this.element.onmouseout = function() {
+        if (menuItem.root.openDelayTimer) {
+          window.clearTimeout(menuItem.root.openDelayTimer);
+        }
+        if (menuItem.root.closeDelayTimer) {
+          window.clearTimeout(menuItem.root.closeDelayTimer);
+        }
+        menuItem.root.closingMenuItem = menuItem;
+        menuItem.root.closeDelayTimer = window.setTimeout(menuItem.root.name + ".closingMenuItem.subMenu.close()", menuItem.root.closeDelayTime);
       }
+    }
   },
 
   openItem: function() {
     this.isOpen = true;
-    if (this.subMenu) { this.subMenu.open(); }
+    if (this.subMenu) {
+      this.subMenu.open();
+    }
   },
 
   closeItem: function(trigger) {
     this.isOpen = false;
-    if (this.subMenu) {
-      if (this.subMenu != trigger) this.subMenu.close();
+    if (this.subMenu && (this.subMenu !== trigger)) {
+      this.subMenu.close();
     }
   }
 });
diff --git a/html/include/pwdStrength.js b/html/include/pwdStrength.js
index 33440e6fbbfb5cfa457d226fd6a56f63a68ef0c9..95b21b30859916dd2a5776ef41065179047f4e45 100644
--- a/html/include/pwdStrength.js
+++ b/html/include/pwdStrength.js
@@ -1,7 +1,7 @@
 /*************************************************************
 Created: 20060120
 Author:  Steve Moitozo <god at zilla dot us>
-Description: This is a quick and dirty password quality meter 
+Description: This is a quick and dirty password quality meter
      written in JavaScript
 License: MIT License (see below)
 =================================
@@ -45,117 +45,93 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
 OR OTHER DEALINGS IN THE SOFTWARE.
 ---------------------------------------------------------------
- 
+
 ************************************************************ */
 function testPasswordCss(passwd)
 {
-    var intScore   = 0
-    
-    // PASSWORD LENGTH
-    if (passwd.length==0 || !passwd.length)                         // length 0
-    {
-      intScore = -1
-    }
-    else if (passwd.length>0 && passwd.length<5) // length between 1 and 4
-    {
-      intScore = (intScore+3)
-    }
-    else if (passwd.length>4 && passwd.length<8) // length between 5 and 7
-    {
-      intScore = (intScore+6)
-    }
-    else if (passwd.length>7 && passwd.length<12)// length between 8 and 15
-    {
-      intScore = (intScore+12)
-    }
-    else if (passwd.length>11)                    // length 16 or more
-    {
-      intScore = (intScore+18)
-    }
-    
-    
-    // LETTERS (Not exactly implemented as dictacted above because of my limited understanding of Regex)
-    if (passwd.match(/[a-z]/))                              // [verified] at least one lower case letter
-    {
-      intScore = (intScore+1)
-    }
-    
-    if (passwd.match(/[A-Z]/))                              // [verified] at least one upper case letter
-    {
-      intScore = (intScore+5)
-    }
-    
-    // NUMBERS
-    if (passwd.match(/\d+/))                                 // [verified] at least one number
-    {
-      intScore = (intScore+5)
-    }
-    
-    if (passwd.match(/(.*[0-9].*[0-9].*[0-9])/))             // [verified] at least three numbers
-    {
-      intScore = (intScore+5)
-    }
-    
-    
-    // SPECIAL CHAR
-    if (passwd.match(/.[!,@,#,$,%,^,&,*,?,_,~]/))            // [verified] at least one special character
-    {
-      intScore = (intScore+5)
-    }
-    
-                                 // [verified] at least two special characters
-    if (passwd.match(/(.*[!,@,#,$,%,^,&,*,?,_,~].*[!,@,#,$,%,^,&,*,?,_,~])/))
-    {
-      intScore = (intScore+5)
-    }
-  
-    
-    // COMBOS
-    if (passwd.match(/([a-z].*[A-Z])|([A-Z].*[a-z])/))        // [verified] both upper and lower case
-    {
-      intScore = (intScore+2)
-    }
-
-          if (passwd.match(/([a-zA-Z])/) && passwd.match(/([0-9])/)) // [verified] both letters and numbers
-          {
-                  intScore = (intScore+2)
-          }
-
-    // [verified] letters, numbers, and special characters
-    if (passwd.match(/([a-zA-Z0-9].*[!,@,#,$,%,^,&,*,?,_,~])|([!,@,#,$,%,^,&,*,?,_,~].*[a-zA-Z0-9])/))
-    {
-      intScore = (intScore+2)
-    }
-
-  
-    if(intScore == -1)
-    {
-       $('meterEmpty').setStyle({width: '100%'});
-         $('meterFull').setStyle({width: '0%'});
-    }
-    else if(intScore > -1 && intScore < 16)
-    {
-       $('meterEmpty').setStyle({width: '100%'});
-         $('meterFull').setStyle({width: '0%'});
-    }
-    else if (intScore > 15 && intScore < 25)
-    {
-       $('meterEmpty').setStyle({width: '100%'});
-         $('meterFull').setStyle({width: '25%'});
-    }
-    else if (intScore > 24 && intScore < 35)
-    {
-       $('meterEmpty').setStyle({width: '100%'});
-         $('meterFull').setStyle({width: '50%'});
-    }
-    else if (intScore > 34 && intScore < 45)
-    {
-       $('meterEmpty').setStyle({width: '100%'});
-         $('meterFull').setStyle({width: '75%'});
-    }
-    else
-    {
-       $('meterEmpty').setStyle({width: '100%'});
-         $('meterFull').setStyle({width: '100%'});
-    }
+  var intScore = 0
+
+  // PASSWORD LENGTH
+  if ((passwd.length === 0) || !passwd.length) {
+    intScore = -1
+  } else if (passwd.length > 11) {
+    intScore = (intScore+18)
+  } else if (passwd.length > 7) {
+    intScore = (intScore+12)
+  } else if (passwd.length > 4) {
+    intScore = (intScore+6)
+  } else {
+    intScore = (intScore+3)
+  }
+
+
+  // LETTERS (Not exactly implemented as dictacted above because of my limited understanding of Regex)
+  if (passwd.match(/[a-z]/))                              // [verified] at least one lower case letter
+  {
+    intScore = (intScore+1)
+  }
+
+  if (passwd.match(/[A-Z]/))                              // [verified] at least one upper case letter
+  {
+    intScore = (intScore+5)
+  }
+
+  // NUMBERS
+  if (passwd.match(/\d+/))                                 // [verified] at least one number
+  {
+    intScore = (intScore+5)
+  }
+
+  if (passwd.match(/(.*[0-9].*[0-9].*[0-9])/))             // [verified] at least three numbers
+  {
+    intScore = (intScore+5)
+  }
+
+
+  // SPECIAL CHAR
+  if (passwd.match(/.[!,@,#,$,%,^,&,*,?,_,~]/))            // [verified] at least one special character
+  {
+    intScore = (intScore+5)
+  }
+
+  // [verified] at least two special characters
+  if (passwd.match(/(.*[!,@,#,$,%,^,&,*,?,_,~].*[!,@,#,$,%,^,&,*,?,_,~])/))
+  {
+    intScore = (intScore+5)
+  }
+
+
+  // COMBOS
+  if (passwd.match(/([a-z].*[A-Z])|([A-Z].*[a-z])/))        // [verified] both upper and lower case
+  {
+    intScore = (intScore+2)
+  }
+
+  if (passwd.match(/([a-zA-Z])/) && passwd.match(/([0-9])/)) // [verified] both letters and numbers
+  {
+    intScore = (intScore+2)
+  }
+
+  // [verified] letters, numbers, and special characters
+  if (passwd.match(/([a-zA-Z0-9].*[!,@,#,$,%,^,&,*,?,_,~])|([!,@,#,$,%,^,&,*,?,_,~].*[a-zA-Z0-9])/)) {
+    intScore = (intScore+2)
+  }
+
+
+  if(intScore > -2 && intScore < 16) {
+    $('meterEmpty').setStyle({width: '100%'});
+    $('meterFull').setStyle({width: '0%'});
+  } else if (intScore > 15 && intScore < 25) {
+    $('meterEmpty').setStyle({width: '100%'});
+    $('meterFull').setStyle({width: '25%'});
+  } else if (intScore > 24 && intScore < 35) {
+    $('meterEmpty').setStyle({width: '100%'});
+    $('meterFull').setStyle({width: '50%'});
+  } else if (intScore > 34 && intScore < 45) {
+    $('meterEmpty').setStyle({width: '100%'});
+    $('meterFull').setStyle({width: '75%'});
+  } else {
+    $('meterEmpty').setStyle({width: '100%'});
+    $('meterFull').setStyle({width: '100%'});
+  }
 }
diff --git a/html/index.php b/html/index.php
index 9000d3f531f80657bc40bdf791eda4d53d413190..cc355254b5be562c4ee736e25634f72d4eda509a 100644
--- a/html/index.php
+++ b/html/index.php
@@ -346,7 +346,8 @@ class Index {
     /* Not account expired or password forced change go to main page */
     logging::log('security', 'login', '', array(), 'User "'.self::$username.'" logged in successfully.');
     session::global_set('connected', 1);
-    $config->checkLdapConfig(); // check that newly installed plugins have their configuration in the LDAP
+    // check that newly installed plugins have their configuration in the LDAP
+    $config->checkLdapConfig();
     session::global_set('DEBUGLEVEL', $config->get_cfg_value('DEBUGLEVEL'));
     header ('Location: main.php?global_check=1');
     exit;
diff --git a/html/plugins/users/style/user_tab.css b/html/plugins/users/style/user_tab.css
index cfa42b9c18e5ef418cd0a7b017d7508dd1f10182..a1a3d232bf8afa8ddf467c56b89f46bf396b5a97 100644
--- a/html/plugins/users/style/user_tab.css
+++ b/html/plugins/users/style/user_tab.css
@@ -1,15 +1,15 @@
 
 /* On big screens */
 @media (min-width: 640px) {
-  .plugin_section#perso img#jpegPhoto_img {
-  position:absolute;
-  left:5px;
-  top:32px;
-  box-sizing:border-box;
-  max-height:80%;
+  .plugin-section#perso img#jpegPhoto_img {
+  position: absolute;
+  left: 5px;
+  top: 32px;
+  box-sizing: border-box;
+  max-height: 80%;
   }
 
-  .plugin_section#perso > div > table {
-  padding-left:160px;
+  .plugin-section#perso > div > table {
+  padding-left: 160px;
   }
 }
diff --git a/html/setup.php b/html/setup.php
index b2d9918d793a562cd801c8d2c67468e79ace58b5..c03b3bf857ed87b56ac807b21cfafd95c7231526 100644
--- a/html/setup.php
+++ b/html/setup.php
@@ -40,7 +40,7 @@ header("Content-type: text/html; charset=UTF-8");
 
 /* Set cookie lifetime to one day (The parameter is in seconds ) */
 session_set_cookie_params(24 * 60 * 60);
-session_cache_expire(60 * 24);  // default is 180
+session_cache_expire(60 * 24);
 ini_set("session.gc_maxlifetime", 24 * 60 * 60);
 
 /* Start session */
diff --git a/html/themes/breezy/datepicker.css b/html/themes/breezy/datepicker.css
index f0c83aa5407b46f92150e0bd3873c6a155e96bd7..5a1d8371e8359e9ed085950b54f3e8de00d8ce81 100644
--- a/html/themes/breezy/datepicker.css
+++ b/html/themes/breezy/datepicker.css
@@ -1,196 +1,180 @@
 
-
 div.datepicker {
-position:absolute;
-text-align:center;
-border:1px #AAA solid;
-font-family:arial;
-background:#fcfcfc;
-font-size:10px;
-padding:0;
+position: absolute;
+text-align: center;
+border: 1px #AAA solid;
+font-family: arial;
+background: #fcfcfc;
+font-size: 10px;
+padding: 0;
 }
 
-div.datepicker-calendar table {
-font-size:10px;
-border:1px solid #fcfcfc;
-margin:0;
-padding:0;
-text-align:center;
+.datepicker-calendar table {
+font-size: 10px;
+border: 1px solid #fcfcfc;
+margin: 0;
+padding: 0;
+text-align: center;
 }
 
-div.datepicker div.datepicker-header {
-font-size:11px;
-font-weight:bold;
-background:#F0F0F0;
-border-bottom:1px solid #AAA;
-padding:2px;
-text-align:center;
+div.datepicker .datepicker-header {
+font-size: 11px;
+font-weight: bold;
+background: #F0F0F0;
+border-bottom: 1px solid #AAA;
+padding: 2px;
+text-align: center;
 }
 
-div.datepicker table.header {
-width:175px;
-border:0;
-padding:0;
-text-align:center;
-border-spacing:0;
-border-collapse:collapse;
+div.datepicker .datepicker-header table.header {
+width: 175px;
+border: 0;
+padding: 0;
+text-align: center;
+border-spacing: 0;
+border-collapse: collapse;
 }
 
-td.prev,td.prev_year,td.next,td.next_year {
-width:8%;
-cursor:pointer;
-font-weight:bold;
-line-height:16px;
+td.prev,td.prev-year,td.next,td.next-year {
+width: 8%;
+cursor: pointer;
+font-weight: bold;
+line-height: 16px;
 }
 
-td.prev:hover,td.prev_year:hover,td.next:hover,td.next_year:hover {
-background-color:#D0D0D0;
+td.prev:hover,td.prev-year:hover,td.next:hover,td.next-year:hover {
+background-color: #D0D0D0;
 }
 
 td.header {
-text-align:center;
-width:68%;
-font-weight:bold;
-line-height:16px;
-}
-
-div.datepicker-header {
-height:16px;
+text-align: center;
+width: 68%;
+font-weight: bold;
+line-height: 16px;
 }
 
-div.datepicker-calendar table tbody tr {
-border:1px solid #fcfcfc;
-margin:0;
-padding:0;
+.datepicker-header {
+height: 16px;
 }
 
-div.datepicker-calendar table tbody tr td {
-border:1px #EAEAEA solid;
-margin:0;
-padding:0;
-text-align:center;
-height:16px;
-line-height:16px;
-width:21px;
-cursor:pointer;
+.datepicker-calendar table tbody tr {
+border: 1px solid #fcfcfc;
+margin: 0;
+padding: 0;
 }
 
-div.datepicker-calendar table tbody tr td:hover,div.datepicker-calendar table tbody tr td.outbound:hover,div.datepicker-calendar table tbody tr td.today:hover {
-border:1px #CCE9FF solid;
-background:#E9F5FF;
-cursor:pointer;
+.datepicker-calendar table tbody tr td {
+box-sizing: content-box;
+border: 1px #EAEAEA solid;
+margin: 0;
+padding: 0;
+text-align: center;
+height: 16px;
+line-height: 16px;
+width: 21px;
+cursor: pointer;
 }
 
-div.datepicker-calendar table tbody tr td.wday {
-border:1px #AAA solid;
-background:#CCC;
-cursor:text;
-width:21px;
-height:16px;
-line-height:16px;
-font-weight:bold;
+.datepicker-calendar table tbody tr td:hover,
+.datepicker-calendar table tbody tr td.outbound:hover,
+.datepicker-calendar table tbody tr td.today:hover {
+border: 1px #CCE9FF solid;
+background: #E9F5FF;
+cursor: pointer;
 }
 
-div.datepicker-calendar table tbody tr td.outbound {
-background:#F4F3F3;
+.datepicker-calendar table tbody tr td.wday {
+box-sizing: content-box;
+border: 1px #AAA solid;
+background: #CCC;
+cursor: text;
+width: 21px;
+height: 16px;
+line-height: 16px;
+font-weight: bold;
 }
 
-div.datepicker-calendar table tbody tr td.today {
-border:1px #CCE9FF solid;
-background:#E9F5FF;
-background-image:url(../../images/date_active.png);
-background-repeat:no-repeat;
-width:21px;
-height:16px;
-line-height:16px;
+.datepicker-calendar table tbody tr td.outbound {
+background: #F4F3F3;
 }
 
-div.datepicker-calendar table tbody tr td.today:hover {
-border:1px #CCE9FF solid;
-background:#E9F5FF;
-background-image:url(../../images/date_active.png);
-background-repeat:no-repeat;
+.datepicker-calendar table tbody tr td.today,
+.datepicker-calendar table tbody tr td.today:hover {
+box-sizing: content-box;
+border: 1px #CCE9FF solid;
+background: #E9F5FF;
+background-image: url(../../images/date_active.png);
+background-repeat: no-repeat;
+width: 21px;
+height: 16px;
+line-height: 16px;
 }
 
-div.datepicker-calendar table tbody tr td.nclick,div.datepicker-calendar table tbody tr td.nclick_outbound {
-cursor:default;
-color:#aaa;
-width:21px;
-height:16px;
-line-height:16px;
+.datepicker-calendar table tbody tr td.nclick,
+.datepicker-calendar table tbody tr td.nclick-outbound {
+cursor: default;
+color: #aaa;
+width: 21px;
+height: 16px;
+line-height: 16px;
 }
 
-div.datepicker-calendar table tbody tr td.nclick_outbound {
-background:#E8E4E4;
-width:21px;
-height:16px;
-line-height:16px;
+.datepicker-calendar table tbody tr td.nclick-outbound {
+background: #E8E4E4;
+width: 21px;
+height: 16px;
+line-height: 16px;
 }
 
-div.datepicker-calendar table tbody tr td.nclick:hover,div.datepicker-calendar table tbody tr td.nclick_outbound:hover {
-border:1px #EAEAEA solid;
-background:#fcfcfc;
+.datepicker-calendar table tbody tr td.nclick:hover,
+.datepicker-calendar table tbody tr td.nclick-outbound:hover {
+border: 1px #EAEAEA solid;
+background: #fcfcfc;
 }
 
-div.datepicker-calendar table tbody tr td.nclick_outbound:hover {
-background:#E8E4E4;
+.datepicker-calendar table tbody tr td.nclick-outbound:hover {
+background: #E8E4E4;
 }
 
 div.datepicker div.datepicker-footer {
-font-size:10px;
-background:#F0F0F0;
-border-top:1px solid #AAA;
-cursor:pointer;
-text-align:center;
-padding:2px;
+font-size: 10px;
+background: #F0F0F0;
+border-top: 1px solid #AAA;
+cursor: pointer;
+text-align: center;
+padding: 2px;
 }
 
 .date {
-float:left;
-text-align:center;
-width:90px;
+float: left;
+text-align: center;
+width: 90px;
 }
 html.rtl .date {
-float:right;
+float: right;
 }
 
 .datepicker-opener-table {
-border:1px solid transparent;
-padding:0;
-border-spacing:0;
-margin:0 0 0 93px;
-background:transparent url(../../geticon.php?context=applications&icon=office-calendar&size=16) no-repeat 0 0;
-width:18px;
-height:18px;
-cursor:pointer;
+box-sizing: border-box;
+border: 1px solid transparent;
+padding: 0;
+border-spacing: 0;
+margin: 0 0 0 93px;
+background: transparent url(../../geticon.php?context=applications&icon=office-calendar&size=16) no-repeat 0 0;
+width: 20px;
+height: 20px;
+cursor: pointer;
 }
 html.rtl .datepicker-opener-table {
-margin:0 93px 0 0;
-}
-
-.Opera .datepicker-opener-table {
-float:right;
-}
-html.rtl .Opera .datepicker-opener-table {
-float:left;
-}
-
-.IE7 .datepicker-opener-table {
-position:relative;
-top:0;
-left:3px;
-}
-html.rtl .IE7 .datepicker-opener-table {
-right:3px;
-left:auto;
+margin: 0 93px 0 0;
 }
 
 .datepicker-opener {
-width:16px;
-height:16px;
-margin:0 0 0 3px;
-cursor:pointer;
+width: 16px;
+height: 16px;
+margin: 0 0 0 3px;
+cursor: pointer;
 }
 html.rtl .datepicker-opener {
-margin:0 3px 0 0;
+margin: 0 3px 0 0;
 }
diff --git a/html/themes/breezy/dialog.css b/html/themes/breezy/dialog.css
index 7ed68719db78ccf59e53c98f5d384bfc36e2f684..3b8b0f7129823adb1ecc22eb5bfe9a6ec31f4246 100644
--- a/html/themes/breezy/dialog.css
+++ b/html/themes/breezy/dialog.css
@@ -1,32 +1,32 @@
 
 div.msgtitle {
-width:auto;
-background-color:#F0F0F0;
+width: auto;
+background-color: #F0F0F0;
 border: solid 1px #BBBBBB;
-margin-bottom:7px;
+margin-bottom: 7px;
 }
 div.msgtitle h2 {
-margin:10px;
+margin: 10px;
 }
 
 div.msgdialog {
-width:60%;
-z-index:150;
-position:relative;
-display:none;
-margin:auto;
-top:200px;
+width: 60%;
+z-index: 150;
+position: relative;
+display: none;
+margin: auto;
+top: 200px;
 }
 @media (max-height: 600px) {
   div.msgdialog {
-    top:auto;
+    top: auto;
   }
 }
 
 /* Small screens (i.e. phones) */
 @media (max-width: 640px) {
   div.msgdialog {
-    top:auto;
-    width:auto;
+    top: auto;
+    width: auto;
   }
 }
diff --git a/html/themes/breezy/form.css b/html/themes/breezy/form.css
index 0e5f00372a0b6dca723f4d7db8ced91fd7f9a4fb..d29e9073cc8a1bea81815b40554f1f1c027e74f3 100644
--- a/html/themes/breezy/form.css
+++ b/html/themes/breezy/form.css
@@ -1,27 +1,27 @@
 input, input:focus, select, textarea, textarea:focus {
-font-size:12px;
+font-size: 12px;
 }
 
 input[type=text], input[type=password], select {
-padding:2px;
+padding: 2px;
 }
 
 input[disabled] {
-color:#888;
-background-color:#DDD;
+color: #888;
+background-color: #DDD;
 }
 
 textarea[disabled], select[disabled] {
-color:#31363b;
-background-color:#DDD;
+color: #31363b;
+background-color: #DDD;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
   input[type=text], input[type=password], input[type=file], textarea, select {
-  max-width:100%;
+  max-width: 100%;
   }
-  input.base_selector {
-  max-width:100px;
+  input.base-selector {
+  max-width: 100px;
   }
 }
diff --git a/html/themes/breezy/lists.css b/html/themes/breezy/lists.css
index 1d763fab0845f6fc9074a7bcc97a57edffc6c89d..b9f0569f6fe4e16058112f5320e2f17951b36d30 100644
--- a/html/themes/breezy/lists.css
+++ b/html/themes/breezy/lists.css
@@ -3,334 +3,333 @@
  *           L i s t s          *
  ********************************/
 table.listingTable {
-border-top:1px solid #C0C2C3;
-border-bottom:1px solid #C0C2C3;
-border-left:1px solid #C0C2C3;
-border-spacing:0;
+border-top: 1px solid #C0C2C3;
+border-bottom: 1px solid #C0C2C3;
+border-left: 1px solid #C0C2C3;
+border-spacing: 0;
 }
 
 table.listingTable thead tr {
-position:relative;
-height:auto;
-margin:3px;
-padding:1px;
-white-space:nowrap;
+position: relative;
+height: auto;
+margin: 3px;
+padding: 1px;
+white-space: nowrap;
 }
 
 table.listingTable > thead > tr > th {
-background:#F0F0F0;
-font-weight:bold;
-border-right:1px solid #C0C2C3;
-border-bottom:1px solid #C0C2C3;
-padding:3px;
-height:22px;
+box-sizing: content-box;
+background: #F0F0F0;
+font-weight: bold;
+border-bottom: 1px solid #C0C2C3;
+padding: 3px;
+height: 22px;
+}
+html.ltr table.listingTable > thead > tr > th {
+border-right: 1px solid #C0C2C3;
 }
 html.rtl table.listingTable > thead > tr > th {
-border-left:1px solid #C0C2C3;
-border-right:none;
+border-left: 1px solid #C0C2C3;
 }
 
 table.listingTable > tbody {
-height:100%;
-overflow-x:hidden;
-overflow-y:auto;
+height: 100%;
+overflow-x: hidden;
+overflow-y: auto;
 }
 
 table.listingTable > tbody > tr {
-height:auto;
-white-space:nowrap;
+height: auto;
+white-space: nowrap;
 }
 
 table.listingTable > tbody > tr:nth-child(odd) {
-  background-color:#fcfcfc;
+  background-color: #fcfcfc;
 }
 
 table.listingTable > tbody > tr:nth-child(even) {
-  background-color:#F5F5F5;
+  background-color: #F5F5F5;
 }
 
 table.listingTable > tbody > tr.entry-locked:nth-child(odd) {
-  background-color:#FFC;
+  background-color: #FFC;
 }
 
 table.listingTable > tbody > tr.entry-locked:nth-child(even) {
-  background-color:#F5F5CC;
+  background-color: #F5F5CC;
 }
 
 html.ltr table.listingTable > tbody > tr td:last-child {
-padding-right:5px;
+padding-right: 5px;
 }
 html.rtl table.listingTable > tbody > tr td:last-child {
-padding-left:5px;
+padding-left: 5px;
 }
 
 table.listingTable > tbody > tr:hover {
-  background-color:#DDD;
+  background-color: #DDD;
 }
 
 table.listingTable > tbody > tr.entry-locked:hover {
-  background-color:#DDA;
+  background-color: #DDA;
 }
 
 table.listingTable > tbody > tr td {
-color:#31363b;
-margin:3px;
-padding:2px;
-border-right:1px solid #C0C2C3;
-word-wrap:break-word;
-white-space:normal;
-max-width:500px;
-background:transparent;
-height:22px;
+color: #31363b;
+margin: 3px;
+padding: 2px;
+word-wrap: break-word;
+white-space: normal;
+max-width: 500px;
+background: transparent;
+height: 22px;
+}
+html.ltr table.listingTable > tbody > tr td {
+border-right: 1px solid #C0C2C3;
 }
 html.rtl table.listingTable > tbody > tr td {
-border-left:1px solid #C0C2C3;
-border-right:none;
+border-left: 1px solid #C0C2C3;
 }
 
+table.listingTable > tbody > tr td > input[type=image],
+table.listingTable > tbody > tr td > img {
+padding: 1px;
+}
 
 table.listingTable > tbody > tr td > a:link {
-text-decoration:none;
-color:#2980b9;
+text-decoration: none;
+color: #2980b9;
 }
 
 table.listingTable > tbody > tr td > a:visited {
-text-decoration:none;
-color:#2980b9;
+text-decoration: none;
+color: #2980b9;
 }
 
 /* List border */
 
 div.nlistFooter {
-background-color:#E5E5E5;
-border-left:1px solid silver;
-border-right:1px solid silver;
-border-bottom:1px solid silver;
-padding:0;
-width:auto;
+background-color: #E5E5E5;
+border-left: 1px solid silver;
+border-right: 1px solid silver;
+border-bottom: 1px solid silver;
+padding: 3px;
+width: auto;
 }
 
 /* Sortable Lists (only used in user main tab) */
 div.sortableListContainer {
-border:1px solid #C0C2C3;
-overflow:auto;
-margin-bottom:2px;
+border: 1px solid #C0C2C3;
+overflow: auto;
+margin-bottom: 2px;
 }
 
 .sortableListContainer th {
-background-color:#D8D8D8;
-padding:3px;
-text-align:left;
-border-left:1px solid #C0C2C3;
+background-color: #D8D8D8;
+padding: 3px;
+text-align: left;
+border-left: 1px solid #C0C2C3;
 }
 html.rtl .sortableListContainer th {
-text-align:right;
-border-right:1px solid #C0C2C3;
-border-left:none;
+text-align: right;
+border-right: 1px solid #C0C2C3;
+border-left: none;
 }
 
 .sortableListContainer td {
-padding:3px;
-text-align:left;
-border-left:1px solid #C0C2C3;
+padding: 3px;
+text-align: left;
+border-left: 1px solid #C0C2C3;
 }
 html.rtl .sortableListContainer td {
-text-align:right;
-border-right:1px solid #C0C2C3;
-border-left:none;
+text-align: right;
+border-right: 1px solid #C0C2C3;
+border-left: none;
 }
 
 tr.sortableListItem {
-background-color:#fcfcfc;
-cursor:move;
-color:#31363b;
+background-color: #fcfcfc;
+cursor: move;
+color: #31363b;
 }
 
 tr.sortableListItemFill {
-background-color:#fcfcfc;
-cursor:default;
+background-color: #fcfcfc;
+cursor: default;
 }
 
 tr.sortableListItemOdd {
-background-color:#F5F5F5;
-cursor:move;
-color:#31363b;
+background-color: #F5F5F5;
+cursor: move;
+color: #31363b;
 }
 
 tr.sortableListItem:hover,tr.sortableListItemOdd:hover {
-background-color:#EEE;
+background-color: #EEE;
 }
 
 tr.sortableListItemDisabled {
-cursor:default;
-color:#CCC;
+cursor: default;
+color: #CCC;
 }
 
 table.sortableListTable {
-border:0;
+border: 0;
 }
 
 tr.sortableListItemMarked {
-background-color:#FFD;
+background-color: #FFD;
 }
 
 /* Tree List (used in baseSelector) */
 ul.treeList,ul.treeList ul {
-list-style-type:none;
-background:url(../../images/lists/vline.png) repeat-y;
-margin:0;
-padding:0;
+list-style-type: none;
+background: url(../../images/lists/vline.png) repeat-y;
+margin: 0;
+padding: 0;
 }
 
 html.ltr ul.treeList ul {
-margin-left:10px;
+margin-left: 10px;
 }
 html.rtl ul.treeList ul {
-margin-right:10px;
+margin-right: 10px;
 }
 
 ul.treeList a:hover {
-background-color:#DDD;
+background-color: #DDD;
 }
 
 a.treeList {
-padding:2px;
-cursor:pointer;
+padding: 2px;
+cursor: pointer;
 }
 
 a.treeListSelected {
-font-weight:bold;
-color:#2980b9;
-background-color:#DDD;
-padding:2px;
-cursor:pointer;
+font-weight: bold;
+color: #2980b9;
+background-color: #DDD;
+padding: 2px;
+cursor: pointer;
 }
 
 a.treeList:hover,a.treeListSelected:hover {
-background-color:#DDD;
-padding:2px;
+background-color: #DDD;
+padding: 2px;
 }
 
 ul.treeList a {
-padding:2px;
-cursor:pointer;
+padding: 2px;
+cursor: pointer;
 }
 
 ul.treeList li {
-margin:0;
-padding:0 12px;
-line-height:20px;
-background:url(../../images/lists/node.png) no-repeat;
+margin: 0;
+padding: 0 12px;
+line-height: 20px;
+background: url(../../images/lists/node.png) no-repeat;
 }
 
 li.treeListSelected a {
-font-weight:bold;
-color:#2980b9;
-padding:2px;
-}
-
-ul.treeList li.last {
-background:#fcfcfc url(../../images/lists/lastnode.png) no-repeat;
+font-weight: bold;
+color: #2980b9;
+padding: 2px;
 }
 
+ul.treeList li.last,
 ul.treeList li:last-child {
-background:#fcfcfc url(../../images/lists/lastnode.png) no-repeat;
+background: #fcfcfc url(../../images/lists/lastnode.png) no-repeat;
 }
 
 div.treeList {
-background-color:#fcfcfc;
-border:1px solid #C0C2C3;
-padding:5px;
-position:absolute;
-z-index:500;
-overflow-y:auto;
-float:left;
+background-color: #fcfcfc;
+border: 1px solid #C0C2C3;
+padding: 5px;
+position: absolute;
+z-index: 500;
+overflow-y: auto;
+float: left;
 }
 html.rtl div.treeList {
-float:right;
-}
-
-/* Max height for IE */
-* html div.treeList {
-height: expression( this.scrollHeight > 500 ? "500px" : "auto" );
+float: right;
 }
 
-table.listing_container {
-width:100%;
-height:100%;
-vertical-align:top;
-text-align:left;
-border:none;
-border-spacing:2px;
+table.listing-container {
+width: 100%;
+height: 100%;
+vertical-align: top;
+text-align: left;
+border: none;
+border-spacing: 2px;
 }
-html.rtl table.listing_container {
-text-align:right;
+html.rtl table.listing-container {
+text-align: right;
 }
 
-table.listing_container > tbody > tr > td.list {
-height:100%;
-vertical-align:top;
+table.listing-container > tbody > tr > td.list {
+height: 100%;
+vertical-align: top;
 }
 
-table.listing_container > tbody >  tr > td.filter {
-max-width:300px;
-vertical-align:top;
+table.listing-container > tbody >  tr > td.filter {
+max-width: 300px;
+vertical-align: top;
 }
 
-table.listing_container > tbody >  tr > td.filter .contentboxb {
-min-width:230px;
+table.listing-container > tbody >  tr > td.filter .contentboxb {
+min-width: 230px;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
   table.listingTable {
-  table-layout:auto;
+  table-layout: auto;
   }
   table.listingTable > tbody > tr > td, table.listingTable > thead > tr > th {
-  width:auto !important;
-  min-width:0 !important;
+  width: auto !important;
+  min-width: 0 !important;
   }
   html.ltr table.listingTable > tbody > tr td:last-child {
-  padding-right:1px;
+  padding-right: 1px;
   }
   html.rtl table.listingTable > tbody > tr td:last-child {
-  padding-left:1px;
+  padding-left: 1px;
   }
-  table.listing_container {
-  border:none;
-  border-spacing:0px;
-  border-collapse:collapse;
+  table.listing-container {
+  border: none;
+  border-spacing: 0;
+  border-collapse: collapse;
   }
-  table.listing_container > tbody > tr > td.list, table.listing_container > tbody >  tr > td.filter {
-  width:100%;
-  min-width:0;
-  max-width:none;
-  height:auto;
-  display:block;
-  padding:0;
+  table.listing-container > tbody > tr > td.list, table.listing-container > tbody >  tr > td.filter {
+  width: 100%;
+  min-width: 0;
+  max-width: none;
+  height: auto;
+  display: block;
+  padding: 0;
   }
-  table.listing_container > tbody > tr > td.list > div, table.listing_container > tbody >  tr > td.filter > div {
-  border:none;
+  table.listing-container > tbody > tr > td.list > div, table.listing-container > tbody >  tr > td.filter > div {
+  border: none;
   }
-  table.listing_container > tbody > tr > td.list:after, table.listing_container > tbody >  tr > td.filter:after {
-  content:" ";
-  display:block;
+  table.listing-container > tbody > tr > td.list:after, table.listing-container > tbody >  tr > td.filter:after {
+  content: " ";
+  display: block;
   }
-  table.listing_container > tbody >  tr > td.filter input[type=submit] {
-  border:1px solid #DDD;
-  width:100% !important;
-  padding:10px;
-  display:inline-block;
-  font-weight:bold;
+  table.listing-container > tbody >  tr > td.filter input[type=submit] {
+  border: 1px solid #DDD;
+  width: 100% !important;
+  padding: 10px;
+  display: inline-block;
+  font-weight: bold;
   }
-  html.ltr table.listing_container > tbody >  tr > td.filter input[type=submit]:active {
-  position:relative;
-  top:1px;
-  left:1px;
+  html.ltr table.listing-container > tbody >  tr > td.filter input[type=submit]:active {
+  position: relative;
+  top: 1px;
+  left: 1px;
   }
-  html.rtl table.listing_container > tbody >  tr > td.filter input[type=submit]:active {
-  position:relative;
-  top:1px;
-  right:1px;
+  html.rtl table.listing-container > tbody >  tr > td.filter input[type=submit]:active {
+  position: relative;
+  top: 1px;
+  right: 1px;
   }
 }
diff --git a/html/themes/breezy/login.css b/html/themes/breezy/login.css
index 67b67bfa35e99495029e4802a319c5b258d29769..e033cae3aabf661b475dd60d9dd94fba43e3746f 100644
--- a/html/themes/breezy/login.css
+++ b/html/themes/breezy/login.css
@@ -1,106 +1,102 @@
 /* Login screen */
 p.gosaLoginWarning {
-text-align:center;
-color:red;
-font-weight:bold;
-font-size:12px;
+text-align: center;
+color: red;
+font-weight: bold;
+font-size: 12px;
 }
 
 html, body {
-min-height:100%;
+min-height: 100%;
 }
 
-div#window_container {
-text-align:center;
-/*box-shadow:0 0 2px black;*/
-width:100%;
-bottom:0;
-top:52px;
-position:absolute;
+div#window-container {
+text-align: center;
+width: 100%;
+bottom: 0;
+top: 52px;
+position: absolute;
 }
 
-div#window_div {
-min-width:50%;
-margin-top:100px;
-border:1px solid #c0c2c3;
-background-color:#f3f4f4;
-display:inline-block;
-/*border-radius:10px;*/
-/*box-shadow:0 0 3px black inset;*/
+div#window-div {
+min-width: 50%;
+margin-top: 100px;
+border: 1px solid #c0c2c3;
+background-color: #f3f4f4;
+display: inline-block;
 }
 
-div#window_titlebar {
-text-align:center;
-border-bottom:1px solid #c0c2c3;
-padding:8px;
-background-color:#eff0f1;
-/*border-radius:10px 10px 0 0;*/
+div#window-titlebar {
+text-align: center;
+border-bottom: 1px solid #c0c2c3;
+padding: 8px;
+background-color: #eff0f1;
 }
 
-div#window_titlebar > p {
-margin:0;
-padding:0;
-font-size:24px;
-font-weight:bold;
+div#window-titlebar > p {
+margin: 0;
+padding: 0;
+font-size: 24px;
+font-weight: bold;
 }
 
-div#window_content > div {
-padding:10px;
+div#window-content > div {
+padding: 10px;
 }
 
 a:link {
-text-decoration:none;
-color:#2980b9;
+text-decoration: none;
+color: #2980b9;
 }
 
 a:visited {
-text-decoration:none;
-color:#2980b9;
+text-decoration: none;
+color: #2980b9;
 }
 
-div#window_footer {
-padding:0;
+div#window-footer {
+padding: 0;
 }
 
-div#window_footer > div {
-display:inline-block;
-width:47%;
-padding:1%;
+div#window-footer > div {
+display: inline-block;
+width: 47%;
+padding: 1%;
 }
 
-div#window_footer > div:nth-child(1) {
-color:red;
-font-weight:bold;
+div#window-footer > div:nth-child(1) {
+color: red;
+font-weight: bold;
 }
-html.ltr div#window_footer > div:nth-child(1) {
-text-align:left;
+html.ltr div#window-footer > div:nth-child(1) {
+text-align: left;
 }
-html.rtl div#window_footer > div:nth-child(1) {
-text-align:right;
+html.rtl div#window-footer > div:nth-child(1) {
+text-align: right;
 }
 
 span.warning, p.warning {
-color:red;
+color: red;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
-  div#window_div {
-  min-width:70%;
-  margin-top:10px;
+  div#window-div {
+  min-width: 70%;
+  margin-top: 10px;
   }
-  div#window_footer > div {
-  display:block;
-  width:auto;
-  padding:5px;
-  text-align:center !important;
+  div#window-footer > div {
+  display: block;
+  width: auto;
+  padding: 5px;
+  text-align: center !important;
   }
-  div#window_footer.plugbottom > div:nth-child(2) > input[type=submit] {
-  width:100% !important;
+  div#window-footer.plugbottom > div:nth-child(2) > input[type=submit] {
+  width: 100% !important;
   }
   p.gosaLoginWarning {
-  margin-top:0px;
-  margin-bottom:0px;
+  margin-top: 0;
+  margin-bottom: 0;
   }
 }
 
diff --git a/html/themes/breezy/menu.css b/html/themes/breezy/menu.css
index 7621053c697a4fe01ce19ba8adaddac82160be70..c3737231aa9db1d025b613518b7de45c081d340f 100644
--- a/html/themes/breezy/menu.css
+++ b/html/themes/breezy/menu.css
@@ -1,211 +1,194 @@
 #menucell {
-border:none;
-width:140px;
-vertical-align:top;
+border: none;
+width: 140px;
+vertical-align: top;
 }
 
 /* Side menu */
 ul.menu, ul.menu ul {
- margin:0;
- padding:0;
- list-style-type:none;
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
 }
 ul.menu li > a {
-display:block;
+display: block;
 }
 ul.menu > li {
-border:0;
-margin-bottom:5px;
-padding-bottom:3px;
-background-color:#f3f4f4;
-border:1px solid #c0c2c3;
-/*border-radius:5px;*/
-/*box-shadow:0px 0px 3px black inset;*/
+margin-bottom: 5px;
+padding-bottom: 3px;
+background-color: #f3f4f4;
+border: 1px solid #c0c2c3;
 }
 ul.menu > li > a {
-font-family:arial,helvetica,sans-serif;
-font-size:12px;
-font-weight:bold;
-color:#31363B;
-text-decoration:none;
-background-color:#eff0f1;
-text-align:center;
-vertical-align:middle;
-margin-bottom:3px;
-padding-bottom:5px;
-padding-top:5px;
-border-style:solid;
-border-color:#c0c2c3;
-border-width: 0px 0px 1px;
-/*border-radius:5px 5px 0 0;*/
+font-family: arial,helvetica,sans-serif;
+font-size: 12px;
+font-weight: bold;
+color: #31363B;
+text-decoration: none;
+background-color: #eff0f1;
+text-align: center;
+vertical-align: middle;
+margin-bottom: 3px;
+padding-bottom: 5px;
+padding-top: 5px;
+border-style: solid;
+border-color: #c0c2c3;
+border-width: 0 0 1px;
 }
 
 ul.menu ul > li > a {
-color:#31363b;
-text-decoration:none;
-font-weight:normal;
-font-size:12px;
-vertical-align:middle;
-margin:2px 0px;
-padding-top:2px;
-padding-bottom:2px;
+color: #31363b;
+text-decoration: none;
+font-weight: normal;
+font-size: 12px;
+vertical-align: middle;
+margin: 2px 0;
+padding-top: 2px;
+padding-bottom: 2px;
 }
 html.ltr ul.menu ul > li > a {
-text-align:left;
-padding-left:15px;
+text-align: left;
+padding-left: 15px;
 }
 html.rtl ul.menu ul > li > a {
-text-align:right;
-padding-right:15px;
+text-align: right;
+padding-right: 15px;
 }
 
 .menuitem.menucurrent {
-background-color:#3daee9;
-/*box-shadow:0px 0px 2px black inset;*/
+background-color: #3daee9;
 }
 .menuitem:hover {
-background-color:#d5eaf7;
-/*box-shadow:0px 0px 2px black inset;*/
+background-color: #d5eaf7;
 }
 
 .menuitem a:link, .menuitem a:visited {
-text-decoration:none;
-color:#31363b;
+text-decoration: none;
+color: #31363b;
 }
 
-.menuitem {
-/*transition:box-shadow .5s ease, background .5s ease;*/
-}
 .menuitem a:hover {
-text-decoration:none;
+text-decoration: none;
 }
 
 /* Main menu */
-.iconmenu_section
-{
-border-top:1px solid #C0C2C3;
-clear:both;
+.iconmenu-section {
+border-top: 1px solid #C0C2C3;
+clear: both;
 }
 
-.iconmenu_section + br
-{
-clear:both;
+.iconmenu-section + br {
+clear: both;
 }
 
-.iconmenu_section:first-child
-{
-border-top:none;
+.iconmenu-section:first-child {
+border-top: none;
 }
 
-.iconmenu .imgcontainer
-{
-height:48px;
-width:48px;
-display:flex;
-align-items:center;
-justify-content:center;
+.iconmenu .imgcontainer {
+height: 48px;
+width: 48px;
+display: flex;
+align-items: center;
+justify-content: center;
 }
 
-.iconmenu img
-{
-border:none;
-vertical-align:middle;
-flex:none;
-max-height:48px;
-max-width:48px;
+.iconmenu img {
+border: none;
+vertical-align: middle;
+flex: none;
+max-height: 48px;
+max-width: 48px;
 }
 
 h1.menuheader {
-margin:0;
-padding:10px;
-display:inline-block;
-border-bottom:1px solid #c0c2c3;
-background-color:#eff0f1;
+margin: 0;
+padding: 10px;
+display: inline-block;
+border-bottom: 1px solid #c0c2c3;
+background-color: #eff0f1;
 }
 html.ltr h1.menuheader {
-border-right:1px solid #c0c2c3;
-border-radius:0 0 5px 0;
-float:left;
+border-right: 1px solid #c0c2c3;
+border-radius: 0 0 5px 0;
+float: left;
 }
 html.rtl h1.menuheader {
-border-left:1px solid #c0c2c3;
-border-radius:0 0 0 5px;
-float:right;
+border-left: 1px solid #c0c2c3;
+border-radius: 0 0 0 5px;
+float: right;
 }
 
 .iconmenu {
-cursor:pointer;
-display:flex;
-align-items:center;
-width:17%;
-min-width:130px;
-margin:.5%;
-padding:.5%;
-border-radius:5px;
-border:1px solid #f3f4f4;
-/*transition:box-shadow .5s ease, background .5s ease;*/
+cursor: pointer;
+display: flex;
+align-items: center;
+width: 17%;
+min-width: 130px;
+margin: .5%;
+padding: .5%;
+border-radius: 5px;
+border: 1px solid #f3f4f4;
 }
 html.ltr .iconmenu {
-float:left;
-text-align:left;
+float: left;
+text-align: left;
 }
 html.rtl .iconmenu {
-float:right;
-text-align:right;
+float: right;
+text-align: right;
 }
 .iconmenu:hover {
-border:1px solid #c0c2c3;
-/*box-shadow:0px 0px 4px black;*/
+border: 1px solid #c0c2c3;
 }
 
-.iconmenu:nth-child(2)
-{
-clear:left;
+.iconmenu:nth-child(2) {
+clear: left;
 }
 html.rtl .iconmenu:nth-child(2) {
-clear:right;
+clear: right;
 }
 
 .iconmenu > a:link, .iconmenu > a:visited {
-text-decoration:none;
-color:#31363B;
+text-decoration: none;
+color: #31363B;
 }
 
 .iconmenu > a:hover {
-text-decoration:none;
+text-decoration: none;
 }
 
 div.iconmenu:hover {
-background-color:#fcfcfc;
+background-color: #fcfcfc;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
-  .iconmenu {
-  text-align:center;
-  margin:2px;
-  padding:2px;
-  min-width:70px;
-  min-height:80px;
-  display:inline-block;
+  html.ltr .iconmenu,
+  html.rtl .iconmenu {
+  text-align: center;
+  margin: 2px;
+  padding: 2px;
+  min-width: 70px;
+  min-height: 80px;
+  display: block;
   }
-  .iconmenu .imgcontainer
-  {
-  margin:auto;
-  display:block;
-  float:none;
+  .iconmenu .imgcontainer {
+  margin: auto;
+  display: block;
+  float: none;
   }
   h1.menuheader {
-  display:block;
-  padding:5px;
-  text-align:center;
+  display: block;
+  padding: 5px;
+  text-align: center;
   }
   html.ltr h1.menuheader {
-  border-right:none;
-  float:none;
+  border-right: none;
+  float: none;
   }
   html.rtl h1.menuheader {
-  border-left:none;
-  float:none;
+  border-left: none;
+  float: none;
   }
 }
diff --git a/html/themes/breezy/plugin.css b/html/themes/breezy/plugin.css
index fea2b8819e2901c962daa448d78855aa425b7fde..c0ab12b52ca84bcb5d18d8aacffcc11239b0daba 100644
--- a/html/themes/breezy/plugin.css
+++ b/html/themes/breezy/plugin.css
@@ -1,261 +1,257 @@
-.plugin_window
-{
-vertical-align:top;
-text-align:justify;
-background-color:#f3f4f4;
-margin-top:0px;
-margin-left:0;
-margin-right:0;
-width:auto;
-border:1px solid #c0c2c3;
-padding:0;
+.plugin-window {
+vertical-align: top;
+text-align: justify;
+background-color: #f3f4f4;
+margin-top: 0;
+margin-left: 0;
+margin-right: 0;
+width: auto;
+border: 1px solid #c0c2c3;
+padding: 0;
 }
 
 div.pluginfo {
-border-bottom:1px solid #c0c2c3;
-width:100%;
-padding-top:2px;
-padding-bottom:2px;
-margin-bottom:0;
-text-align:right;
-vertical-align:middle;
-background-color:#eff0f1;
-font-family:arial,helvetica,sans-serif;
-font-size:11px;
+border-bottom: 1px solid #c0c2c3;
+width: 100%;
+padding-top: 2px;
+padding-bottom: 2px;
+margin-bottom: 0;
+text-align: right;
+vertical-align: middle;
+background-color: #eff0f1;
+font-family: arial,helvetica,sans-serif;
+font-size: 11px;
 }
 html.rtl div.pluginfo {
-text-align:left;
+text-align: left;
 }
 
 .plugbottom {
-border-style:solid;
-border-color:#c0c2c3;
-width:100%;
-border-top-width:1px;
-border-bottom-width:0;
-border-left-width:0;
-border-right-width:0;
-padding-top:10px;
-padding-bottom:0;
-text-align:right;
-font-family:arial,helvetica,sans-serif;
-clear:both;
+border-style: solid;
+border-color: #c0c2c3;
+width: 100%;
+border-top-width: 1px;
+border-bottom-width: 0;
+border-left-width: 0;
+border-right-width: 0;
+padding-top: 10px;
+padding-bottom: 0;
+text-align: right;
+font-family: arial,helvetica,sans-serif;
+clear: both;
 }
 p.plugbottom {
-position:fixed;
-bottom:0px;
-right:10px;
-margin:0;
-/*box-shadow:0px 0px 2px black;*/
-border-radius:5px 5px 0 0;
-width:auto;
-padding-left:10px;
-padding-right:10px;
-padding-bottom:5px;
-padding-top:5px;
-background:#e5e5e7;
+position: fixed;
+bottom: 0;
+right: 10px;
+margin: 0;
+border-radius: 5px 5px 0 0;
+width: auto;
+padding-left: 10px;
+padding-right: 10px;
+padding-bottom: 5px;
+padding-top: 5px;
+background: #e5e5e7;
 }
 html.rtl .plugbottom {
-text-align:left;
+text-align: left;
 }
 
 /* Simple Plugin specific things */
 
-.plugin_sections:after {
+.plugin-sections:after {
 content: "";
 display: block;
 clear: both;
 }
 
-.plugin_section {
-display:block;
-float:left;
-clear:left;
-width:49%;
-vertical-align:top;
-border:1px solid #c0c2c3;
-padding:0;
-margin-top:0.5%;
-margin-left:0.5%;
-margin-bottom:0.5%;
-margin-right:0;
+.plugin-section {
+display: block;
+float: left;
+clear: left;
+width: 49%;
+border: 1px solid #c0c2c3;
+padding: 0;
+margin-top: 0.5%;
+margin-left: 0.5%;
+margin-bottom: 0.5%;
+margin-right: 0;
 position: relative;
 }
-html.rtl .plugin_section {
-float:right;
-clear:right;
-margin-left:0;
-margin-right:0.5%;
+html.rtl .plugin-section {
+float: right;
+clear: right;
+margin-left: 0;
+margin-right: 0.5%;
 }
 
-html.ltr .plugin_section:nth-child(even) {
-float:right;
-clear:right;
-margin-left:0;
-margin-right:0.5%;
-}
-html.rtl .plugin_section:nth-child(even) {
-float:left;
-clear:left;
-margin-left:0.5%;
-margin-right:0;
+html.ltr .plugin-section:nth-child(even) {
+float: right;
+clear: right;
+margin-left: 0;
+margin-right: 0.5%;
+}
+html.rtl .plugin-section:nth-child(even) {
+float: left;
+clear: left;
+margin-left: 0.5%;
+margin-right: 0;
 }
 
-div.plugin_section {
-padding-top:25px;
+div.plugin-section {
+padding-top: 25px;
 }
 
-.plugin_section > div {
-padding:5px;
+.plugin-section > div {
+padding: 5px;
 }
 
-fieldset.plugin_section > div {
-padding-top:30px;
+fieldset.plugin-section > div {
+padding-top: 30px;
 }
 
-fieldset.plugin_section legend {
-float:left;
-padding:0;
-margin:0;
+fieldset.plugin-section legend {
+float: left;
+padding: 0;
+margin: 0;
 }
-html.rtl fieldset.plugin_section legend {
-float:right;
+html.rtl fieldset.plugin-section legend {
+float: right;
 }
 
-fieldset.plugin_section legend span, .plugin_section > span.legend {
-font-weight:bold;
-background-color:#e5e5e7;
-border:1px solid #c0c2c3;
-width:100%;
-padding-top:5px;
-padding-bottom:5px;
-text-align:center;
-display:block;
-}
-html.ltr fieldset.plugin_section legend span, html.ltr .plugin_section > span.legend {
-margin-left:-1px;
-}
-html.rtl fieldset.plugin_section legend span, html.rtl .plugin_section > span.legend {
-margin-right:-1px;
+fieldset.plugin-section legend span, .plugin-section > span.legend {
+font-weight: bold;
+background-color: #e5e5e7;
+border: 1px solid #c0c2c3;
+width: 100%;
+padding-top: 5px;
+padding-bottom: 5px;
+text-align: center;
+display: block;
+}
+html.ltr fieldset.plugin-section legend span, html.ltr .plugin-section > span.legend {
+margin-left: -1px;
+}
+html.rtl fieldset.plugin-section legend span, html.rtl .plugin-section > span.legend {
+margin-right: -1px;
 }
 
-fieldset.plugin_section legend span {
+fieldset.plugin-section legend span {
 position: absolute;
-top:0;
-margin-top:-1px;
+top: 0;
+margin-top: -1px;
 }
-html.ltr fieldset.plugin_section legend span {
-left:0;
+html.ltr fieldset.plugin-section legend span {
+left: 0;
 }
-html.rtl fieldset.plugin_section legend span {
-right:0;
+html.rtl fieldset.plugin-section legend span {
+right: 0;
 }
 
-.plugin_section > span.legend {
-margin-top:-26px;
+.plugin-section > span.legend {
+margin-top: -26px;
 }
 
-fieldset.plugin_section legend img, .plugin_section span.legend img {
-vertical-align:middle;
+fieldset.plugin-section legend img, .plugin-section span.legend img {
+vertical-align: middle;
 }
-html.ltr fieldset.plugin_section legend img, html.ltr .plugin_section span.legend img {
-margin-right:3px;
+html.ltr fieldset.plugin-section legend img, html.ltr .plugin-section span.legend img {
+margin-right: 3px;
 }
-html.rtl fieldset.plugin_section legend img, html.rtl .plugin_section span.legend img {
-margin-left:3px;
+html.rtl fieldset.plugin-section legend img, html.rtl .plugin-section span.legend img {
+margin-left: 3px;
 }
 
 
-fieldset.plugin_section select[multiple], fieldset.plugin_section textarea {
-width:100%;
+fieldset.plugin-section select[multiple], fieldset.plugin-section textarea {
+width: 100%;
 }
 
-.plugin_section > div > table {
-min-width:80%;
+.plugin-section > div > table {
+min-width: 80%;
 }
 
-html.ltr .plugin_section.fullwidth, html.rtl .plugin_section.fullwidth {
-float:none;
-clear:both;
-width:auto;
-margin-top:0.5%;
-margin-left:0.5%;
-margin-bottom:0.5%;
-margin-right:0.5%;
+html.ltr .plugin-section.fullwidth, html.rtl .plugin-section.fullwidth {
+float: none;
+clear: both;
+width: auto;
+margin-top: 0.5%;
+margin-left: 0.5%;
+margin-bottom: 0.5%;
+margin-right: 0.5%;
 }
 
-html.ltr .plugin_section.alone, html.rtl .plugin_section.alone {
-float:none;
-clear:both;
+html.ltr .plugin-section.alone, html.rtl .plugin-section.alone {
+float: none;
+clear: both;
 }
 
-html.ltr .plugin_section.invisible, html.rtl .plugin_section.invisible {
-display:none;
+html.ltr .plugin-section.invisible, html.rtl .plugin-section.invisible {
+display: none;
 }
 
-fieldset.plugin_section.critical legend span, .plugin_section.critical > span.legend {
-font-weight:bold;
-background-color:#BCF;
+fieldset.plugin-section.critical legend span, .plugin-section.critical > span.legend {
+font-weight: bold;
+background-color: #BCF;
 }
 
-fieldset.plugin_section.critical legend span:after, .plugin_section.critical > span.legend:after {
-content:"   (editing this can break your LDAP)";
-color:#D00;
+fieldset.plugin-section.critical legend span:after, .plugin-section.critical > span.legend:after {
+content: "   (editing this can break your LDAP)";
+color: #D00;
 }
 
-.plugin_section.critical > div {
-background-color:#DFEFFF;
+.plugin-section.critical > div {
+background-color: #DFEFFF;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
-  .plugin_window {
-  margin:0;
-  border:none;
-  width:100%;
+  .plugin-window {
+  margin: 0;
+  border: none;
+  width: 100%;
   }
-  .plugin_section > div > table {
-  width:100%;
+  .plugin-section > div > table {
+  width: 100%;
   }
-  html.ltr .plugin_section, html.ltr .plugin_section:nth-child(even), html.ltr .plugin_section.fullwidth,
-  html.rtl .plugin_section, html.rtl .plugin_section:nth-child(even), html.rtl .plugin_section.fullwidth
-  {
-  display:block;
-  float:none;
-  clear:both;
-  width:100%;
+  html.ltr .plugin-section, html.ltr .plugin-section:nth-child(even), html.ltr .plugin-section.fullwidth,
+  html.rtl .plugin-section, html.rtl .plugin-section:nth-child(even), html.rtl .plugin-section.fullwidth {
+  display: block;
+  float: none;
+  clear: both;
+  width: 100%;
   border-top: none;
-  margin:0;
+  margin: 0;
   }
   .plugbottom {
-  text-align:center;
-  width:100%;
-  margin:0;
-  padding-top:5px;
-  padding-bottom:4px;
-  padding-left:1px;
-  padding-right:1px;
-  border:none;
+  text-align: center;
+  width: 100%;
+  margin: 0;
+  padding-top: 5px;
+  padding-bottom: 4px;
+  padding-left: 1px;
+  padding-right: 1px;
+  border: none;
   }
   p.plugbottom {
-  left:5px;
-  right:5px;
+  left: 5px;
+  right: 5px;
   }
   .plugbottom input[type=submit], .plugbottom input[type=button] {
-  border:1px solid #c0c2c3;
-  width:30% !important;
-  padding:10px;
-  display:inline-block;
-  font-weight:bold;
+  border: 1px solid #c0c2c3;
+  width: 30% !important;
+  padding: 10px;
+  display: inline-block;
+  font-weight: bold;
   }
   .plugbottom input[type=submit]:active, .plugbottom input[type=button]:active {
-  position:relative;
-  top:1px;
+  position: relative;
+  top: 1px;
   }
   html.ltr .plugbottom input[type=submit]:active, html.ltr .plugbottom input[type=button]:active {
-  left:1px;
+  left: 1px;
   }
   html.rtl .plugbottom input[type=submit]:active, html.rtl .plugbottom input[type=button]:active {
-  right:1px;
+  right: 1px;
   }
 }
diff --git a/html/themes/breezy/printer.css b/html/themes/breezy/printer.css
index e923099005454b44bb206b88d5a4055ae396eb71..88ed4b5b06a6b32db8b5ec3af948386062cf8c19 100644
--- a/html/themes/breezy/printer.css
+++ b/html/themes/breezy/printer.css
@@ -1,20 +1,20 @@
 /* Disable header and menu block, for printers. */
 td#menucell {
-display:none;
+display: none;
 }
 
 div.plugtop {
-display:none;
+display: none;
 }
 
 p.plugbottom {
-display:none;
+display: none;
 }
 
 .framework {
-width:100%;
+width: 100%;
 }
 
-div.setup_header {
-display:none;
+div.setup-header {
+display: none;
 }
diff --git a/html/themes/breezy/setup.css b/html/themes/breezy/setup.css
index 10014a3979b653e3a7517c2ad74cb304053b4011..435aaf72925a0a254fb069e2e10176dfce8901c8 100644
--- a/html/themes/breezy/setup.css
+++ b/html/themes/breezy/setup.css
@@ -1,174 +1,174 @@
 /*********
  * Setup
  *********/
-html.ltr body.setup div#header_left .plugtop {
-margin-left:80px;
+html.ltr body.setup div#header-left .plugtop {
+margin-left: 80px;
 }
-html.rtl body.setup div#header_left .plugtop {
-margin-right:80px;
+html.rtl body.setup div#header-left .plugtop {
+margin-right: 80px;
 }
-body.setup .plugin_window {
-border-radius:5px;
+body.setup .plugin-window {
+border-radius: 5px;
 }
 
 /* default.*/
 div.default {
-padding:2px 10px;
-vertical-align:middle;
+padding: 2px 10px;
+vertical-align: middle;
 }
 
-#menucell.setup_navigation {
-width:200px;
+#menucell.setup-navigation {
+width: 200px;
 }
 
 /* The box used for each setup step */
-#menucell.setup_navigation li.menuitem {
-text-decoration:none;
-padding-top:8px;
-padding-bottom:8px;
-margin-top:5px;
-margin-bottom:5px;
+#menucell.setup-navigation li.menuitem {
+text-decoration: none;
+padding-top: 8px;
+padding-bottom: 8px;
+margin-top: 5px;
+margin-bottom: 5px;
 }
-#menucell.setup_navigation li.menuitem > a {
-margin:0;
+#menucell.setup-navigation li.menuitem > a {
+margin: 0;
 }
 
 /* An enabled setup step will use this style in navigation*/
-#menucell.setup_navigation li.menuitem.menucurrent a.navigation_title {
-cursor:default;
+#menucell.setup-navigation li.menuitem.menucurrent a.navigation-title {
+cursor: default;
 }
 
 /* Disabled setup steps */
-#menucell.setup_navigation li.menuitem.disabled a.navigation_title {
-cursor:default;
-color:#C0C2C3;
+#menucell.setup-navigation li.menuitem.disabled a.navigation-title {
+cursor: default;
+color: #C0C2C3;
 }
 
 /* Disabled setup steps */
-#menucell.setup_navigation li.menuitem a.navigation_title {
-font-size:1.2em;
-font-weight:bold;
-text-decoration:none;
-cursor:pointer;
-padding-top:3px;
-padding-bottom:3px;
+#menucell.setup-navigation li.menuitem a.navigation-title {
+font-size: 1.2em;
+font-weight: bold;
+text-decoration: none;
+cursor: pointer;
+padding-top: 3px;
+padding-bottom: 3px;
 }
 
 /* The style for the info of an active setup */
-#menucell.setup_navigation li.menuitem a.navigation_info {
-font-size:1em;
-color:#31363b;
-margin:0;
-cursor:default;
+#menucell.setup-navigation li.menuitem a.navigation-info {
+font-size: 1em;
+color: #31363b;
+margin: 0;
+cursor: default;
 }
-html.ltr #menucell.setup_navigation li.menuitem a.navigation_info {
-padding:4px 4px 3px 15px;
+html.ltr #menucell.setup-navigation li.menuitem a.navigation-info {
+padding: 4px 4px 3px 15px;
 }
-html.rtl #menucell.setup_navigation li.menuitem a.navigation_info {
-padding:4px 15px 3px 4px;
+html.rtl #menucell.setup-navigation li.menuitem a.navigation-info {
+padding: 4px 15px 3px 4px;
 }
 
-.setup_language select#lang_selected {
-width:100%;
+.setup-language select#lang_selected {
+width: 100%;
 }
 
 /*
   Setup step 2 styles
 */
 /* used to hide display info div */
-div.solution_visible {
-display:block;
-width:100%;
-text-align:left;
+div.solution-visible {
+display: block;
+width: 100%;
+text-align: left;
 }
-html.rtl div.solution_visible {
-text-align:right;
+html.rtl div.solution-visible {
+text-align: right;
 }
 
 /* Container for name and status */
-div.step2_entry_container {
-padding:3px;
-width:99%;
-cursor:default;
+div.step2-entry-container {
+padding: 3px;
+width: 99%;
+cursor: default;
 }
 
 /* Container for name and status, when status is failed */
-div.step2_entry_container_info {
-padding:3px;
-border:1px solid #C0C2C3;
-width:99%;
-cursor:default;
+div.step2-entry-container-info {
+padding: 3px;
+border: 1px solid #C0C2C3;
+width: 99%;
+cursor: default;
 }
 
 /* Text shown for each entry */
-div.step2_entry_name {
-float:left;
-padding-bottom:4px;
-vertical-align:middle;
+div.step2-entry-name {
+float: left;
+padding-bottom: 4px;
+vertical-align: middle;
 }
-html.rtl div.step2_entry_name {
-float:right;
+html.rtl div.step2-entry-name {
+float: right;
 }
 
 /* Status container */
-div.step2_entry_status {
-float:none;
-text-align:right;
-padding-bottom:4px;
-vertical-align:middle;
+div.step2-entry-status {
+float: none;
+text-align: right;
+padding-bottom: 4px;
+vertical-align: middle;
 }
-html.rtl div.step2_entry_status {
-text-align:left;
+html.rtl div.step2-entry-status {
+text-align: left;
 }
 
 /* Status failed */
-div.step2_failed {
-color:red;
-padding-bottom:4px;
+div.step2-failed {
+color: red;
+padding-bottom: 4px;
 }
 
 /* Status failed but not necessary for setup */
-div.step2_warning {
-color:orange;
-padding-bottom:4px;
+div.step2-warning {
+color: orange;
+padding-bottom: 4px;
 }
 
 /* Status successful */
-div.step2_successful {
-color:green;
+div.step2-successful {
+color: green;
 }
 
 /* Text used in info div. */
-div.step2_failed_text {
-background-repeat:no-repeat;
+div.step2-failed-text {
+background-repeat: no-repeat;
 }
-html.ltr div.step2_failed_text {
-padding-left:25px;
+html.ltr div.step2-failed-text {
+padding-left: 25px;
 }
-html.rtl div.step2_failed_text {
-padding-right:25px;
+html.rtl div.step2-failed-text {
+padding-right: 25px;
 }
 
 /* Text used in info div. On warnings */
-div.step2_warning_text {
-background-repeat:no-repeat;
+div.step2-warning-text {
+background-repeat: no-repeat;
 }
-html.ltr div.step2_warning_text {
-padding-left:25px;
+html.ltr div.step2-warning-text {
+padding-left: 25px;
 }
-html.rtl div.step2_warning_text {
-padding-right:25px;
+html.rtl div.step2-warning-text {
+padding-right: 25px;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
   body.setup a.plugtop img {
-  height:32px;
+  height: 32px;
   }
-  html.ltr body.setup div#header_left .plugtop {
-  margin-left:0px;
+  html.ltr body.setup div#header-left .plugtop {
+  margin-left: 0;
   }
-  html.rtl body.setup div#header_left .plugtop {
-  margin-right:0px;
+  html.rtl body.setup div#header-left .plugtop {
+  margin-right: 0;
   }
 }
diff --git a/html/themes/breezy/sieve.css b/html/themes/breezy/sieve.css
deleted file mode 100644
index 958f589c70bfea6d08e60cbb6d7618e434bbd802..0000000000000000000000000000000000000000
--- a/html/themes/breezy/sieve.css
+++ /dev/null
@@ -1,374 +0,0 @@
-/************************
- * Sieve
- *  The following styles are
- *  used to display the sieve
- *  management user interface
- ************************/
-/* Editing dialog styles
- */
-table.sieve_default_table {
-width:100%;
-margin:0;
-border-spacing:0;
-padding:0;
-}
-
-/* Editing surface */
-table.editing_surface {
-width:100%;
-margin:0;
-padding:0;
-}
-
-/* Editing surface menu */
-td.editing_surface_menu {
-background-color:#EEE;
-border:1px solid #BBB;
-padding:5px;
-}
-
-/* Editing surface content */
-td.editing_surface_content {
-background-color:#fcfcfc;
-margin:0;
-padding:0;
-}
-
-/* Error message will be displayed as follows */
-div.sieve_error_msgs {
-background-color:#ff8d00;
-color:#31363b;
-padding:5px;
-background-image:url(../../geticon.php?context=status&icon=dialog-warning&size=16);
-background-repeat:no-repeat;
-font-weight:bold;
-}
-
-/* Source editing area */
-textarea.editing_source {
-width:100%;
-height:330px;
-}
-
-/*************
- * Object container
- *************/
-/* The container itself */
-table.object_container_container {
-width:100%;
-border-spacing:0;
-background-color:#F8F8F8;
-border:solid 1px #C0C2C3;
-}
-
-/* Container cell top left */
-td.object_container_cell_top_left {
-background-color:#EEE;
-text-align:center;
-}
-
-/* Container cell top right */
-td.object_container_cell_top_right {
-background-color:#EEE;
-text-align:left;
-padding:2px;
-border-bottom:solid 1px #C0C2C3;
-}
-html.rtl td.object_container_cell_top_right {
-text-align:right;
-}
-
-/* Container cell bottom left */
-td.object_container_cell_bottom_left {
-width:5px;
-background-color:#EEE;
-text-align:center;
-}
-html.ltr td.object_container_cell_bottom_left {
-border-right:solid 1px #C0C2C3;
-}
-html.rtl td.object_container_cell_bottom_left {
-border-left:solid 1px #C0C2C3;
-}
-
-/*************
- * Sieve comment
- *************/
-/* Container */
-table.sieve_comment_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-textarea.sieve_comment_area {
-width:100%;
-height:80px;
-}
-
-/*************
- * Sieve require
- *************/
-/* Container */
-table.sieve_require_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-input.sieve_require_input {
-width:100%;
-border-spacing:0;
-}
-
-/*************
- * Sieve fileinto
- *************/
-/* Container */
-table.sieve_fileinto_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-input.sieve_fileinto_input {
-width:300px;
-}
-
-select.sieve_fileinto_input {
-width:300px;
-}
-
-/*************
- * Sieve keep
- *************/
-/* Container */
-table.sieve_keep_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_keep_input {
-padding-left:20px;
-}
-html.rtl td.sieve_keep_input {
-padding-right:20px;
-}
-
-/*************
- * Sieve discard
- *************/
-/* Container */
-table.sieve_discard_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_discard_input {
-padding-left:20px;
-}
-html.rtl td.sieve_discard_input {
-padding-right:20px;
-}
-
-/*************
- * Sieve redirect
- *************/
-/* Container */
-table.sieve_redirect_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_redirect_input {
-padding-left:20px;
-}
-html.rtl td.sieve_redirect_input {
-padding-right:20px;
-}
-
-textarea.sieve_redirect_input {
-width:100%;
-height:30px;
-}
-
-/*************
- * Sieve reject
- *************/
-/* Container */
-table.sieve_reject_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_reject_input {
-padding-left:20px;
-}
-html.rtl td.sieve_reject_input {
-padding-right:20px;
-}
-
-textarea.sieve_reject_input {
-width:100%;
-height:55px;
-}
-
-/*************
- * Sieve end
- *************/
-/* Container */
-table.sieve_stop_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_stop_input {
-padding-left:20px;
-}
-html.rtl td.sieve_stop_input {
-padding-right:20px;
-}
-
-/*************
- * Sieve vacation
- *************/
-/* Container */
-table.sieve_vacation_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_vacation_input {
-padding-left:20px;
-}
-html.rtl td.sieve_vacation_input {
-padding-right:20px;
-}
-
-/* Editing area */
-textarea.sieve_vacation_input {
-width:100%;
-height:55px;
-}
-
-/*************
- * Sieve allof
- *************/
-table.sieve_allof_container {
-width:100%;
-border-spacing:0;
-margin:0;
-padding:0;
-border:solid 1px #999;
-}
-
-/* Container */
-td.sieve_allof_left {
-text-align:center;
-vertical-align:middle;
-width:35px;
-background-color:#CCC;
-border:solid 0 #EEE;
-}
-
-/* Container */
-td.sieve_allof_right {
-background-color:#BDBDBD;
-}
-
-/*************
- * Sieve anyof
- *************/
-table.sieve_anyof_container {
-width:100%;
-margin:0;
-border-spacing:0;
-padding:0;
-border:solid 2px #CCC;
-}
-
-/* Container */
-td.sieve_anyof_left {
-text-align:center;
-vertical-align:middle;
-width:35px;
-background-color:#CCC;
-border:solid 0 #EEE;
-}
-
-/* Container */
-td.sieve_anyof_right {
-background-color:#BDBDBD;
-border:solid 1px #C0C2C3;
-}
-
-/*************
- * Sieve Test Cases
- *************/
-table.sieve_test_container {
-width:100%;
-background-color:#F8F8F8;
-margin:0;
-border-spacing:0;
-padding:0;
-border:solid 1px #C0C2C3;
-}
-
-table.sieve_test_case {
-width:100%;
-margin:0;
-border-spacing:0;
-padding:0;
-}
-
-html.ltr td.container_, html.ltr div.container_ {
-padding-left:2px;
-border-left:solid 2px #F8F8F8;
-}
-html.rtl td.container_, html.rtl div.container_ {
-padding-right:2px;
-border-right:solid 2px #F8F8F8;
-}
-
-td.container_:hover,div.container_:hover {
-display:block;
-}
-html.ltr td.container_:hover, html.ltr div.container_:hover {
-border-left:solid 2px #31363b;
-}
-html.rtl td.container_:hover, html.rtl div.container_:hover {
-border-right:solid 2px #31363b;
-}
diff --git a/html/themes/breezy/style.css b/html/themes/breezy/style.css
index d9b0d677c562e993d0676c66d397312804c910d1..a16a809885861b5128af341fa0abb814f83c2f01 100644
--- a/html/themes/breezy/style.css
+++ b/html/themes/breezy/style.css
@@ -1,780 +1,772 @@
 body {
-margin:0;
-background-color:#eff0f1;
-color:#31363b;
-font-family:arial,helvetica,sans-serif;
-font-size:12px;
+margin: 0;
+background-color: #eff0f1;
+color: #31363b;
+font-family: arial,helvetica,sans-serif;
+font-size: 12px;
 }
 
 h1 {
-font-size:14px;
-color:#31363b;
+font-size: 14px;
+color: #31363b;
 }
 
 h2,h3,h4,h5,h6 {
-font-size:13px;
-color:#31363b;
+font-size: 13px;
+color: #31363b;
 }
 
 td,p,b,th {
-font-size:12px;
+font-size: 12px;
 }
 
 img {
-border:none;
+border: none;
 }
 
 a:link {
-text-decoration:none;
-color:#31363B;
+text-decoration: none;
+color: #31363B;
 }
 
 a:visited {
-text-decoration:none;
-color:#31363B;
+text-decoration: none;
+color: #31363B;
 }
 
 td.listfooter {
-background:#E5E5E5;
-border-top:1px solid #c0c2c3;
-padding:3px;
-height:16px;
+background: #E5E5E5;
+border-top: 1px solid #c0c2c3;
+padding: 3px;
+height: 16px;
 }
 
 td.scrollhead {
-vertical-align:top;
-padding:0;
+vertical-align: top;
+padding: 0;
 }
 
 td.scrollbody {
-vertical-align:top;
-padding:0;
+vertical-align: top;
+padding: 0;
 }
 
 div.scrollbody {
-background-color:#fcfcfc;
-overflow:auto;
-text-align:left;
+background-color: #fcfcfc;
+overflow: auto;
+text-align: left;
 }
 html.rtl div.scrollbody {
-text-align:right;
+text-align: right;
 }
 
 /* -------------- DEPRECATED ----------------- */
 td.list1 {
-background:transparent;
-border-right:1px solid silver;
-padding:3px;
-height:22px;
+background: transparent;
+border-right: 1px solid silver;
+padding: 3px;
+height: 22px;
 }
 
 td.list1nohighlight {
-background:#fcfcfc;
-border-right:1px solid silver;
-padding:3px;
-height:22px;
+background: #fcfcfc;
+border-right: 1px solid silver;
+padding: 3px;
+height: 22px;
 }
 
 td.list1nohighlightdisabled {
-background-color:#DFDBD7;
-border-right:1px solid silver;
-padding:3px;
-height:22px;
+background-color: #DFDBD7;
+border-right: 1px solid silver;
+padding: 3px;
+height: 2px;
 }
 
 td.list1#fill {
-height:100%;
+height: 100%;
 }
 
 td.list1#icon {
-width:0;
-text-align:center;
+width: 0;
+text-align: center;
 }
 
 td.list1#entry {
 }
 
 td.list1#info {
-width:200px;
+width: 200px;
 }
 
 td.list1#property {
-width:50px;
+width: 50px;
 }
 
 td.list1#properties7 {
-width:136px;
+width: 136px;
 }
 
 td.list1#properties8 {
-width:152px;
+width: 152px;
 }
 
 td.list1#properties9 {
-width:168px;
+width: 168px;
 }
 
 td.list1#properties10 {
-width:186px;
+width: 186px;
 }
 
 td.list1#actions {
-width:52px;
-border-right:0;
-text-align:right;
+width: 52px;
+border-right: 0;
+text-align: right;
 }
 /* -------------------------------------------- */
 
 /* Title bar */
 a.maintitlebar,div.maintitlebar {
-font-family:arial,helvetica,sans-serif;
-text-decoration:none;
+font-family: arial,helvetica,sans-serif;
+text-decoration: none;
 /*color:#FFFFFF;*/
-font-size:12px;
-text-align:center;
-vertical-align:middle;
-cursor:pointer;
-display:inline-block;
-padding:2px;
-border:1px solid #eff0f1;
-border-radius:8px;
-/*transition:box-shadow .5s ease, background .5s ease;*/
+font-size: 12px;
+text-align: center;
+vertical-align: middle;
+cursor: pointer;
+display: inline-block;
+padding: 2px;
+border: 1px solid #eff0f1;
+border-radius: 8px;
 }
 
 a.maintitlebar:link,div.maintitlebar:link {
-text-decoration:none;
-color:#2980b9;
+text-decoration: none;
+color: #2980b9;
 }
 
 a.maintitlebar:visited,div.maintitlebar:visited {
-text-decoration:none;
-color:#2980b9;
+text-decoration: none;
+color: #2980b9;
 }
 
 
 html.ltr a.maintitlebar,html.ltr div.maintitlebar {
-padding-right:5px;
+padding-right: 5px;
 }
 html.rtl a.maintitlebar,html.rtl div.maintitlebar {
-padding-left:5px;
+padding-left: 5px;
 }
 
 a.maintitlebar:hover {
-text-decoration:none;
-background-color:#f3f4f4;
-cursor:pointer;
-border:1px solid #c0c2c3;
-/*box-shadow:0px 0px 2px black;*/
+text-decoration: none;
+background-color: #f3f4f4;
+cursor: pointer;
+border: 1px solid #c0c2c3;
 }
 
 td.phonelist:hover {
-background-color:#d2d2d2;
+background-color: #d2d2d2;
 }
 
 td.phonelist {
-border-right:1px solid #c0c2c3;
+border-right: 1px solid #c0c2c3;
 }
 
 div.copynotice {
-border-style:solid;
-border-color:#c0c2c3;
-width:100%;
-border-top-width:1px;
-border-bottom-width:0;
-border-left-width:0;
-border-right-width:0;
-padding-top:3px;
-padding-bottom:0;
-text-align:right;
-font-family:arial,helvetica,sans-serif;
-font-size:10px;
+border-style: solid;
+border-color: #c0c2c3;
+width: 100%;
+border-top-width: 1px;
+border-bottom-width: 0;
+border-left-width: 0;
+border-right-width: 0;
+padding-top: 3px;
+padding-bottom: 0;
+text-align: right;
+font-family: arial,helvetica,sans-serif;
+font-size: 10px;
 }
 html.rtl div.copynotice {
-text-align:left;
+text-align: left;
 }
 
 hr {
-width:100%;
-border:none;
-background-color:#C0C2C3;
-height:1px;
+width: 100%;
+border: none;
+background-color: #C0C2C3;
+height: 1px;
 }
 
 .must {
-color:red;
-font-family:arial,helvetica,sans-serif;
+color: red;
+font-family: arial,helvetica,sans-serif;
 }
 
 img.center {
-text-align:center;
-vertical-align:middle;
+text-align: center;
+vertical-align: middle;
 }
 
 input.center {
-text-align:left;
-vertical-align:middle;
+text-align: left;
+vertical-align: middle;
 }
 html.rtl input.center {
-text-align:right;
+text-align: right;
 }
 
 select.center {
-text-align:left;
-vertical-align:middle;
+text-align: left;
+vertical-align: middle;
 }
 html.rtl select.center {
-text-align:right;
+text-align: right;
 }
 
 a.center {
-text-align:left;
-vertical-align:middle;
+text-align: left;
+vertical-align: middle;
 }
 html.rtl a.center {
-text-align:right;
+text-align: right;
 }
 
 /********************** Template migration *********************/
 
 form#mainform {
-margin:0;
+margin: 0;
 }
 
 table.framework {
-height:auto;
-width:100%;
-border:0;
-border-spacing:5px;
-padding:0;
-margin-top:0;
-vertical-align:top;
-/*box-shadow:0px 0px 2px black;*/
+height: auto;
+width: 100%;
+border: 0;
+border-spacing: 5px;
+padding: 0;
+margin-top: 0;
+vertical-align: top;
 }
 html.ltr table.framework {
-margin-left:0;
+margin-left: 0;
 }
 html.rtl table.framework {
-margin-right:0;
+margin-right: 0;
 }
 
 table.framework td#maincell {
-background-color:#eff0f1;
-width:auto;
-vertical-align:top;
-padding-bottom:35px;
+background-color: #eff0f1;
+width: auto;
+vertical-align: top;
+padding-bottom: 35px;
 }
 
 /* cellpadding="0" */
 table.framework > tbody > tr > td {
-padding:0;
+padding: 0;
 }
 
 table.maintab {
-width:100%;
-height:100%;
-border:0;
-border-spacing:0;
-padding:0;
-margin:0;
-background-color:#507AAA;
-vertical-align:top;
+width: 100%;
+height: 100%;
+border: 0;
+border-spacing: 0;
+padding: 0;
+margin: 0;
+background-color: #507AAA;
+vertical-align: top;
 }
 
 div.contentboxh {
-background-color:#F0F0F0;
-border:1px solid #c0c2c3;
-border-bottom:none;
-height:26px;
-vertical-align:middle;
-width:auto;
+background-color: #F0F0F0;
+border: 1px solid #c0c2c3;
+border-bottom: none;
+height: 26px;
+vertical-align: middle;
+width: auto;
 }
 
 div.contentboxh > p {
-margin:2px;
-font-family:arial,helvetica,sans-serif;
-font-size:16px;
-font-weight:bold;
-vertical-align:middle;
+margin: 2px;
+font-family: arial,helvetica,sans-serif;
+font-size: 16px;
+font-weight: bold;
+vertical-align: middle;
 }
 
 div.contentboxb {
-border:1px solid #c0c2c3;
-border-top-width:0;
-vertical-align:middle;
-width:auto;
-background:#fcfcfc;
-padding:5px;
+border: 1px solid #c0c2c3;
+border-top-width: 0;
+vertical-align: middle;
+width: auto;
+background: #fcfcfc;
+padding: 5px;
 }
 .filter div.contentboxb {
-padding:0;
+padding: 0;
 }
 div.contentboxb > div {
-display:inline-block;
-margin:1px;
+display: inline-block;
+margin: 1px;
 }
 .filter div.contentboxb > div {
-width:100%;
-background:#EEEEEE;
-border-top:1px solid #c0c2c3;
-text-align:right;
-margin:0;
-padding:3px;
-box-sizing:border-box;
+width: 100%;
+background: #EEEEEE;
+border-top: 1px solid #c0c2c3;
+text-align: right;
+margin: 0;
+padding: 3px;
+box-sizing: border-box;
 }
 .filter div.contentboxb > label img {
-vertical-align:middle;
-padding:3px;
+vertical-align: middle;
+padding: 3px;
 }
 .filter div.contentboxb > hr {
-margin-bottom:3px;
+margin-bottom: 3px;
 }
 div.contentboxb > img, div.contentboxb > input {
-display:inline-block;
-margin:3px;
+display: inline-block;
+margin: 3px;
 }
 
 p.contentboxb {
-padding-bottom:0;
-margin:0;
-border:4px solid #f8f8f8;
-vertical-align:middle;
+padding-bottom: 0;
+margin: 0;
+border: 4px solid #f8f8f8;
+vertical-align: middle;
 }
 
 a.alphaselect:hover {
-text-decoration:none;
-background-color:#a0a0a0;
-color:#fcfcfc;
+text-decoration: none;
+background-color: #a0a0a0;
+color: #fcfcfc;
 }
 
 table.check {
-background-color:#e1e1f1;
-color:#31363b;
-border:1px solid #c0c2c3;
-width:95%;
+background-color: #e1e1f1;
+color: #31363b;
+border: 1px solid #c0c2c3;
+width: 95%;
 }
 html.ltr table.check {
-margin-left:20px;
+margin-left: 20px;
 }
 html.rtl table.check {
-margin-right:20px;
+margin-right: 20px;
 }
 
 html.ltr td.check {
-border-right:1px solid #c0c2c3;
+border-right: 1px solid #c0c2c3;
 }
 html.rtl td.check {
-border-left:1px solid #c0c2c3;
+border-left: 1px solid #c0c2c3;
 }
 
 option.select {
-background-repeat:no-repeat;
-background-position:0 top;
-border:0;
-padding-bottom:1px;
-height:18px;
+background-repeat: no-repeat;
+background-position: 0 top;
+border: 0;
+padding-bottom: 1px;
+height: 18px;
 }
 html.ltr option.select {
-padding-left:20px;
+padding-left: 20px;
 }
 html.rtl option.select {
-padding-right:20px;
+padding-right: 20px;
 }
 
 
 td.tbhead {
-border-bottom:1px solid #c0c2c3;
+border-bottom: 1px solid #c0c2c3;
 }
 html.ltr td.tbhead {
-border-right:1px solid #c0c2c3;
+border-right: 1px solid #c0c2c3;
 }
 html.rtl td.tbhead {
-border-left:1px solid #c0c2c3;
+border-left: 1px solid #c0c2c3;
 }
 
 td.tbrhead {
-border-bottom:1px solid #c0c2c3;
+border-bottom: 1px solid #c0c2c3;
 }
 
 .item {
-text-align:left;
-white-space:nowrap;
-font-family:"bitstream vera sans", "luxi sans", verdana, geneva, arial, helvetica, sans-serif;
-font-size:12px;
-padding-top:2px;
+text-align: left;
+white-space: nowrap;
+font-family: "bitstream vera sans", "luxi sans", verdana, geneva, arial, helvetica, sans-serif;
+font-size: 12px;
+padding-top: 2px;
 }
 html.rtl .item {
-text-align:right;
+text-align: right;
 }
 
 .item div {
-position:relative;
-display:block;
-text-decoration:none;
+position: relative;
+display: block;
+text-decoration: none;
 }
 
 .item :hover {
-color:#fcfcfc;
-background-color:#4b6983;
-text-decoration:none;
+color: #fcfcfc;
+background-color: #4b6983;
+text-decoration: none;
 }
 
 .separator {
-background-color:red;
-border-top:1px solid #c6c6bf;
-border-bottom:1px solid #fcfcfc;
-margin:2px 5px;
+background-color: red;
+border-top: 1px solid #c6c6bf;
+border-bottom: 1px solid #fcfcfc;
+margin: 2px 5px;
 /* top right bottom left */
-height:0;
-font-size:1px;
-line-height:0;
+height: 0;
+font-size: 1px;
+line-height: 0;
 }
 
 div.autocomplete {
-position:absolute;
-background-color:#fcfcfc;
-border:1px solid #c0c2c3;
-margin:0;
-padding:0;
-z-index:600;
-overflow:hidden;
-word-wrap:break-word;
+position: absolute;
+background-color: #fcfcfc;
+border: 1px solid #c0c2c3;
+margin: 0;
+padding: 0;
+z-index: 600;
+overflow: hidden;
+word-wrap: break-word;
 }
 
 div.autocomplete ul {
-list-style-type:none;
-margin:0;
-padding:0;
+list-style-type: none;
+margin: 0;
+padding: 0;
 }
 
 div.autocomplete ul li {
-list-style-type:none;
-display:block;
-margin:0;
-padding:2px;
-cursor:pointer;
+list-style-type: none;
+display: block;
+margin: 0;
+padding: 2px;
+cursor: pointer;
 }
 html.ltr div.autocomplete ul li {
-padding-left:4px;
+padding-left: 4px;
 }
 html.rtl div.autocomplete ul li {
-padding-right:4px;
+padding-right: 4px;
 }
 
 
 div.autocomplete li:hover {
-background-color:#F0F0F0;
+background-color: #F0F0F0;
 }
 
 div.autocomplete ul li.selected {
-background-color:#F0F0F0;
+background-color: #F0F0F0;
 }
 
 #pulldown {
-background:#fcfcfc;
-height:23px;
-border-top:1px #c0c2c3 solid;
-border-bottom:1px #c0c2c3 solid;
+background: #fcfcfc;
+height: 23px;
+border-top: 1px #c0c2c3 solid;
+border-bottom: 1px #c0c2c3 solid;
 }
 html.ltr #pulldown {
-border-left:1px #c0c2c3 solid;
-border-right:1px #c0c2c3 solid;
+border-left: 1px #c0c2c3 solid;
+border-right: 1px #c0c2c3 solid;
 }
 html.rtl #pulldown {
-border-right:1px #c0c2c3 solid;
-border-left:1px #c0c2c3 solid;
+border-right: 1px #c0c2c3 solid;
+border-left: 1px #c0c2c3 solid;
 }
 
 #pulldown ul {
-display:block;
-margin:0;
-padding:0;
-line-height:1em;
-list-style:none;
-z-index:90;
+display: block;
+margin: 0;
+padding: 0;
+line-height: 1em;
+list-style: none;
+z-index: 90;
 }
 
 #pulldown ul li {
-margin:0 3px 0 0;
-padding:0;
-font-size:12px;
-line-height:1em;
-list-style-type:none;
+margin: 0 3px 0 0;
+padding: 0;
+font-size: 12px;
+line-height: 1em;
+list-style-type: none;
 }
 html.rtl #pulldown ul li {
-margin:0 0 0 3px;
+margin: 0 0 0 3px;
 }
 
 #pulldown ul li a {
-float:left;
-display:block;
-width:auto;
-font-weight:normal;
-background:transparent;
-text-decoration:none;
-margin:0;
-padding:5px;
+float: left;
+display: block;
+width: auto;
+font-weight: normal;
+background: transparent;
+text-decoration: none;
+margin: 0;
+padding: 5px;
 }
 html.rtl #pulldown ul li a {
-float:right;
+float: right;
 }
 
 #pulldown ul li a:hover {
-text-decoration:none;
+text-decoration: none;
 }
 
 #pulldown ul li.sep {
-color:#C0C2C3;
-padding:.8em 0 .5em;
+color: #C0C2C3;
+padding: .8em 0 .5em;
 }
 
 /* Commented Backslash Hack hides rule from IE5-Mac \*/
 #pulldown ul li a {
-float:none;
+float: none;
 }
 
 /* End IE5-Mac hack */
 #pulldown ul ul {
-position:absolute;
-top:0;
-left:0;
-visibility:hidden;
-border-top:1px #c0c2c3 solid;
-border-left:1px #c0c2c3 solid;
-border-bottom:1px #c0c2c3 solid;
-border-right:1px #c0c2c3 solid;
-background:#fcfcfc;
+position: absolute;
+top: 0;
+left: 0;
+visibility: hidden;
+border-top: 1px #c0c2c3 solid;
+border-left: 1px #c0c2c3 solid;
+border-bottom: 1px #c0c2c3 solid;
+border-right: 1px #c0c2c3 solid;
+background: #fcfcfc;
 }
 
 #pulldown ul ul li {
-border-bottom:1px solid #fcfcfc;
-float:none;
-margin:0;
-padding:0;
-width:200px;
+border-bottom: 1px solid #fcfcfc;
+float: none;
+margin: 0;
+padding: 0;
+width: 200px;
 }
 
 #pulldown ul ul li a {
-padding:5px 9px 5px 5px;
+padding: 5px 9px 5px 5px;
 }
 
 #pulldown ul ul li a:hover {
-font-weight:normal;
-background-color:#D5EAF7;
-background-image:none;
+font-weight: normal;
+background-color: #D5EAF7;
+background-image: none;
 }
 
 span.informal {
-color:#444;
-font-style:italic;
+color: #444;
+font-style: italic;
 }
 
 span.mark {
-color:#B22;
+color: #B22;
 }
 
-#debug_handling {
-border-color:#ddd;
+#debug-handling {
+border-color: #ddd;
 }
 .error, .notice, .success, .info {
-border:2px solid #c0c2c3;
-margin:.2em;
-padding:.3em;
+border: 2px solid #c0c2c3;
+margin: .2em;
+padding: .3em;
 }
 .error {
-background:#fbe3e4;
-color:#8a1f11;
-border-color:#fbc2c4;
+background: #fbe3e4;
+color: #8a1f11;
+border-color: #fbc2c4;
 }
 .error h1,.error h2,.error h3,.error h4,.error h5,.error h6 {
-color:#8a3700;
+color: #8a3700;
 }
 .notice {
-background:#fff6bf;
-color:#514721;
-border-color:#ffd324;
+background: #fff6bf;
+color: #514721;
+border-color: #ffd324;
 }
 .notice h1,.notice h2,.notice h3,.notice h4,.notice h5,.notice h6 {
-color:#412701;
+color: #412701;
 }
 .success {
-background:##f3f4f4;
-color:#264409;
-border-color:#f3f4f4;
+background: ##f3f4f4;
+color: #264409;
+border-color: #f3f4f4;
 }
 .success h1,.success h2,.success h3,.success h4,.success h5,.success h6 {
-color:#378a00;
+color: #378a00;
 }
 .info {
-background:#d5edf8;
-color:#205791;
-border-color:#92cae4;
+background: #d5edf8;
+color: #205791;
+border-color: #92cae4;
 }
 .info h1,.info h2,.info h3,.info h4,.info h5,.info h6 {
-color:#31363b;
+color: #31363b;
 }
 
 /* Header */
 
-html.ltr div#header_left {
-float:left;
+html.ltr div#header-left {
+float: left;
 }
-html.rtl div#header_left {
-float:right;
+html.rtl div#header-left {
+float: right;
 }
 
 
 .plugtop {
-color:#31363b;
-border:1px solid #c0c2c3;
-/*border-radius:10px;*/
-/*box-shadow:0px 0px 4px black inset;*/
-padding:10px;
-margin:0;
-text-align:center;
-vertical-align:middle;
-background-color:#f3f4f4;
-font-family:arial,helvetica,sans-serif;
-font-size:18px;
+color: #31363b;
+border: 1px solid #c0c2c3;
+padding: 10px;
+margin: 0;
+text-align: center;
+vertical-align: middle;
+background-color: #f3f4f4;
+font-family: arial,helvetica,sans-serif;
+font-size: 18px;
 }
 .plugtop img {
-height:32px;
+height: 32px;
 }
 html.ltr .plugtop img {
-margin-right:4px;
+margin-right: 4px;
 }
 html.rtl .plugtop img {
-margin-left:4px;
+margin-left: 4px;
 }
-html.ltr div#header_left .plugtop {
-margin-left:35px;
+html.ltr div#header-left .plugtop {
+margin-left: 35px;
 }
-html.rtl div#header_left .plugtop {
-margin-right:35px;
+html.rtl div#header-left .plugtop {
+margin-right: 35px;
 }
 
-div#header_left img {
-vertical-align:middle;
+div#header-left img {
+vertical-align: middle;
 }
 
-html.ltr div#header_left img#fd_logo {
-padding-left:2px;
-padding-right:25px;
+html.ltr div#header-left img#fd-logo {
+padding-left: 2px;
+padding-right: 25px;
 }
-html.rtl div#header_left img#fd_logo {
-padding-left:25px;
-padding-right:2px;
+html.rtl div#header-left img#fd-logo {
+padding-left: 25px;
+padding-right: 2px;
 }
 
-html.ltr div#header_left .logout {
-margin-left:35px;
+html.ltr div#header-left .logout {
+margin-left: 35px;
 }
-html.rtl div#header_left .logout {
-margin-right:35px;
+html.rtl div#header-left .logout {
+margin-right: 35px;
 }
 
-div#header_right {
-padding-top:8px;
-height:38px;
-color:#31363b;
+div#header-right {
+padding-top: 8px;
+height: 38px;
+color: #31363b;
 }
-html.ltr div#header_right {
-text-align:right;
+html.ltr div#header-right {
+text-align: right;
 }
-html.rtl div#header_right {
-text-align:left;
+html.rtl div#header-right {
+text-align: left;
 }
-div#header_right div.version {
-font-size:20px;
+div#header-right div.version {
+font-size: 20px;
 }
 
 /* Header col */
-div.setup_header {
-background-color:#eff0f1;
-padding:4px 5px 4px;
-color:#31363b;
+div.setup-header {
+background-color: #eff0f1;
+padding: 4px 5px 4px;
+color: #31363b;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
-  div.setup_header {
-  padding:2px;
-  height:36px;
+  div.setup-header {
+  padding: 2px;
+  height: 36px;
   }
   a.maintitlebar {
-  width:36px;
-  height:36px;
-  overflow:hidden;
-  display:inline-block;
+  width: 36px;
+  height: 36px;
+  overflow: hidden;
+  display: block;
   }
   html.ltr a.maintitlebar {
-  float:left;
-  margin:0;
-  padding:0;
+  float: left;
+  margin: 0;
+  padding: 0;
   }
   html.rtl a.maintitlebar {
-  float:right;
-  margin:0;
+  float: right;
+  margin: 0;
   }
   a.maintitlebar img {
-  padding:6px;
-  width:22px;
-  height:22px;
+  padding: 6px;
+  width: 22px;
+  height: 22px;
   }
-  html.ltr div#header_left .logout {
-  margin-left:0;
-  float:right;
+  html.ltr div#header-left .logout {
+  margin-left: 0;
+  float: right;
   }
-  html.rtl div#header_left .logout {
-  margin-right:0;
-  float:left;
+  html.rtl div#header-left .logout {
+  margin-right: 0;
+  float: left;
   }
-  html.ltr div#header_left, html.rtl div#header_left {
-  height:40px;
-  width:100%;
-  float:none;
+  html.ltr div#header-left, html.rtl div#header-left {
+  height: 40px;
+  width: 100%;
   }
-  html.ltr div#header_right, html.rtl div#header_right {
-  padding-top:8px;
-  height:30px;
-  margin-top:-40px;
-  width:100%;
-  float:none;
+  html.ltr div#header-right, html.rtl div#header-right {
+  padding-top: 8px;
+  height: 30px;
+  margin-top: -40px;
+  width: 100%;
   }
-  div#header_right a {
-  background:#eff0f1;
+  div#header-right a {
+  background: #eff0f1;
   }
   .optional {
-  display:none !important;
+  display: none !important;
   }
-  div#header_left .plugtop {
-  display:inline-block;
-  hyphens:none;
-  overflow:hidden;
+  div#header-left .plugtop {
+  display: inline-block;
+  hyphens: none;
+  overflow: hidden;
   white-space: nowrap;
-  padding-top:2px;
-  padding-bottom:2px;
-  font-size:1em;
+  padding-top: 2px;
+  padding-bottom: 2px;
+  font-size: 1em;
   }
-  html.ltr div#header_left .plugtop {
-  margin:0;
-  padding-left:6px;
+  html.ltr div#header-left .plugtop {
+  margin: 0;
+  padding-left: 6px;
   }
-  html.rtl div#header_left .plugtop {
-  margin:0;
-  padding-right:6px;
+  html.rtl div#header-left .plugtop {
+  margin: 0;
+  padding-right: 6px;
   }
   div.logout-label {
-  display:inline-block;
-  vertical-align:middle;
+  display: inline-block;
+  vertical-align: middle;
   }
   table.framework {
-  margin:0;
-  border:none;
-  width:100%;
-  border-spacing:0;
+  margin: 0;
+  border: none;
+  width: 100%;
+  border-spacing: 0;
   }
-  table.framework #maincell
-  {
-  padding-bottom:55px;
+  table.framework #maincell {
+  padding-bottom: 55px;
   }
 }
diff --git a/html/themes/breezy/tabs.css b/html/themes/breezy/tabs.css
index 2a73c03c2700c908684cd7210922696180357b86..3f1f123f314525bf5250b077a10eb1a255a0c44b 100644
--- a/html/themes/breezy/tabs.css
+++ b/html/themes/breezy/tabs.css
@@ -1,105 +1,105 @@
-table.tabs_header {
-width:100%;
-border:none;
-border-spacing:0px;
-font-family:arial,helvetica,sans-serif;
-text-decoration:none;
-color:#2980b9;
-font-size:13px;
-font-weight:bold;
+table.tabs-header {
+width: 100%;
+border: none;
+border-spacing: 0;
+font-family: arial,helvetica,sans-serif;
+text-decoration: none;
+color: #2980b9;
+font-size: 13px;
+font-weight: bold;
 }
 
 /* tabs header */
-table.tabs_header > tbody > tr > td {
-padding:0;
-vertical-align:bottom;
-white-space:nowrap;
-width:1px;
+table.tabs-header > tbody > tr > td {
+padding: 0;
+vertical-align: bottom;
+white-space: nowrap;
+width: 1px;
 }
-table.tabs_header > tbody > tr > td:last-child {
-width:auto;
+table.tabs-header > tbody > tr > td:last-child {
+width: auto;
 }
 
-table.tabs_header > tbody > tr > td > div > a {
-display:inline-block;
-border-radius:5px 5px 0 0;
-text-align:center;
-background-color:#D0D0D0;
-border:1px solid #999;
-margin-top:5px;
-padding-top:1px;
-padding-left:8px;
-padding-right:8px;
-padding-bottom:5px;
-transition:margin .4s ease, padding .4s ease;
-}
-table.tabs_header > tbody > tr > td > div > a:hover {
-margin-top:0;
-padding-top:2px;
-padding-bottom:7px;
+table.tabs-header > tbody > tr > td > div > a {
+display: inline-block;
+border-radius: 5px 5px 0 0;
+text-align: center;
+background-color: #D0D0D0;
+border: 1px solid #999;
+margin-top: 5px;
+padding-top: 1px;
+padding-left: 8px;
+padding-right: 8px;
+padding-bottom: 5px;
+transition: margin .4s ease, padding .4s ease;
+}
+table.tabs-header > tbody > tr > td > div > a:hover {
+margin-top: 0;
+padding-top: 2px;
+padding-bottom: 7px;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_active > a {
-background-color:#f8f8f8;
-border-bottom:0;
-margin-top:2px;
-padding-top:2px;
-padding-bottom:8px;
+table.tabs-header > tbody > tr > td > div.tab-active > a {
+background-color: #f8f8f8;
+border-bottom: 0;
+margin-top: 2px;
+padding-top: 2px;
+padding-bottom: 8px;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_inactive > a {
-color:grey;
-font-weight:normal;
+table.tabs-header > tbody > tr > td > div.tab-inactive > a {
+color: grey;
+font-weight: normal;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_disabled > a {
-color:grey;
+table.tabs-header > tbody > tr > td > div.tab-disabled > a {
+color: grey;
 }
-table.tabs_header > tbody > tr > td > div.tab_disabled > a:hover {
-margin-top:5px;
-padding-top:1px;
-padding-bottom:5px;
+table.tabs-header > tbody > tr > td > div.tab-disabled > a:hover {
+margin-top: 5px;
+padding-top: 1px;
+padding-bottom: 5px;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_notify > a {
-background-image:url(../../geticon.php?context=status&icon=dialog-information&size=16);
-background-repeat:no-repeat;
-background-position:1px 1px;
+table.tabs-header > tbody > tr > td > div.tab-notify > a {
+background-image: url(../../geticon.php?context=status&icon=dialog-information&size=16);
+background-repeat: no-repeat;
+background-position: 1px 1px;
 }
-html.ltr table.tabs_header > tbody > tr > td > div.tab_notify > a {
-padding-left:18px;
+html.ltr table.tabs-header > tbody > tr > td > div.tab-notify > a {
+padding-left: 18px;
 }
-html.rtl table.tabs_header > tbody > tr > td > div.tab_notify > a {
-padding-right:18px;
+html.rtl table.tabs-header > tbody > tr > td > div.tab-notify > a {
+padding-right: 18px;
 }
 
-html.ltr table.tabs_header > tbody > tr > td > div.tab_left > a {
-border-right-width:0;
+html.ltr table.tabs-header > tbody > tr > td > div.tab-left > a {
+border-right-width: 0;
 }
-html.rtl table.tabs_header > tbody > tr > td > div.tab_left > a {
-border-left-width:0;
+html.rtl table.tabs-header > tbody > tr > td > div.tab-left > a {
+border-left-width: 0;
 }
 
-html.ltr table.tabs_header > tbody > tr > td > div.tab_right > a {
-border-left-width:0;
+html.ltr table.tabs-header > tbody > tr > td > div.tab-right > a {
+border-left-width: 0;
 }
-html.rtl table.tabs_header > tbody > tr > td > div.tab_right > a {
-border-right-width:0;
+html.rtl table.tabs-header > tbody > tr > td > div.tab-right > a {
+border-right-width: 0;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_border {
-border-bottom:1px solid #999;
+table.tabs-header > tbody > tr > td > div.tab-border {
+border-bottom: 1px solid #999;
 }
 
 /* tabs content */
-div.tab_content {
-padding:4px;
-width:auto;
-background-color:#F8F8F8;
-border-style:solid;
-border-color:#C0C2C3;
-border-top-width:0px;
-border-bottom-width:1px;
-border-left-width:1px;
-border-right-width:1px;
+div.tab-content {
+padding: 4px;
+width: auto;
+background-color: #F8F8F8;
+border-style: solid;
+border-color: #C0C2C3;
+border-top-width: 0;
+border-bottom-width: 1px;
+border-left-width: 1px;
+border-right-width: 1px;
 }
diff --git a/html/themes/legacy/datepicker.css b/html/themes/legacy/datepicker.css
deleted file mode 100644
index 3505b4c8f56cc09d4de099f39547621b86ae2eeb..0000000000000000000000000000000000000000
--- a/html/themes/legacy/datepicker.css
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-div.datepicker {
-position:absolute;
-text-align:center;
-border:1px #AAA solid;
-font-family:arial;
-background:#FFF;
-font-size:10px;
-padding:0;
-}
-
-div.datepicker-calendar table {
-font-size:10px;
-border:1px solid #FFF;
-margin:0;
-padding:0;
-text-align:center;
-}
-
-div.datepicker div.datepicker-header {
-font-size:11px;
-font-weight:bold;
-background:#F0F0F0;
-border-bottom:1px solid #AAA;
-padding:2px;
-text-align:center;
-}
-
-div.datepicker table.header {
-width:175px;
-border:0;
-padding:0;
-text-align:center;
-border-spacing:0;
-border-collapse:collapse;
-}
-
-td.prev,td.prev_year,td.next,td.next_year {
-width:8%;
-cursor:pointer;
-font-weight:bold;
-line-height:16px;
-}
-
-td.prev:hover,td.prev_year:hover,td.next:hover,td.next_year:hover {
-background-color:#D0D0D0;
-}
-
-td.header {
-text-align:center;
-width:68%;
-font-weight:bold;
-line-height:16px;
-}
-
-div.datepicker-header {
-height:16px;
-}
-
-div.datepicker-calendar table tbody tr {
-border:1px solid #FFF;
-margin:0;
-padding:0;
-}
-
-div.datepicker-calendar table tbody tr td {
-border:1px #EAEAEA solid;
-margin:0;
-padding:0;
-text-align:center;
-height:16px;
-line-height:16px;
-width:21px;
-cursor:pointer;
-}
-
-div.datepicker-calendar table tbody tr td:hover,div.datepicker-calendar table tbody tr td.outbound:hover,div.datepicker-calendar table tbody tr td.today:hover {
-border:1px #CCE9FF solid;
-background:#E9F5FF;
-cursor:pointer;
-}
-
-div.datepicker-calendar table tbody tr td.wday {
-border:1px #AAA solid;
-background:#CCC;
-cursor:text;
-width:21px;
-height:16px;
-line-height:16px;
-font-weight:bold;
-}
-
-div.datepicker-calendar table tbody tr td.outbound {
-background:#F4F3F3;
-}
-
-div.datepicker-calendar table tbody tr td.today {
-border:1px #CCE9FF solid;
-background:#E9F5FF;
-background-image:url(../../images/date_active.png);
-background-repeat:no-repeat;
-width:21px;
-height:16px;
-line-height:16px;
-}
-
-div.datepicker-calendar table tbody tr td.today:hover {
-border:1px #CCE9FF solid;
-background:#E9F5FF;
-background-image:url(../../images/date_active.png);
-background-repeat:no-repeat;
-}
-
-div.datepicker-calendar table tbody tr td.nclick,div.datepicker-calendar table tbody tr td.nclick_outbound {
-cursor:default;
-color:#aaa;
-width:21px;
-height:16px;
-line-height:16px;
-}
-
-div.datepicker-calendar table tbody tr td.nclick_outbound {
-background:#E8E4E4;
-width:21px;
-height:16px;
-line-height:16px;
-}
-
-div.datepicker-calendar table tbody tr td.nclick:hover,div.datepicker-calendar table tbody tr td.nclick_outbound:hover {
-border:1px #EAEAEA solid;
-background:#FFF;
-}
-
-div.datepicker-calendar table tbody tr td.nclick_outbound:hover {
-background:#E8E4E4;
-}
-
-div.datepicker div.datepicker-footer {
-font-size:10px;
-background:#F0F0F0;
-border-top:1px solid #AAA;
-cursor:pointer;
-text-align:center;
-padding:2px;
-}
-
-.date {
-float:left;
-text-align:center;
-width:90px;
-}
-html.rtl .date {
-float:right;
-}
-
-.datepicker-opener-table {
-border:1px solid transparent;
-padding:0;
-border-spacing:0;
-margin:0 0 0 93px;
-background:transparent url(../../geticon.php?context=applications&icon=office-calendar&size=16) no-repeat 0 0;
-width:18px;
-height:18px;
-cursor:pointer;
-}
-html.rtl .datepicker-opener-table {
-margin:0 93px 0 0;
-}
-
-.Opera .datepicker-opener-table {
-float:right;
-}
-html.rtl .Opera .datepicker-opener-table {
-float:left;
-}
-
-.IE7 .datepicker-opener-table {
-position:relative;
-top:0;
-left:3px;
-}
-html.rtl .IE7 .datepicker-opener-table {
-right:3px;
-left:auto;
-}
-
-.datepicker-opener {
-width:16px;
-height:16px;
-margin:0 0 0 3px;
-cursor:pointer;
-}
-html.rtl .datepicker-opener {
-margin:0 3px 0 0;
-}
diff --git a/html/themes/legacy/dialog.css b/html/themes/legacy/dialog.css
deleted file mode 100644
index 7ed68719db78ccf59e53c98f5d384bfc36e2f684..0000000000000000000000000000000000000000
--- a/html/themes/legacy/dialog.css
+++ /dev/null
@@ -1,32 +0,0 @@
-
-div.msgtitle {
-width:auto;
-background-color:#F0F0F0;
-border: solid 1px #BBBBBB;
-margin-bottom:7px;
-}
-div.msgtitle h2 {
-margin:10px;
-}
-
-div.msgdialog {
-width:60%;
-z-index:150;
-position:relative;
-display:none;
-margin:auto;
-top:200px;
-}
-@media (max-height: 600px) {
-  div.msgdialog {
-    top:auto;
-  }
-}
-
-/* Small screens (i.e. phones) */
-@media (max-width: 640px) {
-  div.msgdialog {
-    top:auto;
-    width:auto;
-  }
-}
diff --git a/html/themes/legacy/form.css b/html/themes/legacy/form.css
deleted file mode 100644
index 610bbf86b3f2649481bba642b659c7b98cc0291e..0000000000000000000000000000000000000000
--- a/html/themes/legacy/form.css
+++ /dev/null
@@ -1,27 +0,0 @@
-input, input:focus, select, textarea, textarea:focus {
-font-size:12px;
-}
-
-input[type=text], input[type=password], select {
-padding:2px;
-}
-
-input[disabled] {
-color:#888;
-background-color:#DDD;
-}
-
-textarea[disabled], select[disabled] {
-color:#000;
-background-color:#DDD;
-}
-
-/* On small screens */
-@media (max-width: 640px) {
-  input[type=text], input[type=password], input[type=file], textarea, select {
-  max-width:100%;
-  }
-  input.base_selector {
-  max-width:100px;
-  }
-}
diff --git a/html/themes/legacy/lists.css b/html/themes/legacy/lists.css
index 68efc68896fd62aa8326ecb29635a2b7d06341e8..2be1dbbb22805dbd7f9c2cc421af006a710d2dde 100644
--- a/html/themes/legacy/lists.css
+++ b/html/themes/legacy/lists.css
@@ -3,101 +3,109 @@
  *           L i s t s          *
  ********************************/
 table.listingTable {
-border-top:1px solid #AAA;
-border-bottom:1px solid #AAA;
-border-left:1px solid #AAA;
-border-spacing:0;
+border-top: 1px solid #AAA;
+border-bottom: 1px solid #AAA;
+border-left: 1px solid #AAA;
+border-spacing: 0;
 }
 
 table.listingTable thead tr {
-position:relative;
-height:auto;
-margin:3px;
-padding:1px;
-white-space:nowrap;
+position: relative;
+height: auto;
+margin: 3px;
+padding: 1px;
+white-space: nowrap;
 }
 
 table.listingTable > thead > tr > th {
-background:#F0F0F0;
-font-weight:bold;
-border-right:1px solid #AAA;
-border-bottom:1px solid #AAA;
-padding:3px;
-height:22px;
+box-sizing: content-box;
+background: #F0F0F0;
+font-weight: bold;
+border-bottom: 1px solid #AAA;
+padding: 3px;
+height: 22px;
+}
+html.ltr table.listingTable > thead > tr > th {
+border-right: 1px solid #AAA;
 }
 html.rtl table.listingTable > thead > tr > th {
-border-left:1px solid #AAA;
-border-right:none;
+border-left: 1px solid #AAA;
 }
 
 table.listingTable > tbody {
-height:100%;
-overflow-x:hidden;
-overflow-y:auto;
+height: 100%;
+overflow-x: hidden;
+overflow-y: auto;
 }
 
 table.listingTable > tbody > tr {
-height:auto;
-white-space:nowrap;
+height: auto;
+white-space: nowrap;
 }
 
 table.listingTable > tbody > tr:nth-child(odd) {
-  background-color:#FFF;
+  background-color: #FFF;
 }
 
 table.listingTable > tbody > tr:nth-child(even) {
-  background-color:#F5F5F5;
+  background-color: #F5F5F5;
 }
 
 table.listingTable > tbody > tr.entry-locked:nth-child(odd) {
-  background-color:#FFC;
+  background-color: #FFC;
 }
 
 table.listingTable > tbody > tr.entry-locked:nth-child(even) {
-  background-color:#F5F5CC;
+  background-color: #F5F5CC;
 }
 
 html.ltr table.listingTable > tbody > tr td:last-child {
-padding-right:5px;
+padding-right: 5px;
 }
 html.rtl table.listingTable > tbody > tr td:last-child {
-padding-left:5px;
+padding-left: 5px;
 }
 
 table.listingTable > tbody > tr:hover {
-  background-color:#DDD;
+  background-color: #DDD;
 }
 
 table.listingTable > tbody > tr.entry-locked:hover {
-  background-color:#DDA;
+  background-color: #DDA;
 }
 
 table.listingTable > tbody > tr td {
-color:#000;
-margin:3px;
-padding:2px;
-border-right:1px solid #AAA;
-word-wrap:break-word;
-white-space:normal;
-max-width:500px;
-background:transparent;
-height:22px;
+color: #000;
+margin: 3px;
+padding: 2px;
+word-wrap: break-word;
+white-space: normal;
+max-width: 500px;
+background: transparent;
+height: 22px;
+}
+html.ltr table.listingTable > tbody > tr td {
+border-right: 1px solid #AAA;
 }
 html.rtl table.listingTable > tbody > tr td {
-border-left:1px solid #AAA;
-border-right:none;
+border-left: 1px solid #AAA;
+}
+
+table.listingTable > tbody > tr td > input[type=image],
+table.listingTable > tbody > tr td > img {
+padding: 1px;
 }
 
 
 /* List border */
 
 div.nlistFooter {
-background-color:#E5E5E5;
-border-left:1px solid silver;
-border-right:1px solid silver;
-border-bottom:1px solid silver;
-padding:0;
-width:auto;
+background-color: #E5E5E5;
+border-left: 1px solid silver;
+border-right: 1px solid silver;
+border-bottom: 1px solid silver;
+padding: 3px;
+width: auto;
 }
 
 /* Sortable Lists (only used in user main tab) */
@@ -166,161 +174,153 @@ background-color:#FFD;
 
 /* Tree List (used in baseSelector) */
 ul.treeList,ul.treeList ul {
-list-style-type:none;
-background:url(../../images/lists/vline.png) repeat-y;
-margin:0;
-padding:0;
+list-style-type: none;
+background: url(../../images/lists/vline.png) repeat-y;
+margin: 0;
+padding: 0;
 }
 
 html.ltr ul.treeList ul {
-margin-left:10px;
+margin-left: 10px;
 }
 html.rtl ul.treeList ul {
-margin-right:10px;
+margin-right: 10px;
 }
 
 ul.treeList a:hover {
-background-color:#DDD;
+background-color: #DDD;
 }
 
 a.treeList {
-padding:2px;
-cursor:pointer;
+padding: 2px;
+cursor: pointer;
 }
 
 a.treeListSelected {
-font-weight:bold;
-color:#1010AF;
-background-color:#DDD;
-padding:2px;
-cursor:pointer;
+font-weight: bold;
+color: #1010AF;
+background-color: #DDD;
+padding: 2px;
+cursor: pointer;
 }
 
 a.treeList:hover,a.treeListSelected:hover {
-background-color:#DDD;
-padding:2px;
+background-color: #DDD;
+padding: 2px;
 }
 
 ul.treeList a {
-padding:2px;
-cursor:pointer;
+padding: 2px;
+cursor: pointer;
 }
 
 ul.treeList li {
-margin:0;
-padding:0 12px;
-line-height:20px;
-background:url(../../images/lists/node.png) no-repeat;
+margin: 0;
+padding: 0 12px;
+line-height: 20px;
+background: url(../../images/lists/node.png) no-repeat;
 }
 
 li.treeListSelected a {
-font-weight:bold;
-color:#1010AF;
-padding:2px;
-}
-
-ul.treeList li.last {
-background:#fff url(../../images/lists/lastnode.png) no-repeat;
+font-weight: bold;
+color: #1010AF;
+padding: 2px;
 }
 
+ul.treeList li.last,
 ul.treeList li:last-child {
-background:#fff url(../../images/lists/lastnode.png) no-repeat;
+background: #fff url(../../images/lists/lastnode.png) no-repeat;
 }
 
 div.treeList {
-background-color:#FFF;
-border:1px solid #AAA;
-padding:5px;
-position:absolute;
-z-index:500;
-overflow-y:auto;
-float:left;
+background-color: #FFF;
+border: 1px solid #AAA;
+padding: 5px;
+position: absolute;
+z-index: 500;
+overflow-y: auto;
+float: left;
 }
 html.rtl div.treeList {
-float:right;
+float: right;
 }
 
-/* Max height for IE */
-* html div.treeList {
-height: expression( this.scrollHeight > 500 ? "500px" : "auto" );
+table.listing-container {
+width: 100%;
+height: 100%;
+vertical-align: top;
+text-align: left;
+border: none;
+border-spacing: 2px;
 }
-
-table.listing_container {
-width:100%;
-height:100%;
-vertical-align:top;
-text-align:left;
-border:none;
-border-spacing:2px;
-}
-html.rtl table.listing_container {
-text-align:right;
+html.rtl table.listing-container {
+text-align: right;
 }
 
-table.listing_container > tbody > tr > td.list {
-height:100%;
-vertical-align:top;
+table.listing-container > tbody > tr > td.list {
+height: 100%;
+vertical-align: top;
 }
 
-table.listing_container > tbody >  tr > td.filter {
-max-width:300px;
-vertical-align:top;
+table.listing-container > tbody >  tr > td.filter {
+max-width: 300px;
+vertical-align: top;
 }
 
-table.listing_container > tbody >  tr > td.filter .contentboxb {
-min-width:230px;
+table.listing-container > tbody >  tr > td.filter .contentboxb {
+min-width: 230px;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
   table.listingTable {
-  table-layout:auto;
+  table-layout: auto;
   }
   table.listingTable > tbody > tr > td, table.listingTable > thead > tr > th {
-  width:auto !important;
-  min-width:0 !important;
+  width: auto !important;
+  min-width: 0 !important;
   }
   html.ltr table.listingTable > tbody > tr td:last-child {
-  padding-right:1px;
+  padding-right: 1px;
   }
   html.rtl table.listingTable > tbody > tr td:last-child {
-  padding-left:1px;
+  padding-left: 1px;
   }
-  table.listing_container {
-  border:none;
-  border-spacing:0px;
-  border-collapse:collapse;
+  table.listing-container {
+  border: none;
+  border-spacing: 0;
+  border-collapse: collapse;
   }
-  table.listing_container > tbody > tr > td.list, table.listing_container > tbody >  tr > td.filter {
-  width:100%;
-  min-width:0;
-  max-width:none;
-  height:auto;
-  display:block;
-  padding:0;
+  table.listing-container > tbody > tr > td.list, table.listing-container > tbody >  tr > td.filter {
+  width: 100%;
+  min-width: 0;
+  max-width: none;
+  height: auto;
+  display: block;
+  padding: 0;
   }
-  table.listing_container > tbody > tr > td.list > div, table.listing_container > tbody >  tr > td.filter > div {
-  border:none;
+  table.listing-container > tbody > tr > td.list > div, table.listing-container > tbody >  tr > td.filter > div {
+  border: none;
   }
-  table.listing_container > tbody > tr > td.list:after, table.listing_container > tbody >  tr > td.filter:after {
-  content:" ";
-  display:block;
+  table.listing-container > tbody > tr > td.list:after, table.listing-container > tbody >  tr > td.filter:after {
+  content: " ";
+  display: block;
   }
-  table.listing_container > tbody >  tr > td.filter input[type=submit] {
-  border:1px solid #DDD;
-  width:100% !important;
-  padding:10px;
-  display:inline-block;
-  font-weight:bold;
+  table.listing-container > tbody >  tr > td.filter input[type=submit] {
+  border: 1px solid #DDD;
+  width: 100% !important;
+  padding: 10px;
+  display: inline-block;
+  font-weight: bold;
   }
-  html.ltr table.listing_container > tbody >  tr > td.filter input[type=submit]:active {
-  position:relative;
-  top:1px;
-  left:1px;
+  html.ltr table.listing-container > tbody >  tr > td.filter input[type=submit]:active {
+  position: relative;
+  top: 1px;
+  left: 1px;
   }
-  html.rtl table.listing_container > tbody >  tr > td.filter input[type=submit]:active {
-  position:relative;
-  top:1px;
-  right:1px;
+  html.rtl table.listing-container > tbody >  tr > td.filter input[type=submit]:active {
+  position: relative;
+  top: 1px;
+  right: 1px;
   }
 }
diff --git a/html/themes/legacy/login.css b/html/themes/legacy/login.css
index 90c372e0414a0575f24c9335f54f73b7f1f1fd3f..e1d44419a7afd3c8392e713392f1c6f851f5880b 100644
--- a/html/themes/legacy/login.css
+++ b/html/themes/legacy/login.css
@@ -1,96 +1,96 @@
 /* Login screen */
 p.gosaLoginWarning {
-text-align:center;
-color:red;
-font-weight:bold;
-font-size:12px;
+text-align: center;
+color: red;
+font-weight: bold;
+font-size: 12px;
 }
 
 html, body {
-min-height:100%;
+min-height: 100%;
 }
 
-div#window_container {
-text-align:center;
-box-shadow:0 0 2px black;
-width:100%;
-bottom:0;
-top:52px;
-position:absolute;
+div#window-container {
+text-align: center;
+box-shadow: 0 0 2px black;
+width: 100%;
+bottom: 0;
+top: 52px;
+position: absolute;
 }
 
-div#window_div {
-min-width:50%;
-margin-top:100px;
-border:1px solid #AAAAAA;
-background-color:white;
-display:inline-block;
-border-radius:10px;
-box-shadow:0 0 3px black inset;
+div#window-div {
+min-width: 50%;
+margin-top: 100px;
+border: 1px solid #AAAAAA;
+background-color: white;
+display: inline-block;
+border-radius: 10px;
+box-shadow: 0 0 3px black inset;
 }
 
-div#window_titlebar {
-text-align:center;
-border-bottom:1px solid #AAAAAA;
-padding:8px;
-background-color:#DBE6C6;
-border-radius:10px 10px 0 0;
+div#window-titlebar {
+text-align: center;
+border-bottom: 1px solid #AAAAAA;
+padding: 8px;
+background-color: #DBE6C6;
+border-radius: 10px 10px 0 0;
 }
 
-div#window_titlebar > p {
-margin:0;
-padding:0;
-font-size:24px;
-font-weight:bold;
+div#window-titlebar > p {
+margin: 0;
+padding: 0;
+font-size: 24px;
+font-weight: bold;
 }
 
-div#window_content > div {
-padding:10px;
+div#window-content > div {
+padding: 10px;
 }
 
-div#window_footer {
-padding:0;
+div#window-footer {
+padding: 0;
 }
 
-div#window_footer > div {
-display:inline-block;
-width:47%;
-padding:1%;
+div#window-footer > div {
+display: inline-block;
+width: 47%;
+padding: 1%;
 }
 
-div#window_footer > div:nth-child(1) {
-color:red;
-font-weight:bold;
+div#window-footer > div:nth-child(1) {
+color: red;
+font-weight: bold;
 }
-html.ltr div#window_footer > div:nth-child(1) {
-text-align:left;
+html.ltr div#window-footer > div:nth-child(1) {
+text-align: left;
 }
-html.rtl div#window_footer > div:nth-child(1) {
-text-align:right;
+html.rtl div#window-footer > div:nth-child(1) {
+text-align: right;
 }
 
 span.warning, p.warning {
-color:red;
+color: red;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
-  div#window_div {
-  min-width:70%;
-  margin-top:10px;
+  div#window-div {
+  min-width: 70%;
+  margin-top: 10px;
   }
-  div#window_footer > div {
-  display:block;
-  width:auto;
-  padding:5px;
-  text-align:center !important;
+  div#window-footer > div {
+  display: block;
+  width: auto;
+  padding: 5px;
+  text-align: center !important;
   }
-  div#window_footer.plugbottom > div:nth-child(2) > input[type=submit] {
-  width:100% !important;
+  div#window-footer.plugbottom > div:nth-child(2) > input[type=submit] {
+  width: 100% !important;
   }
   p.gosaLoginWarning {
-  margin-top:0px;
-  margin-bottom:0px;
+  margin-top: 0;
+  margin-bottom: 0;
   }
 }
 
diff --git a/html/themes/legacy/menu.css b/html/themes/legacy/menu.css
index 397e82747788f85e709082ae1dda29c142f9c670..3cefcd2652022ba03a527b58586d5058f44b5209 100644
--- a/html/themes/legacy/menu.css
+++ b/html/themes/legacy/menu.css
@@ -1,206 +1,200 @@
 #menucell {
-border:none;
-width:140px;
-background-color:white;
-vertical-align:top;
+border: none;
+width: 140px;
+background-color: white;
+vertical-align: top;
 }
 
 /* Side menu */
 ul.menu, ul.menu ul {
- margin:0;
- padding:0;
- list-style-type:none;
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
 }
 ul.menu li > a {
-display:block;
+display: block;
 }
 ul.menu > li {
-border:0;
-margin-bottom:5px;
-padding-bottom:3px;
-border-radius:5px;
-box-shadow:0px 0px 3px black inset;
+border: 0;
+margin-bottom: 5px;
+padding-bottom: 3px;
+border-radius: 5px;
+box-shadow: 0px 0px 3px black inset;
 }
 ul.menu > li > a {
-font-family:arial,helvetica,sans-serif;
-font-size:12px;
-font-weight:bold;
-color:#00008F;
-text-decoration:none;
-background-color:#dbe6c6;
-text-align:center;
-vertical-align:middle;
-margin-bottom:3px;
-padding-bottom:5px;
-padding-top:5px;
-border-radius:5px 5px 0 0;
-border:1px solid #AAA;
+font-family: arial,helvetica,sans-serif;
+font-size: 12px;
+font-weight: bold;
+color: #00008F;
+text-decoration: none;
+background-color: #dbe6c6;
+text-align: center;
+vertical-align: middle;
+margin-bottom: 3px;
+padding-bottom: 5px;
+padding-top: 5px;
+border-radius: 5px 5px 0 0;
+border: 1px solid #AAA;
 }
 
 ul.menu ul > li > a {
-color:#00008F;
-text-decoration:none;
-font-weight:normal;
-font-size:12px;
-vertical-align:middle;
-margin:2px 0px;
-padding-top:2px;
-padding-bottom:2px;
+color: #00008F;
+text-decoration: none;
+font-weight: normal;
+font-size: 12px;
+vertical-align: middle;
+margin: 2px 0;
+padding-top: 2px;
+padding-bottom: 2px;
 }
 html.ltr ul.menu ul > li > a {
-text-align:left;
-padding-left:15px;
+text-align: left;
+padding-left: 15px;
 }
 html.rtl ul.menu ul > li > a {
-text-align:right;
-padding-right:15px;
+text-align: right;
+padding-right: 15px;
 }
 
 .menuitem.menucurrent {
-background-color:#E5F5D5;
-box-shadow:0px 0px 2px black inset;
+background-color: #E5F5D5;
+box-shadow: 0px 0px 2px black inset;
 }
 .menuitem:hover {
-background-color:#F0F0F0;
-box-shadow:0px 0px 2px black inset;
+background-color: #F0F0F0;
+box-shadow: 0px 0px 2px black inset;
 }
 
 .menuitem a:link, .menuitem a:visited {
-text-decoration:none;
-color:#00008f;
+text-decoration: none;
+color: #00008f;
 }
 
 .menuitem {
-transition:box-shadow .5s ease, background .5s ease;
+transition: box-shadow .5s ease, background .5s ease;
 }
 .menuitem a:hover {
-text-decoration:none;
+text-decoration: none;
 }
 
 /* Main menu */
-.iconmenu_section
-{
-border-top:1px solid #AAAAAA;
-clear:both;
+.iconmenu-section {
+border-top: 1px solid #AAAAAA;
+clear: both;
 }
 
-.iconmenu_section + br
-{
-clear:both;
+.iconmenu-section + br {
+clear: both;
 }
 
-.iconmenu_section:first-child
-{
-border-top:none;
+.iconmenu-section:first-child {
+border-top: none;
 }
 
-.iconmenu .imgcontainer
-{
-height:48px;
-width:48px;
-display:flex;
-align-items:center;
-justify-content:center;
+.iconmenu .imgcontainer {
+height: 48px;
+width: 48px;
+display: flex;
+align-items: center;
+justify-content: center;
 }
 
-.iconmenu img
-{
-border:none;
-vertical-align:middle;
-flex:none;
-max-height:48px;
-max-width:48px;
+.iconmenu img {
+border: none;
+vertical-align: middle;
+flex: none;
+max-height: 48px;
+max-width: 48px;
 }
 
 h1.menuheader {
-margin:0;
-padding:10px;
-display:inline-block;
-border-bottom:1px solid #AAAAAA;
-background-color:#DBE6C6;
+margin: 0;
+padding: 10px;
+display: block;
+border-bottom: 1px solid #AAAAAA;
+background-color: #DBE6C6;
 }
 html.ltr h1.menuheader {
-border-right:1px solid #AAAAAA;
-border-radius:0 0 5px 0;
-float:left;
+border-right: 1px solid #AAAAAA;
+border-radius: 0 0 5px 0;
+float: left;
 }
 html.rtl h1.menuheader {
-border-left:1px solid #AAAAAA;
-border-radius:0 0 0 5px;
-float:right;
+border-left: 1px solid #AAAAAA;
+border-radius: 0 0 0 5px;
+float: right;
 }
 
 .iconmenu {
-cursor:pointer;
-display:flex;
-align-items:center;
-width:18%;
-min-width:130px;
-margin:.5%;
-padding:.5%;
-border-radius:5px;
-transition:box-shadow .5s ease, background .5s ease;
+cursor: pointer;
+display: flex;
+align-items: center;
+width: 18%;
+min-width: 130px;
+margin: .5%;
+padding: .5%;
+border-radius: 5px;
+transition: box-shadow .5s ease, background .5s ease;
 }
 html.ltr .iconmenu {
-float:left;
-text-align:left;
+float: left;
+text-align: left;
 }
 html.rtl .iconmenu {
-float:right;
-text-align:right;
+float: right;
+text-align: right;
 }
 .iconmenu:hover {
-box-shadow:0px 0px 4px black;
+box-shadow: 0px 0px 4px black;
 }
 
-.iconmenu:nth-child(2)
-{
-clear:left;
+.iconmenu:nth-child(2) {
+clear: left;
 }
 html.rtl .iconmenu:nth-child(2) {
-clear:right;
+clear: right;
 }
 
 .iconmenu > a:link, .iconmenu > a:visited {
-text-decoration:none;
-color:#00008f;
+text-decoration: none;
+color: #00008f;
 }
 
 .iconmenu > a:hover {
-text-decoration:none;
+text-decoration: none;
 }
 
 div.iconmenu:hover {
-background-color:#F0F0F0;
+background-color: #F0F0F0;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
-  .iconmenu {
-  text-align:center;
-  margin:2px;
-  padding:2px;
-  min-width:70px;
-  min-height:80px;
-  display:inline-block;
+  html.ltr .iconmenu,
+  html.rtl .iconmenu {
+  text-align: center;
+  margin: 2px;
+  padding: 2px;
+  min-width: 70px;
+  min-height: 80px;
+  display: inline-block;
   }
-  .iconmenu .imgcontainer
-  {
-  margin:auto;
-  display:block;
-  float:none;
+  .iconmenu .imgcontainer {
+  margin: auto;
+  display: block;
+  float: none;
   }
   h1.menuheader {
-  display:block;
-  padding:5px;
-  text-align:center;
+  display: block;
+  padding: 5px;
+  text-align: center;
   }
   html.ltr h1.menuheader {
-  border-right:none;
-  float:none;
+  border-right: none;
+  float: none;
   }
   html.rtl h1.menuheader {
-  border-left:none;
-  float:none;
+  border-left: none;
+  float: none;
   }
 }
diff --git a/html/themes/legacy/plugin.css b/html/themes/legacy/plugin.css
index 5b627d2aaa35ba463fb4c0f070f86d5574450c63..efa4aa80487fa73ac6920bbdda8a6c7b8b73c8e2 100644
--- a/html/themes/legacy/plugin.css
+++ b/html/themes/legacy/plugin.css
@@ -1,261 +1,259 @@
-.plugin_window
-{
-vertical-align:top;
-text-align:justify;
-background-color: white;
-margin-top:0px;
-margin-left:0;
-margin-right:0;
-width:auto;
-border:1px solid #AAA;
-padding:0;
+.plugin-window {
+vertical-align: top;
+text-align: justify;
+background-color:  white;
+margin-top: 0;
+margin-left: 0;
+margin-right: 0;
+width: auto;
+border: 1px solid #AAA;
+padding: 0;
 }
 
 div.pluginfo {
-border-bottom:1px solid #AAA;
-width:100%;
-padding-top:2px;
-padding-bottom:2px;
-margin-bottom:0;
-text-align:right;
-vertical-align:middle;
-background-color:#dbe6c6;
-font-family:arial,helvetica,sans-serif;
-font-size:11px;
+border-bottom: 1px solid #AAA;
+width: 100%;
+padding-top: 2px;
+padding-bottom: 2px;
+margin-bottom: 0;
+text-align: right;
+vertical-align: middle;
+background-color: #dbe6c6;
+font-family: arial,helvetica,sans-serif;
+font-size: 11px;
 }
 html.rtl div.pluginfo {
-text-align:left;
+text-align: left;
 }
 
 .plugbottom {
-border-style:solid;
-border-color:#a0a0a0;
-width:100%;
-border-top-width:1px;
-border-bottom-width:0;
-border-left-width:0;
-border-right-width:0;
-padding-top:10px;
-padding-bottom:0;
-text-align:right;
-font-family:arial,helvetica,sans-serif;
-clear:both;
+border-style: solid;
+border-color: #a0a0a0;
+width: 100%;
+border-top-width: 1px;
+border-bottom-width: 0;
+border-left-width: 0;
+border-right-width: 0;
+padding-top: 10px;
+padding-bottom: 0;
+text-align: right;
+font-family: arial,helvetica,sans-serif;
+clear: both;
 }
 p.plugbottom {
-position:fixed;
-bottom:0px;
-right:10px;
-margin:0;
-box-shadow:0px 0px 2px black;
-border-radius:5px 5px 0 0;
-width:auto;
-padding-left:10px;
-padding-right:10px;
-padding-bottom:5px;
-padding-top:5px;
-background:#BC9;
+position: fixed;
+bottom: 0;
+right: 10px;
+margin: 0;
+box-shadow: 0px 0px 2px black;
+border-radius: 5px 5px 0 0;
+width: auto;
+padding-left: 10px;
+padding-right: 10px;
+padding-bottom: 5px;
+padding-top: 5px;
+background: #BC9;
 }
 html.rtl .plugbottom {
-text-align:left;
+text-align: left;
 }
 
 /* Simple Plugin specific things */
 
-.plugin_sections:after {
+.plugin-sections:after {
 content: "";
 display: block;
 clear: both;
 }
 
-.plugin_section {
-display:block;
-float:left;
-clear:left;
-width:49%;
-vertical-align:top;
-border:1px solid #B0B0B0;
-padding:0;
-margin-top:0.5%;
-margin-left:0.5%;
-margin-bottom:0.5%;
-margin-right:0;
+.plugin-section {
+display: block;
+float: left;
+clear: left;
+width: 49%;
+vertical-align: top;
+border: 1px solid #B0B0B0;
+padding: 0;
+margin-top: 0.5%;
+margin-left: 0.5%;
+margin-bottom: 0.5%;
+margin-right: 0;
 position: relative;
 }
-html.rtl .plugin_section {
-float:right;
-clear:right;
-margin-left:0;
-margin-right:0.5%;
+html.rtl .plugin-section {
+float: right;
+clear: right;
+margin-left: 0;
+margin-right: 0.5%;
 }
 
-html.ltr .plugin_section:nth-child(even) {
-float:right;
-clear:right;
-margin-left:0;
-margin-right:0.5%;
-}
-html.rtl .plugin_section:nth-child(even) {
-float:left;
-clear:left;
-margin-left:0.5%;
-margin-right:0;
+html.ltr .plugin-section:nth-child(even) {
+float: right;
+clear: right;
+margin-left: 0;
+margin-right: 0.5%;
+}
+html.rtl .plugin-section:nth-child(even) {
+float: left;
+clear: left;
+margin-left: 0.5%;
+margin-right: 0;
 }
 
-div.plugin_section {
-padding-top:25px;
+div.plugin-section {
+padding-top: 25px;
 }
 
-.plugin_section > div {
-padding:5px;
+.plugin-section > div {
+padding: 5px;
 }
 
-fieldset.plugin_section > div {
-padding-top:30px;
+fieldset.plugin-section > div {
+padding-top: 30px;
 }
 
-fieldset.plugin_section legend {
-float:left;
-padding:0;
-margin:0;
+fieldset.plugin-section legend {
+float: left;
+padding: 0;
+margin: 0;
 }
-html.rtl fieldset.plugin_section legend {
-float:right;
+html.rtl fieldset.plugin-section legend {
+float: right;
 }
 
-fieldset.plugin_section legend span, .plugin_section > span.legend {
-font-weight:bold;
-background-color:#DBE6C6;
-border:1px solid #B0B0B0;
-width:100%;
-padding-top:5px;
-padding-bottom:5px;
-text-align:center;
-display:block;
-}
-html.ltr fieldset.plugin_section legend span, html.ltr .plugin_section > span.legend {
-margin-left:-1px;
-}
-html.rtl fieldset.plugin_section legend span, html.rtl .plugin_section > span.legend {
-margin-right:-1px;
+fieldset.plugin-section legend span, .plugin-section > span.legend {
+font-weight: bold;
+background-color: #DBE6C6;
+border: 1px solid #B0B0B0;
+width: 100%;
+padding-top: 5px;
+padding-bottom: 5px;
+text-align: center;
+display: block;
+}
+html.ltr fieldset.plugin-section legend span, html.ltr .plugin-section > span.legend {
+margin-left: -1px;
+}
+html.rtl fieldset.plugin-section legend span, html.rtl .plugin-section > span.legend {
+margin-right: -1px;
 }
 
-fieldset.plugin_section legend span {
+fieldset.plugin-section legend span {
 position: absolute;
-top:0;
-margin-top:-1px;
+top: 0;
+margin-top: -1px;
 }
-html.ltr fieldset.plugin_section legend span {
-left:0;
+html.ltr fieldset.plugin-section legend span {
+left: 0;
 }
-html.rtl fieldset.plugin_section legend span {
-right:0;
+html.rtl fieldset.plugin-section legend span {
+right: 0;
 }
 
-.plugin_section > span.legend {
-margin-top:-26px;
+.plugin-section > span.legend {
+margin-top: -26px;
 }
 
-fieldset.plugin_section legend img, .plugin_section span.legend img {
-vertical-align:middle;
+fieldset.plugin-section legend img, .plugin-section span.legend img {
+vertical-align: middle;
 }
-html.ltr fieldset.plugin_section legend img, html.ltr .plugin_section span.legend img {
-margin-right:3px;
+html.ltr fieldset.plugin-section legend img, html.ltr .plugin-section span.legend img {
+margin-right: 3px;
 }
-html.rtl fieldset.plugin_section legend img, html.rtl .plugin_section span.legend img {
-margin-left:3px;
+html.rtl fieldset.plugin-section legend img, html.rtl .plugin-section span.legend img {
+margin-left: 3px;
 }
 
 
-fieldset.plugin_section select[multiple], fieldset.plugin_section textarea {
-width:100%;
+fieldset.plugin-section select[multiple], fieldset.plugin-section textarea {
+width: 100%;
 }
 
-.plugin_section > div > table {
-min-width:80%;
+.plugin-section > div > table {
+min-width: 80%;
 }
 
-html.ltr .plugin_section.fullwidth, html.rtl .plugin_section.fullwidth {
-float:none;
-clear:both;
-width:auto;
-margin-top:0.5%;
-margin-left:0.5%;
-margin-bottom:0.5%;
-margin-right:0.5%;
+html.ltr .plugin-section.fullwidth, html.rtl .plugin-section.fullwidth {
+float: none;
+clear: both;
+width: auto;
+margin-top: 0.5%;
+margin-left: 0.5%;
+margin-bottom: 0.5%;
+margin-right: 0.5%;
 }
 
-html.ltr .plugin_section.alone, html.rtl .plugin_section.alone {
-float:none;
-clear:both;
+html.ltr .plugin-section.alone, html.rtl .plugin-section.alone {
+float: none;
+clear: both;
 }
 
-html.ltr .plugin_section.invisible, html.rtl .plugin_section.invisible {
-display:none;
+html.ltr .plugin-section.invisible, html.rtl .plugin-section.invisible {
+display: none;
 }
 
-fieldset.plugin_section.critical legend span, .plugin_section.critical > span.legend {
-font-weight:bold;
-background-color:#BCF;
+fieldset.plugin-section.critical legend span, .plugin-section.critical > span.legend {
+font-weight: bold;
+background-color: #BCF;
 }
 
-fieldset.plugin_section.critical legend span:after, .plugin_section.critical > span.legend:after {
-content:"   (editing this can break your LDAP)";
-color:#D00;
+fieldset.plugin-section.critical legend span:after, .plugin-section.critical > span.legend:after {
+content: "   (editing this can break your LDAP)";
+color: #D00;
 }
 
-.plugin_section.critical > div {
-background-color:#DFEFFF;
+.plugin-section.critical > div {
+background-color: #DFEFFF;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
-  .plugin_window {
-  margin:0;
-  border:none;
-  width:100%;
+  .plugin-window {
+  margin: 0;
+  border: none;
+  width: 100%;
   }
-  .plugin_section > div > table {
-  width:100%;
+  .plugin-section > div > table {
+  width: 100%;
   }
-  html.ltr .plugin_section, html.ltr .plugin_section:nth-child(even), html.ltr .plugin_section.fullwidth,
-  html.rtl .plugin_section, html.rtl .plugin_section:nth-child(even), html.rtl .plugin_section.fullwidth
-  {
-  display:block;
-  float:none;
-  clear:both;
-  width:100%;
+  html.ltr .plugin-section, html.ltr .plugin-section:nth-child(even), html.ltr .plugin-section.fullwidth,
+  html.rtl .plugin-section, html.rtl .plugin-section:nth-child(even), html.rtl .plugin-section.fullwidth {
+  display: block;
+  float: none;
+  clear: both;
+  width: 100%;
   border-top: none;
-  margin:0;
+  margin: 0;
   }
   .plugbottom {
-  text-align:center;
-  width:100%;
-  margin:0;
-  padding-top:5px;
-  padding-bottom:4px;
-  padding-left:1px;
-  padding-right:1px;
-  border:none;
+  text-align: center;
+  width: 100%;
+  margin: 0;
+  padding-top: 5px;
+  padding-bottom: 4px;
+  padding-left: 1px;
+  padding-right: 1px;
+  border: none;
   }
   p.plugbottom {
-  left:5px;
-  right:5px;
+  left: 5px;
+  right: 5px;
   }
   .plugbottom input[type=submit], .plugbottom input[type=button] {
-  border:1px solid #DDD;
-  width:30% !important;
-  padding:10px;
-  display:inline-block;
-  font-weight:bold;
+  border: 1px solid #DDD;
+  width: 30% !important;
+  padding: 10px;
+  display: inline-block;
+  font-weight: bold;
   }
   .plugbottom input[type=submit]:active, .plugbottom input[type=button]:active {
-  position:relative;
-  top:1px;
+  position: relative;
+  top: 1px;
   }
   html.ltr .plugbottom input[type=submit]:active, html.ltr .plugbottom input[type=button]:active {
-  left:1px;
+  left: 1px;
   }
   html.rtl .plugbottom input[type=submit]:active, html.rtl .plugbottom input[type=button]:active {
-  right:1px;
+  right: 1px;
   }
 }
diff --git a/html/themes/legacy/printer.css b/html/themes/legacy/printer.css
deleted file mode 100644
index e923099005454b44bb206b88d5a4055ae396eb71..0000000000000000000000000000000000000000
--- a/html/themes/legacy/printer.css
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Disable header and menu block, for printers. */
-td#menucell {
-display:none;
-}
-
-div.plugtop {
-display:none;
-}
-
-p.plugbottom {
-display:none;
-}
-
-.framework {
-width:100%;
-}
-
-div.setup_header {
-display:none;
-}
diff --git a/html/themes/legacy/setup.css b/html/themes/legacy/setup.css
index 812a74679d22398e72b6956b037f689b4e614345..66d920e988744e60b0d7f1aa5da195374f3691ae 100644
--- a/html/themes/legacy/setup.css
+++ b/html/themes/legacy/setup.css
@@ -1,174 +1,174 @@
 /*********
  * Setup
  *********/
-html.ltr body.setup div#header_left .plugtop {
-margin-left:80px;
+html.ltr body.setup div#header-left .plugtop {
+margin-left: 80px;
 }
-html.rtl body.setup div#header_left .plugtop {
-margin-right:80px;
+html.rtl body.setup div#header-left .plugtop {
+margin-right: 80px;
 }
-body.setup .plugin_window {
-border-radius:5px;
+body.setup .plugin-window {
+border-radius: 5px;
 }
 
 /* default.*/
 div.default {
-padding:2px 10px;
-vertical-align:middle;
+padding: 2px 10px;
+vertical-align: middle;
 }
 
-#menucell.setup_navigation {
-width:200px;
+#menucell.setup-navigation {
+width: 200px;
 }
 
 /* The box used for each setup step */
-#menucell.setup_navigation li.menuitem {
-text-decoration:none;
-padding-top:8px;
-padding-bottom:8px;
-margin-top:5px;
-margin-bottom:5px;
+#menucell.setup-navigation li.menuitem {
+text-decoration: none;
+padding-top: 8px;
+padding-bottom: 8px;
+margin-top: 5px;
+margin-bottom: 5px;
 }
-#menucell.setup_navigation li.menuitem > a {
-margin:0;
+#menucell.setup-navigation li.menuitem > a {
+margin: 0;
 }
 
 /* An enabled setup step will use this style in navigation*/
-#menucell.setup_navigation li.menuitem.menucurrent a.navigation_title {
-cursor:default;
+#menucell.setup-navigation li.menuitem.menucurrent a.navigation-title {
+cursor: default;
 }
 
 /* Disabled setup steps */
-#menucell.setup_navigation li.menuitem.disabled a.navigation_title {
-cursor:default;
-color:#AAA;
+#menucell.setup-navigation li.menuitem.disabled a.navigation-title {
+cursor: default;
+color: #AAA;
 }
 
 /* Disabled setup steps */
-#menucell.setup_navigation li.menuitem a.navigation_title {
-font-size:1.2em;
-font-weight:bold;
-text-decoration:none;
-cursor:pointer;
-padding-top:3px;
-padding-bottom:3px;
+#menucell.setup-navigation li.menuitem a.navigation-title {
+font-size: 1.2em;
+font-weight: bold;
+text-decoration: none;
+cursor: pointer;
+padding-top: 3px;
+padding-bottom: 3px;
 }
 
 /* The style for the info of an active setup */
-#menucell.setup_navigation li.menuitem a.navigation_info {
-font-size:1em;
-color:#000;
-margin:0;
-cursor:default;
+#menucell.setup-navigation li.menuitem a.navigation-info {
+font-size: 1em;
+color: #000;
+margin: 0;
+cursor: default;
 }
-html.ltr #menucell.setup_navigation li.menuitem a.navigation_info {
-padding:4px 4px 3px 15px;
+html.ltr #menucell.setup-navigation li.menuitem a.navigation-info {
+padding: 4px 4px 3px 15px;
 }
-html.rtl #menucell.setup_navigation li.menuitem a.navigation_info {
-padding:4px 15px 3px 4px;
+html.rtl #menucell.setup-navigation li.menuitem a.navigation-info {
+padding: 4px 15px 3px 4px;
 }
 
-.setup_language select#lang_selected {
-width:100%;
+.setup-language select#lang_selected {
+width: 100%;
 }
 
 /*
   Setup step 2 styles
 */
 /* used to hide display info div */
-div.solution_visible {
-display:block;
-width:100%;
-text-align:left;
+div.solution-visible {
+display: block;
+width: 100%;
+text-align: left;
 }
-html.rtl div.solution_visible {
-text-align:right;
+html.rtl div.solution-visible {
+text-align: right;
 }
 
 /* Container for name and status */
-div.step2_entry_container {
-padding:3px;
-width:99%;
-cursor:default;
+div.step2-entry-container {
+padding: 3px;
+width: 99%;
+cursor: default;
 }
 
 /* Container for name and status, when status is failed */
-div.step2_entry_container_info {
-padding:3px;
-border:1px solid #AAA;
-width:99%;
-cursor:default;
+div.step2-entry-container-info {
+padding: 3px;
+border: 1px solid #AAA;
+width: 99%;
+cursor: default;
 }
 
 /* Text shown for each entry */
-div.step2_entry_name {
-float:left;
-padding-bottom:4px;
-vertical-align:middle;
+div.step2-entry-name {
+float: left;
+padding-bottom: 4px;
+vertical-align: middle;
 }
-html.rtl div.step2_entry_name {
-float:right;
+html.rtl div.step2-entry-name {
+float: right;
 }
 
 /* Status container */
-div.step2_entry_status {
-float:none;
-text-align:right;
-padding-bottom:4px;
-vertical-align:middle;
+div.step2-entry-status {
+float: none;
+text-align: right;
+padding-bottom: 4px;
+vertical-align: middle;
 }
-html.rtl div.step2_entry_status {
-text-align:left;
+html.rtl div.step2-entry-status {
+text-align: left;
 }
 
 /* Status failed */
-div.step2_failed {
-color:red;
-padding-bottom:4px;
+div.step2-failed {
+color: red;
+padding-bottom: 4px;
 }
 
 /* Status failed but not necessary for setup */
-div.step2_warning {
-color:orange;
-padding-bottom:4px;
+div.step2-warning {
+color: orange;
+padding-bottom: 4px;
 }
 
 /* Status successful */
-div.step2_successful {
-color:green;
+div.step2-successful {
+color: green;
 }
 
 /* Text used in info div. */
-div.step2_failed_text {
-background-repeat:no-repeat;
+div.step2-failed-text {
+background-repeat: no-repeat;
 }
-html.ltr div.step2_failed_text {
-padding-left:25px;
+html.ltr div.step2-failed-text {
+padding-left: 25px;
 }
-html.rtl div.step2_failed_text {
-padding-right:25px;
+html.rtl div.step2-failed-text {
+padding-right: 25px;
 }
 
 /* Text used in info div. On warnings */
-div.step2_warning_text {
-background-repeat:no-repeat;
+div.step2-warning-text {
+background-repeat: no-repeat;
 }
-html.ltr div.step2_warning_text {
-padding-left:25px;
+html.ltr div.step2-warning-text {
+padding-left: 25px;
 }
-html.rtl div.step2_warning_text {
-padding-right:25px;
+html.rtl div.step2-warning-text {
+padding-right: 25px;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
   body.setup a.plugtop img {
-  height:32px;
+  height: 32px;
   }
-  html.ltr body.setup div#header_left .plugtop {
-  margin-left:0px;
+  html.ltr body.setup div#header-left .plugtop {
+  margin-left: 0;
   }
-  html.rtl body.setup div#header_left .plugtop {
-  margin-right:0px;
+  html.rtl body.setup div#header-left .plugtop {
+  margin-right: 0;
   }
 }
diff --git a/html/themes/legacy/sieve.css b/html/themes/legacy/sieve.css
deleted file mode 100644
index 6f0ab4a85748b0dca91f8e682f22a3f3263de74c..0000000000000000000000000000000000000000
--- a/html/themes/legacy/sieve.css
+++ /dev/null
@@ -1,374 +0,0 @@
-/************************
- * Sieve
- *  The following styles are
- *  used to display the sieve
- *  management user interface
- ************************/
-/* Editing dialog styles
- */
-table.sieve_default_table {
-width:100%;
-margin:0;
-border-spacing:0;
-padding:0;
-}
-
-/* Editing surface */
-table.editing_surface {
-width:100%;
-margin:0;
-padding:0;
-}
-
-/* Editing surface menu */
-td.editing_surface_menu {
-background-color:#EEE;
-border:1px solid #BBB;
-padding:5px;
-}
-
-/* Editing surface content */
-td.editing_surface_content {
-background-color:#FFF;
-margin:0;
-padding:0;
-}
-
-/* Error message will be displayed as follows */
-div.sieve_error_msgs {
-background-color:#ff8d00;
-color:#000;
-padding:5px;
-background-image:url(../../geticon.php?context=status&icon=dialog-warning&size=16);
-background-repeat:no-repeat;
-font-weight:bold;
-}
-
-/* Source editing area */
-textarea.editing_source {
-width:100%;
-height:330px;
-}
-
-/*************
- * Object container
- *************/
-/* The container itself */
-table.object_container_container {
-width:100%;
-border-spacing:0;
-background-color:#F8F8F8;
-border:solid 1px #AAA;
-}
-
-/* Container cell top left */
-td.object_container_cell_top_left {
-background-color:#EEE;
-text-align:center;
-}
-
-/* Container cell top right */
-td.object_container_cell_top_right {
-background-color:#EEE;
-text-align:left;
-padding:2px;
-border-bottom:solid 1px #AAA;
-}
-html.rtl td.object_container_cell_top_right {
-text-align:right;
-}
-
-/* Container cell bottom left */
-td.object_container_cell_bottom_left {
-width:5px;
-background-color:#EEE;
-text-align:center;
-}
-html.ltr td.object_container_cell_bottom_left {
-border-right:solid 1px #AAA;
-}
-html.rtl td.object_container_cell_bottom_left {
-border-left:solid 1px #AAA;
-}
-
-/*************
- * Sieve comment
- *************/
-/* Container */
-table.sieve_comment_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-textarea.sieve_comment_area {
-width:100%;
-height:80px;
-}
-
-/*************
- * Sieve require
- *************/
-/* Container */
-table.sieve_require_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-input.sieve_require_input {
-width:100%;
-border-spacing:0;
-}
-
-/*************
- * Sieve fileinto
- *************/
-/* Container */
-table.sieve_fileinto_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-input.sieve_fileinto_input {
-width:300px;
-}
-
-select.sieve_fileinto_input {
-width:300px;
-}
-
-/*************
- * Sieve keep
- *************/
-/* Container */
-table.sieve_keep_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_keep_input {
-padding-left:20px;
-}
-html.rtl td.sieve_keep_input {
-padding-right:20px;
-}
-
-/*************
- * Sieve discard
- *************/
-/* Container */
-table.sieve_discard_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_discard_input {
-padding-left:20px;
-}
-html.rtl td.sieve_discard_input {
-padding-right:20px;
-}
-
-/*************
- * Sieve redirect
- *************/
-/* Container */
-table.sieve_redirect_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_redirect_input {
-padding-left:20px;
-}
-html.rtl td.sieve_redirect_input {
-padding-right:20px;
-}
-
-textarea.sieve_redirect_input {
-width:100%;
-height:30px;
-}
-
-/*************
- * Sieve reject
- *************/
-/* Container */
-table.sieve_reject_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_reject_input {
-padding-left:20px;
-}
-html.rtl td.sieve_reject_input {
-padding-right:20px;
-}
-
-textarea.sieve_reject_input {
-width:100%;
-height:55px;
-}
-
-/*************
- * Sieve end
- *************/
-/* Container */
-table.sieve_stop_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_stop_input {
-padding-left:20px;
-}
-html.rtl td.sieve_stop_input {
-padding-right:20px;
-}
-
-/*************
- * Sieve vacation
- *************/
-/* Container */
-table.sieve_vacation_container {
-margin:0;
-padding:0;
-border-spacing:0;
-width:100%;
-background-color:#F8F8F8;
-}
-
-/* Editing area */
-html.ltr td.sieve_vacation_input {
-padding-left:20px;
-}
-html.rtl td.sieve_vacation_input {
-padding-right:20px;
-}
-
-/* Editing area */
-textarea.sieve_vacation_input {
-width:100%;
-height:55px;
-}
-
-/*************
- * Sieve allof
- *************/
-table.sieve_allof_container {
-width:100%;
-border-spacing:0;
-margin:0;
-padding:0;
-border:solid 1px #999;
-}
-
-/* Container */
-td.sieve_allof_left {
-text-align:center;
-vertical-align:middle;
-width:35px;
-background-color:#CCC;
-border:solid 0 #EEE;
-}
-
-/* Container */
-td.sieve_allof_right {
-background-color:#BDBDBD;
-}
-
-/*************
- * Sieve anyof
- *************/
-table.sieve_anyof_container {
-width:100%;
-margin:0;
-border-spacing:0;
-padding:0;
-border:solid 2px #CCC;
-}
-
-/* Container */
-td.sieve_anyof_left {
-text-align:center;
-vertical-align:middle;
-width:35px;
-background-color:#CCC;
-border:solid 0 #EEE;
-}
-
-/* Container */
-td.sieve_anyof_right {
-background-color:#BDBDBD;
-border:solid 1px #AAA;
-}
-
-/*************
- * Sieve Test Cases
- *************/
-table.sieve_test_container {
-width:100%;
-background-color:#F8F8F8;
-margin:0;
-border-spacing:0;
-padding:0;
-border:solid 1px #AAA;
-}
-
-table.sieve_test_case {
-width:100%;
-margin:0;
-border-spacing:0;
-padding:0;
-}
-
-html.ltr td.container_, html.ltr div.container_ {
-padding-left:2px;
-border-left:solid 2px #F8F8F8;
-}
-html.rtl td.container_, html.rtl div.container_ {
-padding-right:2px;
-border-right:solid 2px #F8F8F8;
-}
-
-td.container_:hover,div.container_:hover {
-display:block;
-}
-html.ltr td.container_:hover, html.ltr div.container_:hover {
-border-left:solid 2px #000;
-}
-html.rtl td.container_:hover, html.rtl div.container_:hover {
-border-right:solid 2px #000;
-}
diff --git a/html/themes/legacy/style.css b/html/themes/legacy/style.css
index 8ff45ac11a99f06f3e8237619da318470966d0bc..a3a2936958e43b8eae773d9c696b8c516ed87b6e 100644
--- a/html/themes/legacy/style.css
+++ b/html/themes/legacy/style.css
@@ -1,63 +1,63 @@
 body {
-margin:0;
-background-color:#FFF;
-color:#00008F;
-font-family:arial,helvetica,sans-serif;
-font-size:12px;
+margin: 0;
+background-color: #FFF;
+color: #00008F;
+font-family: arial,helvetica,sans-serif;
+font-size: 12px;
 }
 
 h1 {
-font-size:14px;
-color:#00378a;
+font-size: 14px;
+color: #00378a;
 }
 
 h2,h3,h4,h5,h6 {
-font-size:13px;
-color:#00378a;
+font-size: 13px;
+color: #00378a;
 }
 
 td,p,b,th {
-font-size:12px;
+font-size: 12px;
 }
 
 img {
-border:none;
+border: none;
 }
 
 a:link {
-text-decoration:none;
-color:#00008F;
+text-decoration: none;
+color: #00008F;
 }
 
 a:visited {
-text-decoration:none;
-color:#00008f;
+text-decoration: none;
+color: #00008f;
 }
 
 td.listfooter {
-background:#E5E5E5;
-border-top:1px solid silver;
-padding:3px;
-height:16px;
+background: #E5E5E5;
+border-top: 1px solid silver;
+padding: 3px;
+height: 16px;
 }
 
 td.scrollhead {
-vertical-align:top;
-padding:0;
+vertical-align: top;
+padding: 0;
 }
 
 td.scrollbody {
-vertical-align:top;
-padding:0;
+vertical-align: top;
+padding: 0;
 }
 
 div.scrollbody {
-background-color:#FFF;
-overflow:auto;
-text-align:left;
+background-color: #FFF;
+overflow: auto;
+text-align: left;
 }
 html.rtl div.scrollbody {
-text-align:right;
+text-align: right;
 }
 
 /* -------------- DEPRECATED ----------------- */
@@ -127,639 +127,639 @@ text-align:right;
 
 /* Title bar */
 a.maintitlebar,div.maintitlebar {
-font-family:arial,helvetica,sans-serif;
-text-decoration:none;
+font-family: arial,helvetica,sans-serif;
+text-decoration: none;
 /*color:#FFFFFF;*/
-font-size:12px;
-text-align:center;
-vertical-align:middle;
-cursor:pointer;
-display:inline-block;
-padding:2px;
-border-radius:8px;
-transition:box-shadow .5s ease, background .5s ease;
+font-size: 12px;
+text-align: center;
+vertical-align: middle;
+cursor: pointer;
+display: inline-block;
+padding: 2px;
+border-radius: 8px;
+transition: box-shadow .5s ease, background .5s ease;
 }
 html.ltr a.maintitlebar,html.ltr div.maintitlebar {
-padding-right:5px;
+padding-right: 5px;
 }
 html.rtl a.maintitlebar,html.rtl div.maintitlebar {
-padding-left:5px;
+padding-left: 5px;
 }
 
 a.maintitlebar:hover {
-text-decoration:none;
-background-color:#d7e6b4;
-cursor:pointer;
-box-shadow:0px 0px 2px black;
+text-decoration: none;
+background-color: #d7e6b4;
+cursor: pointer;
+box-shadow: 0px 0px 2px black;
 }
 
 td.phonelist:hover {
-background-color:#d2d2d2;
+background-color: #d2d2d2;
 }
 
 td.phonelist {
-border-right:1px solid #B0B0B0;
+border-right: 1px solid #B0B0B0;
 }
 
 div.copynotice {
-border-style:solid;
-border-color:#AAA;
-width:100%;
-border-top-width:1px;
-border-bottom-width:0;
-border-left-width:0;
-border-right-width:0;
-padding-top:3px;
-padding-bottom:0;
-text-align:right;
-font-family:arial,helvetica,sans-serif;
-font-size:10px;
+border-style: solid;
+border-color: #AAA;
+width: 100%;
+border-top-width: 1px;
+border-bottom-width: 0;
+border-left-width: 0;
+border-right-width: 0;
+padding-top: 3px;
+padding-bottom: 0;
+text-align: right;
+font-family: arial,helvetica,sans-serif;
+font-size: 10px;
 }
 html.rtl div.copynotice {
-text-align:left;
+text-align: left;
 }
 
 hr {
-width:100%;
-border:none;
-background-color:#AAA;
-height:1px;
+width: 100%;
+border: none;
+background-color: #AAA;
+height: 1px;
 }
 
 .must {
-color:red;
-font-family:arial,helvetica,sans-serif;
+color: red;
+font-family: arial,helvetica,sans-serif;
 }
 
 img.center {
-text-align:center;
-vertical-align:middle;
+text-align: center;
+vertical-align: middle;
 }
 
 input.center {
-text-align:left;
-vertical-align:middle;
+text-align: left;
+vertical-align: middle;
 }
 html.rtl input.center {
-text-align:right;
+text-align: right;
 }
 
 select.center {
-text-align:left;
-vertical-align:middle;
+text-align: left;
+vertical-align: middle;
 }
 html.rtl select.center {
-text-align:right;
+text-align: right;
 }
 
 a.center {
-text-align:left;
-vertical-align:middle;
+text-align: left;
+vertical-align: middle;
 }
 html.rtl a.center {
-text-align:right;
+text-align: right;
 }
 
 /********************** Template migration *********************/
 
 form#mainform {
-margin:0;
+margin: 0;
 }
 
 table.framework {
-height:auto;
-width:100%;
-border:0;
-border-spacing:5px;
-padding:0;
-margin-top:0;
-vertical-align:top;
-box-shadow:0px 0px 2px black;
+height: auto;
+width: 100%;
+border: 0;
+border-spacing: 5px;
+padding: 0;
+margin-top: 0;
+vertical-align: top;
+box-shadow: 0px 0px 2px black;
 }
 html.ltr table.framework {
-margin-left:0;
+margin-left: 0;
 }
 html.rtl table.framework {
-margin-right:0;
+margin-right: 0;
 }
 
 table.framework td#maincell {
-background-color:white;
-width:auto;
-vertical-align:top;
-padding-bottom:35px;
+background-color: white;
+width: auto;
+vertical-align: top;
+padding-bottom: 35px;
 }
 
 /* cellpadding="0" */
 table.framework > tbody > tr > td {
-padding:0;
+padding: 0;
 }
 
 table.maintab {
-width:100%;
-height:100%;
-border:0;
-border-spacing:0;
-padding:0;
-margin:0;
-background-color:#507AAA;
-vertical-align:top;
+width: 100%;
+height: 100%;
+border: 0;
+border-spacing: 0;
+padding: 0;
+margin: 0;
+background-color: #507AAA;
+vertical-align: top;
 }
 
 div.contentboxh {
-background-color:#F0F0F0;
-border:1px solid #AAA;
-border-bottom:none;
-height:26px;
-vertical-align:middle;
-width:auto;
+background-color: #F0F0F0;
+border: 1px solid #AAA;
+border-bottom: none;
+height: 26px;
+vertical-align: middle;
+width: auto;
 }
 
 div.contentboxh > p {
-margin:2px;
-font-family:arial,helvetica,sans-serif;
-font-size:16px;
-font-weight:bold;
-vertical-align:middle;
+margin: 2px;
+font-family: arial,helvetica,sans-serif;
+font-size: 16px;
+font-weight: bold;
+vertical-align: middle;
 }
 
 div.contentboxb {
-border:1px solid #b0b0b0;
-border-top-width:0;
-vertical-align:middle;
-width:auto;
-background:white;
-padding:5px;
+border: 1px solid #b0b0b0;
+border-top-width: 0;
+vertical-align: middle;
+width: auto;
+background: white;
+padding: 5px;
 }
 .filter div.contentboxb {
-padding:0;
+padding: 0;
 }
 div.contentboxb > div {
-display:inline-block;
-margin:1px;
+display: inline-block;
+margin: 1px;
 }
 .filter div.contentboxb > div {
-width:100%;
-background:#EEEEEE;
-border-top:1px solid #B0B0B0;
-text-align:right;
-margin:0;
-padding:3px;
-box-sizing:border-box;
+width: 100%;
+background: #EEEEEE;
+border-top: 1px solid #B0B0B0;
+text-align: right;
+margin: 0;
+padding: 3px;
+box-sizing: border-box;
 }
 .filter div.contentboxb > label img {
-vertical-align:middle;
-padding:3px;
+vertical-align: middle;
+padding: 3px;
 }
 .filter div.contentboxb > hr {
-margin-bottom:3px;
+margin-bottom: 3px;
 }
 div.contentboxb > img, div.contentboxb > input {
-display:inline-block;
-margin:3px;
+display: inline-block;
+margin: 3px;
 }
 
 p.contentboxb {
-padding-bottom:0;
-margin:0;
-border:4px solid #f8f8f8;
-vertical-align:middle;
+padding-bottom: 0;
+margin: 0;
+border: 4px solid #f8f8f8;
+vertical-align: middle;
 }
 
 a.alphaselect:hover {
-text-decoration:none;
-background-color:#a0a0a0;
-color:#FFF;
+text-decoration: none;
+background-color: #a0a0a0;
+color: #FFF;
 }
 
 table.check {
-background-color:#e1e1f1;
-color:#000;
-border:1px solid #AAA;
-width:95%;
+background-color: #e1e1f1;
+color: #000;
+border: 1px solid #AAA;
+width: 95%;
 }
 html.ltr table.check {
-margin-left:20px;
+margin-left: 20px;
 }
 html.rtl table.check {
-margin-right:20px;
+margin-right: 20px;
 }
 
 html.ltr td.check {
-border-right:1px solid #AAA;
+border-right: 1px solid #AAA;
 }
 html.rtl td.check {
-border-left:1px solid #AAA;
+border-left: 1px solid #AAA;
 }
 
 option.select {
-background-repeat:no-repeat;
-background-position:0 top;
-border:0;
-padding-bottom:1px;
-height:18px;
+background-repeat: no-repeat;
+background-position: 0 top;
+border: 0;
+padding-bottom: 1px;
+height: 18px;
 }
 html.ltr option.select {
-padding-left:20px;
+padding-left: 20px;
 }
 html.rtl option.select {
-padding-right:20px;
+padding-right: 20px;
 }
 
 
 td.tbhead {
-border-bottom:1px solid #B0B0B0;
+border-bottom: 1px solid #B0B0B0;
 }
 html.ltr td.tbhead {
-border-right:1px solid #B0B0B0;
+border-right: 1px solid #B0B0B0;
 }
 html.rtl td.tbhead {
-border-left:1px solid #B0B0B0;
+border-left: 1px solid #B0B0B0;
 }
 
 td.tbrhead {
-border-bottom:1px solid #B0B0B0;
+border-bottom: 1px solid #B0B0B0;
 }
 
 .item {
-text-align:left;
-white-space:nowrap;
-font-family:"bitstream vera sans", "luxi sans", verdana, geneva, arial, helvetica, sans-serif;
-font-size:12px;
-padding-top:2px;
+text-align: left;
+white-space: nowrap;
+font-family: "bitstream vera sans", "luxi sans", verdana, geneva, arial, helvetica, sans-serif;
+font-size: 12px;
+padding-top: 2px;
 }
 html.rtl .item {
-text-align:right;
+text-align: right;
 }
 
 .item div {
-position:relative;
-display:block;
-text-decoration:none;
+position: relative;
+display: block;
+text-decoration: none;
 }
 
 .item :hover {
-color:#FFF;
-background-color:#4b6983;
-text-decoration:none;
+color: #FFF;
+background-color: #4b6983;
+text-decoration: none;
 }
 
 .separator {
-background-color:red;
-border-top:1px solid #c6c6bf;
-border-bottom:1px solid #FFF;
-margin:2px 5px;
+background-color: red;
+border-top: 1px solid #c6c6bf;
+border-bottom: 1px solid #FFF;
+margin: 2px 5px;
 /* top right bottom left */
-height:0;
-font-size:1px;
-line-height:0;
+height: 0;
+font-size: 1px;
+line-height: 0;
 }
 
 div.autocomplete {
-position:absolute;
-background-color:#FFF;
-border:1px solid #AAA;
-margin:0;
-padding:0;
-z-index:600;
-overflow:hidden;
-word-wrap:break-word;
+position: absolute;
+background-color: #FFF;
+border: 1px solid #AAA;
+margin: 0;
+padding: 0;
+z-index: 600;
+overflow: hidden;
+word-wrap: break-word;
 }
 
 div.autocomplete ul {
-list-style-type:none;
-margin:0;
-padding:0;
+list-style-type: none;
+margin: 0;
+padding: 0;
 }
 
 div.autocomplete ul li {
-list-style-type:none;
-display:block;
-margin:0;
-padding:2px;
-cursor:pointer;
+list-style-type: none;
+display: block;
+margin: 0;
+padding: 2px;
+cursor: pointer;
 }
 html.ltr div.autocomplete ul li {
-padding-left:4px;
+padding-left: 4px;
 }
 html.rtl div.autocomplete ul li {
-padding-right:4px;
+padding-right: 4px;
 }
 
 
 div.autocomplete li:hover {
-background-color:#F0F0F0;
+background-color: #F0F0F0;
 }
 
 div.autocomplete ul li.selected {
-background-color:#F0F0F0;
+background-color: #F0F0F0;
 }
 
 #pulldown {
-background:#FFF;
-height:23px;
-border-top:1px #D0D0D0 solid;
-border-bottom:1px gray solid;
+background: #FFF;
+height: 23px;
+border-top: 1px #D0D0D0 solid;
+border-bottom: 1px gray solid;
 }
 html.ltr #pulldown {
-border-left:1px #D0D0D0 solid;
-border-right:1px gray solid;
+border-left: 1px #D0D0D0 solid;
+border-right: 1px gray solid;
 }
 html.rtl #pulldown {
-border-right:1px #D0D0D0 solid;
-border-left:1px gray solid;
+border-right: 1px #D0D0D0 solid;
+border-left: 1px gray solid;
 }
 
 #pulldown ul {
-display:block;
-margin:0;
-padding:0;
-line-height:1em;
-list-style:none;
-z-index:90;
+display: block;
+margin: 0;
+padding: 0;
+line-height: 1em;
+list-style: none;
+z-index: 90;
 }
 
 #pulldown ul li {
-margin:0 3px 0 0;
-padding:0;
-font-size:12px;
-line-height:1em;
-list-style-type:none;
+margin: 0 3px 0 0;
+padding: 0;
+font-size: 12px;
+line-height: 1em;
+list-style-type: none;
 }
 html.rtl #pulldown ul li {
-margin:0 0 0 3px;
+margin: 0 0 0 3px;
 }
 
 #pulldown ul li a {
-float:left;
-display:block;
-width:auto;
-font-weight:normal;
-background:transparent;
-text-decoration:none;
-margin:0;
-padding:5px;
+float: left;
+display: block;
+width: auto;
+font-weight: normal;
+background: transparent;
+text-decoration: none;
+margin: 0;
+padding: 5px;
 }
 html.rtl #pulldown ul li a {
-float:right;
+float: right;
 }
 
 #pulldown ul li a:hover {
-text-decoration:none;
+text-decoration: none;
 }
 
 #pulldown ul li.sep {
-color:#AAA;
-padding:.8em 0 .5em;
+color: #AAA;
+padding: .8em 0 .5em;
 }
 
 /* Commented Backslash Hack hides rule from IE5-Mac \*/
 #pulldown ul li a {
-float:none;
+float: none;
 }
 
 /* End IE5-Mac hack */
 #pulldown ul ul {
-position:absolute;
-top:0;
-left:0;
-visibility:hidden;
-border-top:1px #D0D0D0 solid;
-border-left:1px #D0D0D0 solid;
-border-bottom:1px gray solid;
-border-right:1px gray solid;
-background:#FFF;
+position: absolute;
+top: 0;
+left: 0;
+visibility: hidden;
+border-top: 1px #D0D0D0 solid;
+border-left: 1px #D0D0D0 solid;
+border-bottom: 1px gray solid;
+border-right: 1px gray solid;
+background: #FFF;
 }
 
 #pulldown ul ul li {
-border-bottom:1px solid #fff;
-float:none;
-margin:0;
-padding:0;
-width:200px;
+border-bottom: 1px solid #fff;
+float: none;
+margin: 0;
+padding: 0;
+width: 200px;
 }
 
 #pulldown ul ul li a {
-padding:5px 9px 5px 5px;
+padding: 5px 9px 5px 5px;
 }
 
 #pulldown ul ul li a:hover {
-font-weight:normal;
-background-color:#418DD4;
-background-image:none;
+font-weight: normal;
+background-color: #418DD4;
+background-image: none;
 }
 
 span.informal {
-color:#444;
-font-style:italic;
+color: #444;
+font-style: italic;
 }
 
 span.mark {
-color:#B22;
+color: #B22;
 }
 
-#debug_handling {
-border-color:#ddd;
+#debug-handling {
+border-color: #ddd;
 }
 .error, .notice, .success, .info {
-border:2px solid #ddd;
-margin:.2em;
-padding:.3em;
+border: 2px solid #ddd;
+margin: .2em;
+padding: .3em;
 }
 .error {
-background:#fbe3e4;
-color:#8a1f11;
-border-color:#fbc2c4;
+background: #fbe3e4;
+color: #8a1f11;
+border-color: #fbc2c4;
 }
 .error h1,.error h2,.error h3,.error h4,.error h5,.error h6 {
-color:#8a3700;
+color: #8a3700;
 }
 .notice {
-background:#fff6bf;
-color:#514721;
-border-color:#ffd324;
+background: #fff6bf;
+color: #514721;
+border-color: #ffd324;
 }
 .notice h1,.notice h2,.notice h3,.notice h4,.notice h5,.notice h6 {
-color:#412701;
+color: #412701;
 }
 .success {
-background:#e6efc2;
-color:#264409;
-border-color:#c6d880;
+background: #e6efc2;
+color: #264409;
+border-color: #c6d880;
 }
 .success h1,.success h2,.success h3,.success h4,.success h5,.success h6 {
-color:#378a00;
+color: #378a00;
 }
 .info {
-background:#d5edf8;
-color:#205791;
-border-color:#92cae4;
+background: #d5edf8;
+color: #205791;
+border-color: #92cae4;
 }
 .info h1,.info h2,.info h3,.info h4,.info h5,.info h6 {
-color:#00378a;
+color: #00378a;
 }
 
 /* Header */
 
-html.ltr div#header_left {
-float:left;
+html.ltr div#header-left {
+float: left;
 }
-html.rtl div#header_left {
-float:right;
+html.rtl div#header-left {
+float: right;
 }
 
 
 .plugtop {
-border:none;
-border-radius:10px;
-box-shadow:0px 0px 4px black inset;
-padding:10px;
-margin:0;
-text-align:center;
-vertical-align:middle;
-background-color:#dbe6c6;
-font-family:arial,helvetica,sans-serif;
-font-size:18px;
+border: none;
+border-radius: 10px;
+box-shadow: 0px 0px 4px black inset;
+padding: 10px;
+margin: 0;
+text-align: center;
+vertical-align: middle;
+background-color: #dbe6c6;
+font-family: arial,helvetica,sans-serif;
+font-size: 18px;
 }
 .plugtop img {
-height:32px;
+height: 32px;
 }
 html.ltr .plugtop img {
-margin-right:4px;
+margin-right: 4px;
 }
 html.rtl .plugtop img {
-margin-left:4px;
+margin-left: 4px;
 }
-html.ltr div#header_left .plugtop {
-margin-left:35px;
+html.ltr div#header-left .plugtop {
+margin-left: 35px;
 }
-html.rtl div#header_left .plugtop {
-margin-right:35px;
+html.rtl div#header-left .plugtop {
+margin-right: 35px;
 }
 
-div#header_left img {
-vertical-align:middle;
+div#header-left img {
+vertical-align: middle;
 }
 
-html.ltr div#header_left img#fd_logo {
-padding-left:2px;
-padding-right:25px;
+html.ltr div#header-left img#fd-logo {
+padding-left: 2px;
+padding-right: 25px;
 }
-html.rtl div#header_left img#fd_logo {
-padding-left:25px;
-padding-right:2px;
+html.rtl div#header-left img#fd-logo {
+padding-left: 25px;
+padding-right: 2px;
 }
 
-html.ltr div#header_left .logout {
-margin-left:35px;
+html.ltr div#header-left .logout {
+margin-left: 35px;
 }
-html.rtl div#header_left .logout {
-margin-right:35px;
+html.rtl div#header-left .logout {
+margin-right: 35px;
 }
 
-div#header_right {
-padding-top:8px;
-height:38px;
-color:black;
+div#header-right {
+padding-top: 8px;
+height: 38px;
+color: black;
 }
-html.ltr div#header_right {
-text-align:right;
+html.ltr div#header-right {
+text-align: right;
 }
-html.rtl div#header_right {
-text-align:left;
+html.rtl div#header-right {
+text-align: left;
 }
-div#header_right div.version {
-font-size:20px;
+div#header-right div.version {
+font-size: 20px;
 }
 
 /* Header col */
-div.setup_header {
-background-color:#bbcc99;
-padding:4px 5px 2px;
-color:#000;
+div.setup-header {
+background-color: #bbcc99;
+padding: 4px 5px 2px;
+color: #000;
 }
 
 /* On small screens */
 @media (max-width: 640px) {
-  div.setup_header {
-  padding:2px;
-  height:36px;
+  div.setup-header {
+  padding: 2px;
+  height: 36px;
   }
   a.maintitlebar {
-  width:36px;
-  height:36px;
-  overflow:hidden;
-  display:inline-block;
+  width: 36px;
+  height: 36px;
+  overflow: hidden;
+  display: inline-block;
   }
   html.ltr a.maintitlebar {
-  float:left;
-  margin:0;
-  padding:0;
+  float: left;
+  margin: 0;
+  padding: 0;
   }
   html.rtl a.maintitlebar {
-  float:right;
-  margin:0;
+  float: right;
+  margin: 0;
   }
   a.maintitlebar img {
-  padding:6px;
-  width:22px;
-  height:22px;
+  padding: 6px;
+  width: 22px;
+  height: 22px;
   }
-  html.ltr div#header_left .logout {
-  margin-left:0;
-  float:right;
+  html.ltr div#header-left .logout {
+  margin-left: 0;
+  float: right;
   }
-  html.rtl div#header_left .logout {
-  margin-right:0;
-  float:left;
+  html.rtl div#header-left .logout {
+  margin-right: 0;
+  float: left;
   }
-  html.ltr div#header_left, html.rtl div#header_left {
-  height:40px;
-  width:100%;
-  float:none;
+  html.ltr div#header-left, html.rtl div#header-left {
+  height: 40px;
+  width: 100%;
+  float: none;
   }
-  html.ltr div#header_right, html.rtl div#header_right {
-  padding-top:8px;
-  height:30px;
-  margin-top:-40px;
-  width:100%;
-  float:none;
+  html.ltr div#header-right, html.rtl div#header-right {
+  padding-top: 8px;
+  height: 30px;
+  margin-top: -40px;
+  width: 100%;
+  float: none;
   }
-  div#header_right a {
-  background:#bbcc99;
+  div#header-right a {
+  background: #bbcc99;
   }
   .optional {
-  display:none !important;
+  display: none !important;
   }
-  div#header_left .plugtop {
-  display:inline-block;
-  hyphens:none;
-  overflow:hidden;
+  div#header-left .plugtop {
+  display: inline-block;
+  hyphens: none;
+  overflow: hidden;
   white-space: nowrap;
-  padding-top:2px;
-  padding-bottom:2px;
-  font-size:1em;
+  padding-top: 2px;
+  padding-bottom: 2px;
+  font-size: 1em;
   }
-  html.ltr div#header_left .plugtop {
-  margin:0;
-  padding-left:6px;
+  html.ltr div#header-left .plugtop {
+  margin: 0;
+  padding-left: 6px;
   }
-  html.rtl div#header_left .plugtop {
-  margin:0;
-  padding-right:6px;
+  html.rtl div#header-left .plugtop {
+  margin: 0;
+  padding-right: 6px;
   }
   div.logout-label {
-  display:inline-block;
-  vertical-align:middle;
+  display: inline-block;
+  vertical-align: middle;
   }
   table.framework {
-  margin:0;
-  border:none;
-  width:100%;
-  border-spacing:0;
+  margin: 0;
+  border: none;
+  width: 100%;
+  border-spacing: 0;
   }
   table.framework #maincell
   {
-  padding-bottom:55px;
+  padding-bottom: 55px;
   }
 }
diff --git a/html/themes/legacy/tabs.css b/html/themes/legacy/tabs.css
index b47121c079410853c202b122a27114f6977cb65c..096c7dfa9bbc424a87a1468c30ab3d2b9631d61c 100644
--- a/html/themes/legacy/tabs.css
+++ b/html/themes/legacy/tabs.css
@@ -1,105 +1,105 @@
-table.tabs_header {
-width:100%;
-border:none;
-border-spacing:0px;
-font-family:arial,helvetica,sans-serif;
-text-decoration:none;
-color:#00008F;
-font-size:13px;
-font-weight:bold;
+table.tabs-header {
+width: 100%;
+border: none;
+border-spacing: 0;
+font-family: arial,helvetica,sans-serif;
+text-decoration: none;
+color: #00008F;
+font-size: 13px;
+font-weight: bold;
 }
 
 /* tabs header */
-table.tabs_header > tbody > tr > td {
-padding:0;
-vertical-align:bottom;
-white-space:nowrap;
-width:1px;
+table.tabs-header > tbody > tr > td {
+padding: 0;
+vertical-align: bottom;
+white-space: nowrap;
+width: 1px;
 }
-table.tabs_header > tbody > tr > td:last-child {
-width:auto;
+table.tabs-header > tbody > tr > td:last-child {
+width: auto;
 }
 
-table.tabs_header > tbody > tr > td > div > a {
-display:inline-block;
-border-radius:5px 5px 0 0;
-text-align:center;
-background-color:#D0D0D0;
-border:1px solid #999;
-margin-top:5px;
-padding-top:1px;
-padding-left:8px;
-padding-right:8px;
-padding-bottom:5px;
-transition:margin .4s ease, padding .4s ease;
-}
-table.tabs_header > tbody > tr > td > div > a:hover {
-margin-top:0;
-padding-top:2px;
-padding-bottom:7px;
+table.tabs-header > tbody > tr > td > div > a {
+display: inline-block;
+border-radius: 5px 5px 0 0;
+text-align: center;
+background-color: #D0D0D0;
+border: 1px solid #999;
+margin-top: 5px;
+padding-top: 1px;
+padding-left: 8px;
+padding-right: 8px;
+padding-bottom: 5px;
+transition: margin .4s ease, padding .4s ease;
+}
+table.tabs-header > tbody > tr > td > div > a:hover {
+margin-top: 0;
+padding-top: 2px;
+padding-bottom: 7px;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_active > a {
-background-color:#f8f8f8;
-border-bottom:0;
-margin-top:2px;
-padding-top:2px;
-padding-bottom:8px;
+table.tabs-header > tbody > tr > td > div.tab-active > a {
+background-color: #f8f8f8;
+border-bottom: 0;
+margin-top: 2px;
+padding-top: 2px;
+padding-bottom: 8px;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_inactive > a {
-color:grey;
-font-weight:normal;
+table.tabs-header > tbody > tr > td > div.tab-inactive > a {
+color: grey;
+font-weight: normal;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_disabled > a {
-color:grey;
+table.tabs-header > tbody > tr > td > div.tab-disabled > a {
+color: grey;
 }
-table.tabs_header > tbody > tr > td > div.tab_disabled > a:hover {
-margin-top:5px;
-padding-top:1px;
-padding-bottom:5px;
+table.tabs-header > tbody > tr > td > div.tab-disabled > a:hover {
+margin-top: 5px;
+padding-top: 1px;
+padding-bottom: 5px;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_notify > a {
-background-image:url(../../geticon.php?context=status&icon=dialog-information&size=16);
-background-repeat:no-repeat;
-background-position:1px 1px;
+table.tabs-header > tbody > tr > td > div.tab-notify > a {
+background-image: url(../../geticon.php?context=status&icon=dialog-information&size=16);
+background-repeat: no-repeat;
+background-position: 1px 1px;
 }
-html.ltr table.tabs_header > tbody > tr > td > div.tab_notify > a {
-padding-left:18px;
+html.ltr table.tabs-header > tbody > tr > td > div.tab-notify > a {
+padding-left: 18px;
 }
-html.rtl table.tabs_header > tbody > tr > td > div.tab_notify > a {
-padding-right:18px;
+html.rtl table.tabs-header > tbody > tr > td > div.tab-notify > a {
+padding-right: 18px;
 }
 
-html.ltr table.tabs_header > tbody > tr > td > div.tab_left > a {
-border-right-width:0;
+html.ltr table.tabs-header > tbody > tr > td > div.tab-left > a {
+border-right-width: 0;
 }
-html.rtl table.tabs_header > tbody > tr > td > div.tab_left > a {
-border-left-width:0;
+html.rtl table.tabs-header > tbody > tr > td > div.tab-left > a {
+border-left-width: 0;
 }
 
-html.ltr table.tabs_header > tbody > tr > td > div.tab_right > a {
-border-left-width:0;
+html.ltr table.tabs-header > tbody > tr > td > div.tab-right > a {
+border-left-width: 0;
 }
-html.rtl table.tabs_header > tbody > tr > td > div.tab_right > a {
-border-right-width:0;
+html.rtl table.tabs-header > tbody > tr > td > div.tab-right > a {
+border-right-width: 0;
 }
 
-table.tabs_header > tbody > tr > td > div.tab_border {
-border-bottom:1px solid #999;
+table.tabs-header > tbody > tr > td > div.tab-border {
+border-bottom: 1px solid #999;
 }
 
 /* tabs content */
-div.tab_content {
-padding:4px;
-width:auto;
-background-color:#F8F8F8;
-border-style:solid;
-border-color:#AAA;
-border-top-width:0px;
-border-bottom-width:1px;
-border-left-width:1px;
-border-right-width:1px;
+div.tab-content {
+padding: 4px;
+width: auto;
+background-color: #F8F8F8;
+border-style: solid;
+border-color: #AAA;
+border-top-width: 0;
+border-bottom-width: 1px;
+border-left-width: 1px;
+border-right-width: 1px;
 }
diff --git a/ihtml/themes/breezy/css.tpl b/ihtml/themes/breezy/css.tpl
index 7226d98d3d5a7dcdd4f5ed2dfcb62bf4e26f97d4..2ba37fd9d5ef238ac59126d770f8db8f3ad15d83 100644
--- a/ihtml/themes/breezy/css.tpl
+++ b/ihtml/themes/breezy/css.tpl
@@ -6,7 +6,6 @@
   <link rel="stylesheet" type="text/css" href="{filePath file="tabs.css"}" media="screen"/>
   <link rel="stylesheet" type="text/css" href="{filePath file="plugin.css"}" media="screen"/>
   <link rel="stylesheet" type="text/css" href="{filePath file="setup.css"}" media="screen"/>
-  <link rel="stylesheet" type="text/css" href="{filePath file="sieve.css"}" media="screen"/>
   <link rel="stylesheet" type="text/css" href="{filePath file="theme.css"}" media="screen"/>
   <link rel="stylesheet" type="text/css" href="{filePath file="dialog.css"}" media="screen"/>
 {foreach from=$css_files item=file}
diff --git a/ihtml/themes/breezy/framework.tpl b/ihtml/themes/breezy/framework.tpl
index 6dfca84bb4305450e44bde087ca8d022f9c556cb..d1061fe2821622203d72f5cd9a4e8a4f95ec1a95 100644
--- a/ihtml/themes/breezy/framework.tpl
+++ b/ihtml/themes/breezy/framework.tpl
@@ -3,9 +3,9 @@
   {$game_screen}
   {$php_errors}
   <form action="main.php{$plug}" name="mainform" id="mainform" method="post" enctype="multipart/form-data">
-    <div class="setup_header">
-      <div id="header_left">
-        <img id="fd_logo" class="optional" src="geticon.php?context=applications&amp;icon=fusiondirectory&amp;size=48" alt="FusionDirectory"/>
+    <div class="setup-header">
+      <div id="header-left">
+        <img id="fd-logo" class="optional" src="geticon.php?context=applications&amp;icon=fusiondirectory&amp;size=48" alt="FusionDirectory"/>
         <a class="maintitlebar" href="main.php?reset=1">
           <img src="geticon.php?context=actions&amp;icon=go-home&amp;size=22" alt="Main"/>&nbsp;{t}Main{/t}
         </a>
@@ -17,7 +17,7 @@
           <img src="{$headline_image|escape}" alt="{t}{$headline}{/t}"/>{t}{$headline}{/t}
         </a>
       </div>
-      <div id="header_right">
+      <div id="header-right">
         <a><span class="optional">{t}Signed in:{/t} </span><b>{$username}</b></a>
         {if ($sessionLifetime > 0)}
         <div class="logout-label">
@@ -41,7 +41,7 @@
           <!-- Plugin window -->
           <td id="maincell">
             {$msg_dialogs}
-            <div class="plugin_window">
+            <div class="plugin-window">
               {$contents}
             </div>
             {if $channel != ""}
diff --git a/ihtml/themes/breezy/login.tpl b/ihtml/themes/breezy/login.tpl
index 295813b2a26ffcb7e6f9c08173ff4894a9c12ab5..d28286544f255bd0d4e503ecac042c7311f888ff 100644
--- a/ihtml/themes/breezy/login.tpl
+++ b/ihtml/themes/breezy/login.tpl
@@ -5,18 +5,18 @@
 
 {* FusionDirectory login - smarty template *}
 
-<div id="window_container">
+<div id="window-container">
 
-<div id="window_div">
+<div id="window-div">
 <form action="index.php" method="post" id="loginform" name="loginform" onSubmit="js_check(this);return true;">
 
 {$msg_dialogs}
-  <div id="window_titlebar">
+  <div id="window-titlebar">
     <p>
       {t}Login screen{/t}
     </p>
   </div>
-  <div id="window_content">
+  <div id="window-content">
 
     <div class="optional">
       {t}Please use your username and your password to log into the site administration system.{/t}<br />
@@ -58,7 +58,7 @@
        </script>
       </p>
   </div>
-  <div id="window_footer" class="plugbottom">
+  <div id="window-footer" class="plugbottom">
     <div>
       <!-- Display error message on demand -->
       {$message}
diff --git a/ihtml/themes/breezy/recovery.tpl b/ihtml/themes/breezy/recovery.tpl
index 9f3b5472ebb376e770d7922617f76370313dbfba..4ca66dd01615da3c934fd078c5894b21710650c9 100644
--- a/ihtml/themes/breezy/recovery.tpl
+++ b/ihtml/themes/breezy/recovery.tpl
@@ -6,19 +6,19 @@
   </div>
   {$msg_dialogs}
 
-<div id="window_container">
+<div id="window-container">
 
-<div id="window_div">
+<div id="window-div">
 
   <form action='recovery.php{$params}' method='post' name='mainform' onSubmit='js_check(this);return true;'>
 
-  <div id="window_titlebar">
+  <div id="window-titlebar">
     <p>
       <img class="center" src="geticon.php?context=status&amp;icon=dialog-password&amp;size=48" alt="{t}Password{/t}" title="{t}Password{/t}"/>
       {t}Lost password{/t}
     </p>
   </div>
-  <div id="window_content">
+  <div id="window-content">
     <div>
 {if $activated}
       <!-- Display SSL warning message on demand -->
@@ -75,7 +75,7 @@
     </table>
   </div>
   </div>
-  <div id="window_footer" class="plugbottom">
+  <div id="window-footer" class="plugbottom">
     <div>
     </div>
     <div>
@@ -116,7 +116,7 @@
     </table>
   </div>
   </div>
-  <div id="window_footer" class="plugbottom">
+  <div id="window-footer" class="plugbottom">
     <div>
     </div>
     <div>
diff --git a/ihtml/themes/breezy/setup_header.tpl b/ihtml/themes/breezy/setup_header.tpl
index 14477ccc03ec762fd5b1130d360136c38546a985..de0450960fd8db43fa4b693506432677f05b2f38 100644
--- a/ihtml/themes/breezy/setup_header.tpl
+++ b/ihtml/themes/breezy/setup_header.tpl
@@ -1,8 +1,8 @@
-<div class="setup_header">
-  <div id="header_left">
-    <img id="fd_logo" class="optional" src="geticon.php?context=applications&amp;icon=fusiondirectory&amp;size=48" alt="FusionDirectory"/>
+<div class="setup-header">
+  <div id="header-left">
+    <img id="fd-logo" class="optional" src="geticon.php?context=applications&amp;icon=fusiondirectory&amp;size=48" alt="FusionDirectory"/>
   </div>
-  <div id="header_right">
+  <div id="header-right">
     <div class="version">
       {$version}
     </div>
diff --git a/ihtml/themes/breezy/simple-filter.tpl b/ihtml/themes/breezy/simple-filter.tpl
index d918f814a09757767ff2add3ce03ead1ad884805..cb0ff8b00ccf43f43c1bd5e90735b420e37d2015 100644
--- a/ihtml/themes/breezy/simple-filter.tpl
+++ b/ihtml/themes/breezy/simple-filter.tpl
@@ -11,7 +11,7 @@
   {$SCOPE}
   <hr/>
 
-  <label for="NAME"><img src="geticon.php?context=actions&amp;icon=system-search&amp;size=16"/></label>{$NAME}
+  <label for="NAME"><img src="geticon.php?context=actions&amp;icon=system-search&amp;size=16" alt="Search"/></label>{$NAME}
 
   <div>
     {$APPLY}
diff --git a/ihtml/themes/breezy/simple-list.tpl b/ihtml/themes/breezy/simple-list.tpl
index 6bff743f062eaf68a864b7e9f65d5de21c198d96..993dfe3dd293249fc0d688b49269cbc0ea77f8ed 100644
--- a/ihtml/themes/breezy/simple-list.tpl
+++ b/ihtml/themes/breezy/simple-list.tpl
@@ -1,4 +1,4 @@
-<table class="listing_container">
+<table class="listing-container">
   <tbody>
     <tr>
       <td class="list">
diff --git a/ihtml/themes/breezy/simpleplugin.tpl b/ihtml/themes/breezy/simpleplugin.tpl
index d6126dbf01984b22a0391927f2ee099acb0a46df..aa9cb63975e8932a6cde51c1050e3a125b7fef0d 100644
--- a/ihtml/themes/breezy/simpleplugin.tpl
+++ b/ihtml/themes/breezy/simpleplugin.tpl
@@ -1,4 +1,4 @@
-<div class="plugin_sections">
+<div class="plugin-sections">
   {foreach from=$sections key=section item=display}
     {$display}
   {/foreach}
diff --git a/ihtml/themes/breezy/simpleplugin_section.tpl b/ihtml/themes/breezy/simpleplugin_section.tpl
index e27c7385fd8c3321bf37beabab23d8d8b5bb6b01..0c9b525010bbf53f6717842dbdfdb8906449f241 100644
--- a/ihtml/themes/breezy/simpleplugin_section.tpl
+++ b/ihtml/themes/breezy/simpleplugin_section.tpl
@@ -1,4 +1,4 @@
-<fieldset id="{$sectionId}" class="plugin_section{$sectionClasses}">
+<fieldset id="{$sectionId}" class="plugin-section{$sectionClasses}">
   <legend><span>{$section}</span></legend>
   <div>
   <table>
diff --git a/include/accept-to-gettext.inc b/include/accept-to-gettext.inc
index 00e8f9af3c9c8aa9cd588f3398af9c2d4843963c..a19f126391e25bccd19838dcfab4bb32507dce78 100644
--- a/include/accept-to-gettext.inc
+++ b/include/accept-to-gettext.inc
@@ -145,9 +145,12 @@ function al2gt($gettextlangs, $mime)
   /* Loop through the available languages/encodings, and pick the one
    * with the highest score, excluding the ones with a charset the user
    * did not include. */
-  $max_lang     = NULL; // The lang with the maximum score found
-  $max_l_score  = 0;    // The lang score of this lang
-  $max_c_score  = 0;    // The char score of this lang
+  /* The lang with the maximum score found */
+  $max_lang     = NULL;
+  /* The lang score of this lang */
+  $max_l_score  = 0;
+  /* The char score of this lang */
+  $max_c_score  = 0;
   foreach ($gettextlangs as $gtlang) {
     if (!($infos = parse_gettext_lang($gtlang))) {
       continue;
@@ -157,11 +160,13 @@ function al2gt($gettextlangs, $mime)
     $lang_score = max_scores($lang_scores, array($lang,$lang.'-'.$country,'*'));
     $char_score = max_scores($char_scores, array($char,'*'));
     if ($char_score == 0) {
-      continue; // exclude charsets the user refuses
+    /* exclude charsets the user refuses */
+      continue;
     }
 
     if   (($lang_score > $max_l_score)
-      || (($lang_score == $max_l_score) && ($char_score > $max_c_score))) { // if lang scores are equals we compare char scores
+      || (($lang_score == $max_l_score) && ($char_score > $max_c_score))) {
+    /* if lang scores are equals we compare char scores */
       $max_l_score  = $lang_score;
       $max_c_score  = $char_score;
       $max_lang     = $gtlang;
diff --git a/include/class_CopyPasteHandler.inc b/include/class_CopyPasteHandler.inc
index bcceb4086b1246a3cb2bcef9dcc62605a2799b6e..47c435c7524ecda374a7f00a2792d24f2b8153d1 100644
--- a/include/class_CopyPasteHandler.inc
+++ b/include/class_CopyPasteHandler.inc
@@ -223,7 +223,7 @@ class CopyPasteHandler
         $msgs = $entry['object']->check();
 
         /* Retrieve ACL infos */
-        $copy_acl = $ui->is_copyable($entry['dn'], $entry['aclCategory']);
+        $copy_acl = $ui->is_copyable($entry['dn'], $entry['aclCategory'], $entry['mainTab']);
         $cut_acl  = $ui->is_cutable($entry['dn'], $entry['aclCategory'], $entry['mainTab']);
 
         /* Check permissions */
@@ -290,8 +290,7 @@ class CopyPasteHandler
       }
       if ($this->current) {
         $display = $this->current['object']->execute();
-        if (isset($this->current['object']->dialog) &&
-            (is_object($this->current['object']->dialog) || $this->current['object']->dialog)) {
+        if ($this->current['object']->dialogOpened()) {
           return $display;
         } else {
           // Display ok, (apply) and cancel buttons
diff --git a/include/class_SnapshotHandler.inc b/include/class_SnapshotHandler.inc
index 9bf318d5664a4c8506d2732afce7d320a86c1c5a..8d1dece318e2bcf565c6a13b6a50c385ca93d8ad 100644
--- a/include/class_SnapshotHandler.inc
+++ b/include/class_SnapshotHandler.inc
@@ -28,9 +28,12 @@
  * \brief This class contains all the function needed to handle
  * the snapshot functionality
  */
-class SnapshotHandler {
+class SnapshotHandler
+{
   var $snapshotBases  = array();
 
+  protected $enabled;
+
   /*!
    * \brief Create handler
    *
@@ -39,13 +42,16 @@ class SnapshotHandler {
   function __construct()
   {
     global $config;
-    /* Prepare base */
-    $this->snapshotRDN = $config->get_cfg_value("snapshotBase");
-    $ldap = $config->get_ldap_link();
-    $ldap->cd($config->current['BASE']);
-    $ldap->create_missing_trees($this->snapshotRDN);
-    if (!$ldap->success()) {
-      msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->snapshotRDN, "", get_class()), LDAP_ERROR);
+    $this->enabled = $config->snapshotEnabled();
+    if ($this->enabled) {
+      /* Prepare base */
+      $this->snapshotRDN = $config->get_cfg_value('snapshotBase');
+      $ldap = $config->get_ldap_link();
+      $ldap->cd($config->current['BASE']);
+      $ldap->create_missing_trees($this->snapshotRDN);
+      if (!$ldap->success()) {
+        msg_dialog::display(_('LDAP error'), msgPool::ldaperror($ldap->get_error(), $this->snapshotRDN, '', get_class()), LDAP_ERROR);
+      }
     }
   }
 
@@ -56,8 +62,7 @@ class SnapshotHandler {
    */
   function enabled()
   {
-    global $config;
-    return $config->snapshotEnabled();
+    return $this->enabled;
   }
 
   /*!
@@ -145,6 +150,32 @@ class SnapshotHandler {
     return $tmp;
   }
 
+  /*!
+   * \brief Cache Snapshot information for all objects in $base
+   */
+  function initSnapshotCache($base)
+  {
+    global $config;
+    if (!$this->enabled()) {
+      return;
+    }
+
+    $ldap = $config->get_ldap_link();
+
+    // Initialize base
+    $base = $this->snapshot_dn($base);
+
+    /* Fetch all objects with */
+    $ldap->cd($base);
+    $ldap->search('(&(objectClass=gosaSnapshotObject)(gosaSnapshotDN=*))', array('gosaSnapshotDN'));
+
+    /* Store for which object we have snapshots */
+    $this->snapshotsCache = array();
+    while ($entry = $ldap->fetch()) {
+      $this->snapshotsCache[$entry['gosaSnapshotDN'][0]] = TRUE;
+    }
+  }
+
   /*!
    * \brief Check if the DN has snapshots
    *
@@ -152,7 +183,7 @@ class SnapshotHandler {
    */
   function hasSnapshots($dn)
   {
-    return (count($this->getSnapshots($dn)) > 0);
+    return (isset($this->snapshotsCache[$dn]));
   }
 
   /*!
diff --git a/include/class_acl.inc b/include/class_acl.inc
index 1f27d5f15e546b70120092c74ce231fd10ad2edd..4cda415ceecc6ad303930cfc8c994d24b1b2c5df 100644
--- a/include/class_acl.inc
+++ b/include/class_acl.inc
@@ -141,7 +141,12 @@ class acl
     foreach ($ma as $memberdn) {
       // Check for wildcard here
       $dn = base64_decode($memberdn);
-      if ($dn != "*") {
+      if ($dn != '*') {
+        if (empty($dn)) {
+          trigger_error('Empty dn found in members of ACL');
+          continue;
+        }
+
         $ldap->cat($dn, array('cn', 'objectClass', 'description', 'uid'));
 
         /* Found entry... */
diff --git a/include/class_baseSelector.inc b/include/class_baseSelector.inc
index 7a4a758a2c7ba6c6da0822635554d18ad53cf43c..9c2d585182e138187538f42516b1efff946f83ae 100644
--- a/include/class_baseSelector.inc
+++ b/include/class_baseSelector.inc
@@ -189,7 +189,7 @@ class baseSelector {
     }
 
     $link = "onclick=\"\$('bs_rebase_".$this->pid."').value='".base64_encode($config->current['BASE'])."';  $('submit_tree_base_".$this->pid."').click();\"";
-    $this->tree = '<input class="base_selector" type="text" name="'.$this->getInputHtmlId().'"'.
+    $this->tree = '<input class="base-selector" type="text" name="'.$this->getInputHtmlId().'"'.
                   ' id="'.$this->getInputHtmlId().'"'.
                   ' onkeydown="$(\'bs_'.$this->pid.'\').hide()"'.
                   ' onfocus="$(\'bs_'.$this->pid.'\').hide()"'.
diff --git a/include/class_config.inc b/include/class_config.inc
index a37c1a1c30d53e94e798dfb91732305b2a3814ad..5231b6f1a1b5027abb5af561bdf78f2a4ea03921 100644
--- a/include/class_config.inc
+++ b/include/class_config.inc
@@ -424,7 +424,8 @@ class config  {
     }
 
     $debugLevel = $this->get_cfg_value('DEBUGLEVEL');
-    if ($debugLevel & DEBUG_CONFIG) { // value from LDAP can't activate DEBUG_CONFIG
+    if ($debugLevel & DEBUG_CONFIG) {
+      /* value from LDAP can't activate DEBUG_CONFIG */
       $debugLevel -= DEBUG_CONFIG;
     }
     if (isset($this->data['MAIN']['DEBUGLEVEL'])) {
@@ -529,25 +530,26 @@ class config  {
   }
 
   /* Check that configuration is in LDAP, check that no plugin got installed since last configuration update */
-  function checkLdapConfig ()
+  function checkLdapConfig ($forceReload = FALSE)
   {
     global $ui;
-    $ldap   = $this->get_ldap_link();
-    $dn     = CONFIGRDN.$this->current['BASE'];
-    $reload = TRUE;
-    $ldap->cat($dn, array('fusionConfigMd5'));
-    if ($attrs = $ldap->fetch()) {
-      if (isset($attrs['fusionConfigMd5'][0]) && ($attrs['fusionConfigMd5'][0] == md5_file(CACHE_DIR."/".CLASS_CACHE))) {
-        $reload = FALSE;
+    $dn = CONFIGRDN.$this->current['BASE'];
+
+    if (!$forceReload) {
+      $ldap = $this->get_ldap_link();
+      $ldap->cat($dn, array('fusionConfigMd5'));
+      if ($attrs = $ldap->fetch()) {
+        if (isset($attrs['fusionConfigMd5'][0]) && ($attrs['fusionConfigMd5'][0] == md5_file(CACHE_DIR.'/'.CLASS_CACHE))) {
+          return;
+        }
       }
     }
-    if ($reload) {
-      add_lock($dn, $ui->dn);
-      $config_plugin = objects::open($dn, 'configuration');
-      $config_plugin->save_object();
-      $config_plugin->save();
-      del_lock($dn);
-    }
+
+    add_lock($dn, $ui->dn);
+    $config_plugin = objects::open($dn, 'configuration');
+    $config_plugin->save_object();
+    $config_plugin->save();
+    del_lock($dn);
   }
 
   function load_inldap_config()
@@ -605,7 +607,8 @@ class config  {
     foreach ($types as $type) {
       $i = objects::infos($type);
       $filter         .= $i['filter'];
-      $ldap_values[]  = $i['mainAttr']; // Specific key for departement objectTypes
+      /* Specific key for departement objectTypes */
+      $ldap_values[]  = $i['mainAttr'];
     }
     $filter = '(|'.$filter.')';
 
@@ -629,7 +632,7 @@ class config  {
         continue;
       }
 
-      $dn   = $ldap->getDN();
+      $dn   = $attrs['dn'];
       $data = objects::infos($oc);
       $this->department_info[$dn] = array(
         'img'         => $data['icon'],
@@ -915,7 +918,8 @@ class config  {
       if (isset($plInfo['plObjectType'])) {
         $entry = array('CLASS' => $class,'NAME' => $plInfo['plShortName']);
         foreach ($plInfo['plObjectType'] as $key => $value) {
-          if (is_numeric($key)) { // This is not the main tab
+          if (is_numeric($key)) {
+            /* This is not the main tab */
             $tabclass = strtoupper($value)."TABS";
             if (($tabclass == 'GROUPTABS') && class_available('mixedGroup')) {
               $tabclass = 'OGROUP-USERTABS';
@@ -1031,7 +1035,8 @@ class config  {
       }
       if (isset($plInfo['plObjectType'])) {
         foreach ($plInfo['plObjectType'] as $key => $value) {
-          if (is_numeric($key)) { // This is not the main tab
+          if (is_numeric($key)) {
+            /* This is not the main tab */
             $obj = strtoupper($value);
           } else {
             $obj = strtoupper($key);
diff --git a/include/class_filter.inc b/include/class_filter.inc
index cf7e9fc4fc5c6fa0aa31968654a611ea1c959c56..b26089ecc94ce9b503b7f6f33c4e9ed810810401 100644
--- a/include/class_filter.inc
+++ b/include/class_filter.inc
@@ -443,9 +443,16 @@ class filter
       $filter     = $query['filter'];
       $attributes = $query['attribute'];
 
-      // ObjectClass is required to check permissions later.
-      if (!in_array('objectClass', $attributes)) {
-        $attributes[] = 'objectClass';
+      if ($attributes === '*') {
+        $attributes = array($attributes);
+      } else {
+        if (!is_array($attributes)) {
+          $attributes = array($attributes);
+        }
+        // ObjectClass is required to check permissions later.
+        if (!in_array('objectClass', $attributes)) {
+          $attributes[] = 'objectClass';
+        }
       }
 
       // Generate final filter
diff --git a/include/class_filterLDAP.inc b/include/class_filterLDAP.inc
index cf1584f0e0a2da84c7e8e5b139788af13cc46ab4..dc762492935aebf501ee794fe0a58e529e61eb27 100644
--- a/include/class_filterLDAP.inc
+++ b/include/class_filterLDAP.inc
@@ -167,14 +167,7 @@ class filterLDAP {
       /* Crawl through result entries and perform the migration to the
          result array */
       while ($attrs = $ldap->fetch()) {
-        $dn = $ldap->getDN();
-
-        /* Convert dn into a printable format */
-        if ($flags & GL_CONVERT) {
-          $attrs["dn"] = convert_department_dn($dn);
-        } else {
-          $attrs["dn"] = $dn;
-        }
+        $dn = $attrs['dn'];
 
         /* Skip ACL checks if we are forced to skip those checks */
         if ($flags & GL_NO_ACL_CHECK) {
@@ -184,7 +177,7 @@ class filterLDAP {
           $obj = $parent->headpage->getObjectTypeInfos($dn, $attrs);
           if (isset($obj['category'])) {
             $o = $obj['category'].'/'.$obj['class'];
-            if (preg_match('/r/', $ui->get_permissions($dn, $o))) {
+            if (strpos($ui->get_permissions($dn, $o), 'r') !== FALSE) {
               $result[] = $attrs;
             }
           } else {
diff --git a/include/class_ldap.inc b/include/class_ldap.inc
index 9a43ced0a4b3e2b75d7c26c037c3089ab07a772c..cc84bc9b24f87d6f0779eaf49a3627279dff74a8 100644
--- a/include/class_ldap.inc
+++ b/include/class_ldap.inc
@@ -39,21 +39,28 @@ class LDAP
   var $hascon         = FALSE;
   var $reconnect      = FALSE;
   var $tls            = FALSE;
-  var $cid;               //connection identifier
+  /* connection identifier */
+  var $cid;
   var $hasres         = array();
   var $sr             = array();
   var $re             = array();
   var $basedn         = "";
-  var $start          = array(); // 0 if we are fetching the first entry, otherwise 1
-  var $error          = ""; // Any error messages to be returned can be put here
+  /* 0 if we are fetching the first entry, otherwise 1 */
+  var $start          = array();
+  /* Any error messages to be returned can be put here */
+  var $error          = "";
   var $srp            = 0;
-  var $objectClasses    = array(); // Information read from slapd.oc.conf
-  var $binddn         = ""; // the dn for the bind
-  var $bindpw         = ""; //the dn's password for the bind
+  /* Information read from slapd.oc.conf */
+  var $objectClasses    = array();
+  /* the dn for the bind */
+  var $binddn         = "";
+  /* the dn's password for the bind */
+  var $bindpw         = "";
   var $hostname       = "";
   var $follow_referral    = FALSE;
   var $referrals      = array();
-  var $max_ldap_query_time  = 0;   // 0, empty or negative values will disable this check
+  /* 0, empty or negative values will disable this check */
+  var $max_ldap_query_time  = 0;
 
   /*!
    * \brief Create a LDAP connection
@@ -665,7 +672,7 @@ class LDAP
   /*!
    * \brief Function rmdir_recursive
    *
-   * Based in recursive_remove, adding two thing: full subtree remove, and delete own node.
+   * Based on recursive_remove, adding two thing: full subtree remove, and delete own node.
    *
    * \param $srp srp
    *
@@ -681,7 +688,7 @@ class LDAP
 
       /* Get sorted list of dn's to delete */
       $this->cd($deletedn);
-      $this->search($srp, "(objectClass=*)", array('dn'));
+      $this->search($srp, '(objectClass=*)', array('dn'));
       while ($attrs = $this->fetch($srp)) {
         $delarray[$attrs['dn']] = strlen($attrs['dn']);
       }
@@ -690,7 +697,7 @@ class LDAP
 
       /* Really Delete ALL dn's in subtree */
       foreach (array_keys($delarray) as $key) {
-        $r = @ldap_delete($this->cid, LDAP::fix($key));
+        $r = @ldap_delete($this->cid, $key);
         if ($r === FALSE) {
           break;
         }
@@ -859,7 +866,7 @@ class LDAP
           }
           $na[$type] = $param;
 
-          // Fill in MUST values - but do not overwrite existing ones.
+          /* Fill in MUST values - but do not overwrite existing ones. */
           if (is_array($classes[$ocname]['MUST'])) {
             foreach ($classes[$ocname]['MUST'] as $attr) {
               if (isset($na[$attr]) && !empty($na[$attr])) continue;
@@ -901,30 +908,6 @@ class LDAP
     return TRUE;
   }
 
-  /*!
-   * \brief Recursive remove
-   *
-   * \param integer $srp
-   */
-  function recursive_remove($srp)
-  {
-    $delarray = array();
-
-    /* Get sorted list of dn's to delete */
-    $this->search ($srp, "(objectClass=*)");
-    while ($this->fetch($srp)) {
-      $deldn            = $this->getDN($srp);
-      $delarray[$deldn] = strlen($deldn);
-    }
-    arsort($delarray);
-    reset($delarray);
-
-    /* Delete all dn's in subtree */
-    foreach (array_keys($delarray) as $key) {
-      $this->rmdir($key);
-    }
-  }
-
   /*!
    * \brief Read a entry from a directory
    *
diff --git a/include/class_ldapFilter.inc b/include/class_ldapFilter.inc
index 1c5d60e382cae008e1937f1a3165fbc6c691ff2d..7169f08ae7cf58510af20979de8a6f1ac02ff099 100644
--- a/include/class_ldapFilter.inc
+++ b/include/class_ldapFilter.inc
@@ -38,8 +38,8 @@ class ldapFilter
 {
   static $operators = array('!', '&', '|');
 
-  var $operator;
-  var $subparts;
+  protected $operator;
+  protected $subparts;
 
   function __construct($operator, $subparts)
   {
@@ -72,6 +72,16 @@ class ldapFilter
     }
   }
 
+  function getOperator()
+  {
+    return $this->operator;
+  }
+
+  function getSubparts()
+  {
+    return $this->subparts;
+  }
+
   static function parse($filter)
   {
     // Remove starting and ending parenthesis
@@ -79,7 +89,8 @@ class ldapFilter
 
     if (in_array($filter[0], ldapFilter::$operators)) {
       $subfilters = array();
-      $filter .= ')'; // We need an ending parenthesis in order to catch last subpart correctly
+      /* We need an ending parenthesis in order to catch last subpart correctly */
+      $filter .= ')';
       $offset = 0;
       $level  = 0;
       $open;
@@ -109,9 +120,23 @@ class ldapFilterLeaf extends ldapFilter
 {
   static $operators = array('=','=~','>','>=','<','<=');
 
+  protected $pattern;
+
   function __construct($left, $operator, $right)
   {
     parent::__construct($operator, array($left, $right));
+    if (($this->operator == '=') || ($this->operator == '=~')) {
+      $prefix = '';
+      $suffix = '';
+      if (preg_match('/^\\*/', $this->subparts[1])) {
+        $prefix = '.*';
+      }
+      if (preg_match('/\\*$/', $this->subparts[1])) {
+        $suffix = '.*';
+      }
+      $search = preg_replace(array('/^\\*/','/\\*$/'), '', $this->subparts[1]);
+      $this->pattern = '/^'.$prefix.preg_quote($search, '/').$suffix.'$/';
+    }
   }
 
   function __toString()
@@ -131,16 +156,7 @@ class ldapFilterLeaf extends ldapFilter
           case '=~':
             trigger_error('Filter apply might not work as expected');
           case '=':
-            $prefix = '';
-            $suffix = '';
-            if (preg_match('/^\\*/', $this->subparts[1])) {
-              $prefix = '.*';
-            }
-            if (preg_match('/\\*$/', $this->subparts[1])) {
-              $suffix = '.*';
-            }
-            $search = preg_replace(array('/^\\*/','/\\*$/'), '', $this->subparts[1]);
-            if (preg_match('/^'.$prefix.preg_quote($search, '/').$suffix.'$/', $value)) {
+            if (preg_match($this->pattern, $value)) {
               return TRUE;
             }
             break;
@@ -176,16 +192,19 @@ class ldapFilterLeaf extends ldapFilter
 function fdTemplateFilter($filter)
 {
   if ($filter instanceof ldapFilterLeaf) {
-    if ($filter->operator == '=') {
-      $filter->subparts[1] = $filter->subparts[0].':'.$filter->subparts[1];
-      $filter->subparts[0] = 'fdTemplateField';
+    if ($filter->getOperator() == '=') {
+      $subparts = $filter->getSubparts();
+      return new ldapFilterLeaf('fdTemplateField', '=', $subparts[0].':'.$subparts[1]);
     } else {
       trigger_error('Not able to adapt this filter for templates');
     }
   } else {
-    foreach ($filter->subparts as &$subpart) {
+    $subparts = $filter->getSubparts();
+    foreach ($subparts as &$subpart) {
       $subpart = fdTemplateFilter($subpart);
     }
+    unset($subpart);
+    return new ldapFilter($filter->getOperator(), $subparts);
   }
   return $filter;
 }
diff --git a/include/class_ldapMultiplexer.inc b/include/class_ldapMultiplexer.inc
index f7faa9e23930a5ac561670fbf82d6294d3bdb8cb..add456b28bb7dd8c4b5637c687e5f9bb8355c970 100644
--- a/include/class_ldapMultiplexer.inc
+++ b/include/class_ldapMultiplexer.inc
@@ -60,7 +60,7 @@ class ldapMultiplexer {
   public function __call($methodName, $parameters)
   {
     /* Add resource pointer if the mentioned methods are used */
-    if (preg_match('/^(search|ls|cat|fetch|clearResult|resetResult|count|getDN|recursive_remove|rmdir_recursive|create_missing_trees|import_single_entry|import_complete_ldif)$/', $methodName)) {
+    if (in_array($methodName, array('search','ls','cat','fetch','clearResult','resetResult','count','getDN','rmdir_recursive','create_missing_trees','import_single_entry','import_complete_ldif'))) {
       array_unshift($parameters, $this->sr);
     }
 
diff --git a/include/class_listing.inc b/include/class_listing.inc
index fdbce686f160ba5fb9738b7806dba7383588dd14..7dcc85c4e00c2dbc014d06b57bc90ca9eaa95479 100644
--- a/include/class_listing.inc
+++ b/include/class_listing.inc
@@ -28,8 +28,8 @@
  * \brief This class contains all the function needed to make the list
  * that show the objects inside FusionDirectory
  */
-class listing {
-
+class listing
+{
   var $xmlData;
   var $entries;
   var $departments            = array();
@@ -51,19 +51,19 @@ class listing {
   var $filters  = array();
   var $filter   = NULL;
   var $pid;
+  protected $departmentTypes  = array();
   var $objectTypes      = array();
   var $objectTypeCount  = array();
-  var $objectDnMapping  = array();
-  var $copyPasteHandler = NULL;
-  var $snapshotHandler  = NULL;
+  protected $objectDnMapping  = array();
+  protected $copyPasteHandler = NULL;
+  protected $snapshotHandler  = NULL;
   var $exporter       = array();
   var $exportColumns  = array();
   var $useSpan        = FALSE;
   var $height         = 0;
   var $scrollPosition = 0;
   var $baseSelector;
-
-  var $typeCache = array();
+  protected $filterCache = array();
 
   /*!
    * \brief Create a listing
@@ -101,8 +101,9 @@ class listing {
     $this->showFooter = ($config->get_cfg_value("listSummary") == "TRUE");
 
     // Register build in filters
-    $this->registerElementFilter("objectType",      "listing::filterObjectType");
+    $this->registerElementFilter("departmentType",  "listing::filterDepartmentType");
     $this->registerElementFilter("departmentLink",  "listing::filterDepartmentLink");
+    $this->registerElementFilter("objectType",      "listing::filterObjectType");
     $this->registerElementFilter("link",            "listing::filterLink");
     $this->registerElementFilter("nameLink",        "listing::filterNameLink");
     $this->registerElementFilter("actions",         "listing::filterActions");
@@ -152,7 +153,11 @@ class listing {
    */
   function setSnapshotHandler($handler)
   {
-    $this->snapshotHandler = $handler;
+    if ($handler->enabled()) {
+      $this->snapshotHandler = $handler;
+    } else {
+      $this->snapshotHandler = NULL;
+    }
   }
 
   /*!
@@ -203,6 +208,8 @@ class listing {
       $this->xmlData = xml::xml2array($contents, 1);
     }
 
+    $this->filterCache = array();
+
     if (!isset($this->xmlData['list'])) {
       return FALSE;
     }
@@ -221,7 +228,7 @@ class listing {
     $types = departmentManagement::getDepartmentTypes();
     foreach ($types as $type) {
       $i = objects::infos($type);
-      $this->objectTypes[strtoupper($type)] = array(
+      $this->departmentTypes[strtoupper($type)] = array(
         'label'       => $i['name'],
         'image'       => $i['icon'],
         'category'    => $i['aclCategory'],
@@ -236,9 +243,8 @@ class listing {
         $this->xmlData['definition']['objectType'] = array($this->xmlData['definition']['objectType']);
       }
       foreach ($this->xmlData['definition']['objectType'] as $index => $otype) {
-        $tmp = $this->xmlData['definition']['objectType'][$index];
-        $this->objectTypes[$tmp['objectClass']] = $tmp;
-        if (isset($this->xmlData['definition']['objectType'][$index]['category'])) {
+        $this->objectTypes[$otype['objectClass']] = $otype;
+        if (isset($otype['category'])) {
           $this->categories[] = $otype['category'];
         }
       }
@@ -386,15 +392,15 @@ class listing {
 
     // Draw department browser if configured and we're not in sub mode
     $this->useSpan = FALSE;
-    if ($this->departmentBrowser && $this->filter->scope != "sub") {
+    if ($this->departmentBrowser && ($this->filter->scope != 'sub')) {
       // Fill with department browser if configured this way
       $departmentIterator = new departmentSortIterator($this->departments, $this->sortDirection[$this->sortColumn]);
       foreach ($departmentIterator as $row => $entry) {
-        $result .= "<tr>";
+        $result .= '<tr>';
 
         // Render multi select if needed
         if ($this->multiSelect) {
-          $result .= "<td style='text-align:center;padding:0;'>&nbsp;</td>";
+          $result .= '<td>&nbsp;</td>';
         }
 
         // Render defined department columns, fill the rest with some stuff
@@ -405,16 +411,16 @@ class listing {
             $colspan        = $cfg['span'];
             $this->useSpan  = TRUE;
           }
-          $result .= "<td colspan='$colspan' ".$this->colprops[$index].">".$this->renderCell($cfg['value'], $entry, $row)."</td>";
+          $result .= '<td colspan="'.$colspan.'" '.$this->colprops[$index].'>'.$this->renderCell('department', $index, $cfg['value'], $entry, $row).'</td>';
           $rest -= $colspan;
         }
 
         // Fill remaining cols with nothing
         $last = $this->numColumns - $rest;
         for ($i = 0; $i < $rest; $i++) {
-          $result .= "<td ".$this->colprops[$last + $i - 1].">&nbsp;</td>";
+          $result .= '<td '.$this->colprops[$last + $i - 1].'>&nbsp;</td>';
         }
-        $result .= "</tr>";
+        $result .= '</tr>';
 
         $alt++;
       }
@@ -423,24 +429,24 @@ class listing {
 
     // Fill with contents, sort as configured
     foreach ($this->entries as $row => $entry) {
-      $trow = "";
+      $trow = '';
 
       // Render multi select if needed
       if ($this->multiSelect) {
-        $trow .= "<td style='text-align:center;width:20px;'><input type='checkbox' id='listing_selected_$row' name='listing_selected_$row'></td>\n";
+        $trow .= '<td style="text-align:center;width:20px;"><input type="checkbox" id="listing_selected_'.$row.'" name="listing_selected_'.$row.'"/></td>'."\n";
       }
 
       foreach ($this->xmlData['table']['column'] as $index => $cfg) {
-        $renderedCell = $this->renderCell($cfg['value'], $entry, $row);
-        $trow .= "<td ".$this->colprops[$index].">".$renderedCell."</td>\n";
+        $renderedCell = $this->renderCell('column', $index, $cfg['value'], $entry, $row);
+        $trow .= '<td '.$this->colprops[$index].'>'.$renderedCell.'</td>'."\n";
 
         // Save rendered column
         $sort = preg_replace('/.*>([^<]+)<.*$/', '$1', $renderedCell);
-        $sort = preg_replace('/&nbsp;/', '', $sort);
-        if (preg_match('/</', $sort)) {
-          $sort = "";
+        $sort = str_replace('&nbsp;', '', $sort);
+        if (strpos($sort, '<') !== FALSE) {
+          $sort = '';
         }
-        $this->entries[$row]["_sort$index"] = $sort;
+        $this->entries[$row]['_sort'.$index] = $sort;
       }
 
       // Save rendered entry
@@ -468,16 +474,23 @@ class listing {
 
     // Add the footer if requested
     if ($this->showFooter) {
-      $result .= "<div class='nlistFooter'><div style='padding:3px'>";
+      $result .= '<div class="nlistFooter">';
+
+      if ($this->departmentBrowser && ($this->filter->scope != 'sub')) {
+        foreach ($this->departmentTypes as $objectType) {
+          if (isset($this->objectTypeCount[$objectType['label']])) {
+            $result .= '<img class="center" src="'.htmlentities($objectType['image'], ENT_COMPAT, 'UTF-8').'" title="'.$objectType['label'].'" alt="'.$objectType['label'].'"/>&nbsp;'.$this->objectTypeCount[$objectType['label']]."&nbsp;&nbsp;&nbsp;&nbsp;";
+          }
+        }
+      }
 
       foreach ($this->objectTypes as $objectType) {
         if (isset($this->objectTypeCount[$objectType['label']])) {
-          $label = _($objectType['label']);
-          $result .= "<img class='center' src='".htmlentities($objectType['image'], ENT_COMPAT, 'UTF-8')."' title='$label' alt='$label'>&nbsp;".$this->objectTypeCount[$objectType['label']]."&nbsp;&nbsp;&nbsp;&nbsp;";
+          $result .= '<img class="center" src="'.htmlentities($objectType['image'], ENT_COMPAT, 'UTF-8').'" title="'.$objectType['label'].'" alt="'.$objectType['label'].'"/>&nbsp;'.$this->objectTypeCount[$objectType['label']]."&nbsp;&nbsp;&nbsp;&nbsp;";
         }
       }
 
-      $result .= "</div></div>";
+      $result .= '</div>';
     }
 
     // Close list
@@ -643,6 +656,16 @@ class listing {
     if ($this->entries == NULL) {
       $this->entries = array();
     }
+
+    $this->dnToRow = array();
+    foreach ($this->entries as $row => $entry) {
+      $this->dnToRow[$entry['dn']] = $row;
+    }
+
+    // Init snapshot list for renderSnapshotActions
+    if (is_object($this->snapshotHandler)) {
+      $this->snapshotHandler->initSnapshotCache($this->base);
+    }
   }
 
   /*!
@@ -696,32 +719,30 @@ class listing {
         $classes  = "";
         $components = explode(';', $cfg);
         foreach ($components as $part) {
-          if (preg_match("/^r$/", $part)) {
-            $res .= "text-align:right;";
-            continue;
-          }
-          if (preg_match("/^l$/", $part)) {
-            $res .= "text-align:left;";
-            continue;
-          }
-          if (preg_match("/^c$/", $part)) {
-            $res .= "text-align:center;";
-            continue;
-          }
-          if (preg_match("/^o$/", $part)) {
-            $classes .= "optional ";
-            continue;
-          }
-          if (preg_match("/^[0-9]+(|px|%)(-d)?$/", $part)) {
-            if (!preg_match('/-d$/', $part)) {
-              /* d suffix means dynamic, ie no fixed width */
-              $res .= "width:$part;";
-            } else {
-              /* Remove the -d suffix */
-              $part = preg_replace('/-d$/', '', $part);
-            }
-            $res .= "min-width:$part;";
-            continue;
+          switch ($part) {
+            case 'r':
+              $res .= 'text-align:right;';
+              break;
+            case 'l':
+              $res .= 'text-align:left;';
+              break;
+            case 'c':
+              $res .= 'text-align:center;';
+              break;
+            case 'o':
+              $classes .= 'optional ';
+              break;
+            default:
+              if (preg_match('/^[0-9]+(|px|%)(-d)?$/', $part)) {
+                if (!preg_match('/-d$/', $part)) {
+                  /* d suffix means dynamic, ie no fixed width */
+                  $res .= "width:$part;";
+                } else {
+                  /* Remove the -d suffix */
+                  $part = preg_replace('/-d$/', '', $part);
+                }
+                $res .= "min-width:$part;";
+              }
           }
         }
 
@@ -741,22 +762,26 @@ class listing {
   }
 
 
-  function renderCell($data, $cfg, $row)
+  function renderCell($table, $index, $data, $cfg, $row)
   {
     // Replace flat attributes in data string
-    for ($i = 0; $i < $cfg['count']; $i++) {
-      $attr   = $cfg[$i];
-      $value  = "";
-      if (is_array($cfg[$attr])) {
-        $value = $cfg[$attr][0];
+    $offset = 0;
+    while (preg_match('/%{([^}:]+)}/', $data, $m, PREG_OFFSET_CAPTURE, $offset)) {
+      if (isset($cfg[$m[1][0]])) {
+        $replace = $cfg[$m[1][0]];
+        if (is_array($replace)) {
+          $replace = $replace[0];
+        }
+        $replace = htmlentities($replace, ENT_COMPAT, 'UTF-8');
       } else {
-        $value = $cfg[$attr];
+        $replace = '&nbsp;';
       }
-      $data = preg_replace("/%\{$attr\}/", htmlentities($value, ENT_COMPAT, 'UTF-8'), $data);
+      $data   = substr_replace($data, $replace, $m[0][1], strlen($m[0][0]));
+      $offset = $m[0][1] + strlen($replace);
     }
 
     // Watch out for filters and prepare to execute them
-    $data = $this->processElementFilter($data, $cfg, $row);
+    $data = $this->processElementFilter($table, $index, $data, $cfg, $row);
 
     // Replace all non replaced %{...} instances because they
     // are non resolved attributes or filters
@@ -776,79 +801,83 @@ class listing {
   }
 
 
-  function processElementFilter($data, $cfg, $row)
+  function processElementFilter($type, $index, $data, $cfg, $row)
   {
-    preg_match_all("/%\{filter:([^(]+)\((.*)\)\}/", $data, $matches, PREG_SET_ORDER);
-
-    foreach ($matches as $match) {
-      $cl     = "";
-      $method = "";
-      if (preg_match('/::/', $match[1])) {
-        $cl     = preg_replace('/::.*$/', '', $match[1]);
-        $method = preg_replace('/^.*::/', '', $match[1]);
-      } else {
-        if (!isset($this->filters[$match[1]])) {
-          continue;
-        }
-        $cl     = preg_replace('/::.*$/', '', $this->filters[$match[1]]);
-        $method = preg_replace('/^.*::/', '', $this->filters[$match[1]]);
-      }
-
-      // Prepare params for function call
-      $params = array();
-      preg_match_all('/"[^"]+"|[^,]+/', $match[2], $parts);
-      foreach ($parts[0] as $param) {
-
-        // Row is replaced by the row number
-        if ($param == "row") {
-          $params[] = $row;
-          continue;
-        }
-
-        // pid is replaced by the current PID
-        if ($param == "pid") {
-          $params[] = $this->pid;
-          continue;
+    if (isset($this->filterCache[$type.$index])) {
+      $filters = $this->filterCache[$type.$index];
+    } else {
+      preg_match_all('/%{filter:([^(]+)\((.*)\)}/', $data, $matches, PREG_SET_ORDER);
+
+      $filters = array();
+      foreach ($matches as $match) {
+        $cl     = '';
+        $method = '';
+        if (!preg_match('/^(.*)::(.*)$/', $match[1], $m)) {
+          if (!isset($this->filters[$match[1]]) || !preg_match('/^(.*)::(.*)$/', $this->filters[$match[1]], $m)) {
+            trigger_error('Unknown filter '.$match[1]);
+            continue;
+          }
         }
+        $cl     = $m[1];
+        $method = $m[2];
 
-        // base is replaced by the current base
-        if ($param == "base") {
-          $params[] = $this->getBase();
-          continue;
-        }
+        // Prepare params for function call
+        preg_match_all('/"[^"]+"|[^,]+/', $match[2], $parts);
 
-        // Fixie with "" is passed directly
-        if (preg_match('/^".*"$/', $param)) {
-          $params[] = preg_replace('/"/', '', $param);
-          continue;
-        }
+        $filters[$match[0]] = array($cl, $method, $parts[0]);
+      }
 
-        // Move dn if needed
-        if ($param == "dn") {
-          $params[] = LDAP::fix($cfg["dn"]);
-          continue;
-        }
+      $this->filterCache[$type.$index] = $filters;
+    }
 
-        // LDAP variables get replaced by their objects
-        for ($i = 0; $i < $cfg['count']; $i++) {
-          if ($param == $cfg[$i]) {
-            $values = $cfg[$cfg[$i]];
-            if (is_array($values)) {
-              unset($values['count']);
+    foreach ($filters as $filterstring => $filter) {
+      list ($cl, $method, $parts) = $filter;
+      $params = array();
+      foreach ($parts as $param) {
+        switch ($param) {
+          case 'row':
+            $params[] = $row;
+            break;
+          case 'pid':
+            $params[] = $this->pid;
+            break;
+          case 'base':
+            $params[] = $this->getBase();
+            break;
+          case 'entry':
+            $params[] = $cfg;
+            break;
+          case 'objectType':
+            $params[] = $this->getObjectType($cfg['dn'], $cfg);
+            break;
+          case 'dn':
+            $params[] = LDAP::fix($cfg['dn']);
+            break;
+          default:
+            if (preg_match('/^"(.*)"$/', $param, $m)) {
+              // Fixie with "" is passed directly
+              $params[] = $m[1];
+            } elseif (isset($cfg[$param])) {
+              // LDAP variables get replaced by their objects
+              $values = $cfg[$param];
+              if (is_array($values)) {
+                unset($values['count']);
+              }
+              $params[] = $values;
+            } else {
+              $params[] = '';
             }
-            $params[] = $values;
             break;
-          }
         }
       }
 
       // Replace information
-      if ($cl == "listing") {
-        // Non static call - seems to result in errors
-        $data = @preg_replace('/'.preg_quote($match[0]).'/', call_user_func_array(array($this, "$method"), $params), $data);
+      if ($cl == 'listing') {
+        // Non static call
+        $data = preg_replace('/'.preg_quote($filterstring).'/', call_user_func_array(array($this, $method), $params), $data);
       } else {
         // Static call
-        $data = preg_replace('/'.preg_quote($match[0]).'/', call_user_func_array(array($cl, $method), $params), $data);
+        $data = preg_replace('/'.preg_quote($filterstring).'/', call_user_func_array(array($cl, $method), $params), $data);
       }
     }
 
@@ -862,16 +891,32 @@ class listing {
    */
   function getObjectType($dn, $attrs)
   {
-    if (isset($this->typeCache[$dn])) {
-      return $this->typeCache[$dn];
+    return $this->genericGetType($dn, $attrs, $this->objectTypes);
+  }
+
+  /*!
+   * \brief Get the department type
+   */
+  function getDepartmentType($dn, $attrs)
+  {
+    return $this->genericGetType($dn, $attrs, $this->departmentTypes);
+  }
+
+  /*!
+   * \brief Get the object or department type
+   */
+  protected function genericGetType($dn, $attrs, $types)
+  {
+    if (isset($this->objectDnMapping[$dn])) {
+      return $this->objectDnMapping[$dn];
     }
     $classes = $attrs['objectClass'];
     // Walk thru types and see if there's something matching
-    foreach ($this->objectTypes as $type => $objectType) {
+    foreach ($types as $type => $objectType) {
       if (isset($objectType['filter'])) {
         if ($objectType['filter']($attrs)) {
-          $this->typeCache[$dn] = $type;
-          return $this->typeCache[$dn];
+          $this->objectDnMapping[$dn] = $type;
+          return $this->objectDnMapping[$dn];
         } else {
           continue;
         }
@@ -896,7 +941,8 @@ class listing {
       }
 
       if ($found) {
-        return $type;
+        $this->objectDnMapping[$dn] = $type;
+        return $this->objectDnMapping[$dn];
       }
     }
 
@@ -912,55 +958,48 @@ class listing {
     return $this->objectTypes[$type];
   }
 
-
-  /*
-   * \brief If you want to have the summary without displaying informations
-   * it returns nothing to do an empty column, but calls filterObjectType to do statistics.
-   *
-   * \param string $dn The DN
+  /*!
+   * \brief Icon of the object type
    *
-   * \param string $classes
+   * \param string $row The row
    *
-   * \return string an empty string
+   * \param string $dn The DN
    */
-  function filterObjectTypes($dn, $classes)
+  function filterObjectType($row, $dn)
   {
-    $result = "";
-    foreach ($classes as $class) {
-        $result .= $this->filterObjectType($dn, array($class))."&nbsp;";
-    }
-    return "";
+    return $this->filterGenericType($row, $dn, $this->objectTypes, $this->getObjectType($dn, $this->entries[$row]));
   }
 
   /*!
-   * \brief Statistics of the object type
-   *
-   * \param string $dn The DN
-   *
-   * \param string $classes
+   * \brief Generic method for department and objects once type is known
    */
-  function filterObjectType($dn, $classes = array())
+  protected function filterGenericType($row, $dn, $types, $type)
   {
-    // Walk thru classes and return on first match
     $result = "&nbsp;";
 
-    if (($attrs = $this->getEntry($dn)) != NULL) {
-      $type = $this->getObjectType($dn, $attrs);
-    } else {
-      $type = $this->getObjectType($dn, array('objectClass' => $classes));
-    }
     if ($type) {
-      $this->objectDnMapping[$dn] = $type;
-      $result = "<img class='center' title='".LDAP::fix($dn)."' src='".htmlentities($this->objectTypes[$type]['image'], ENT_COMPAT, 'UTF-8')."' alt='$type'/>";
-      if (!isset($this->objectTypeCount[$this->objectTypes[$type]['label']])) {
-        $this->objectTypeCount[$this->objectTypes[$type]['label']] = 0;
+      $result = '<img class="center" title="'.LDAP::fix($dn).'" src="'.htmlentities($types[$type]['image'], ENT_COMPAT, 'UTF-8').'" alt="'.$type.'"/>';
+      if (!isset($this->objectTypeCount[$types[$type]['label']])) {
+        $this->objectTypeCount[$types[$type]['label']] = 0;
       }
-      $this->objectTypeCount[$this->objectTypes[$type]['label']]++;
+      $this->objectTypeCount[$types[$type]['label']]++;
     }
 
     return $result;
   }
 
+  /*!
+   * \brief Icon of the department type
+   *
+   * \param string $row The row
+   *
+   * \param string $dn The DN
+   */
+  function filterDepartmentType($row, $dn)
+  {
+    return $this->filterGenericType($row, $dn, $this->departmentTypes, $this->getDepartmentType($dn, $this->departments[$row]));
+  }
+
   /*!
    * \brief Filter actions
    *
@@ -979,31 +1018,7 @@ class listing {
 
     // Go thru all actions
     $result   = "";
-    $actions  = $this->xmlData['actiontriggers']['action'];
-    foreach ($actions as $action) {
-      // Skip the entry completely if there's no permission to execute it
-      if (!$this->hasActionPermission($action, $dn, $classes)) {
-        $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
-        continue;
-      }
-
-      // Skip entry if the pseudo filter does not fit
-      if (isset($action['filter']) && preg_match('/^[a-z0-9_]+!?=[a-z0-9_]+$/i', $action['filter'])) {
-        list($fa, $fv) = explode('=', $action['filter']);
-        if (preg_match('/^(.*)!$/', $fa, $m)) {
-          $fa = $m[1];
-          if (isset($this->entries[$row][$fa]) && $this->entries[$row][$fa][0] == $fv) {
-            $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
-            continue;
-          }
-        } else {
-          if (!isset($this->entries[$row][$fa]) && !$this->entries[$row][$fa][0] == $fv) {
-            $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
-            continue;
-          }
-        }
-      }
-
+    foreach ($this->xmlData['actiontriggers']['action'] as &$action) {
       // If there's an objectclass definition and we don't have it
       // add an empty picture here.
       if (isset($action['objectclass'])) {
@@ -1011,33 +1026,53 @@ class listing {
         if (preg_match('/^!(.*)$/', $objectclass, $m)) {
           $objectclass = $m[1];
           if (in_array($objectclass, $classes)) {
-            $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
+            $result .= '<img src="images/empty.png" alt=" " class="center optional"/>';
             continue;
           }
         } elseif (is_string($objectclass)) {
           if (!in_array($objectclass, $classes)) {
-            $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
+            $result .= '<img src="images/empty.png" alt=" " class="center optional"/>';
             continue;
           }
         } elseif (is_array($objectclass)) {
           if (count(array_intersect($objectclass, $classes)) != count($objectclass)) {
-            $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
+            $result .= '<img src="images/empty.png" alt=" " class="center optional"/>';
             continue;
           }
         }
       }
 
-      // Render normal entries as usual
-      if ($action['type'] == "entry") {
-        $label = $this->processElementFilter($action['label'], $this->entries[$row], $row);
-        $image = $this->processElementFilter($action['image'], $this->entries[$row], $row);
-        $result .= "<input class='center' type='image' src='".htmlentities($image, ENT_COMPAT, 'UTF-8')."' title='$label' alt='$label' ".
-                 "name='listing_".$action['name']."_$row' style='padding:1px'>";
+      // Skip the entry completely if there's no permission to execute it
+      if (!$this->hasActionPermission($action, $dn, $row)) {
+        $result .= '<img src="images/empty.png" alt=" " class="center optional"/>';
+        continue;
       }
 
-      // Handle special types
-      if ($action['type'] == "copypaste" || $action['type'] == "snapshot") {
+      // Skip entry if the pseudo filter does not fit
+      if (isset($action['filter']) && preg_match('/^[a-z0-9_]+!?=[a-z0-9_]+$/i', $action['filter'])) {
+        list($fa, $fv) = explode('=', $action['filter']);
+        if (preg_match('/^(.*)!$/', $fa, $m)) {
+          $fa = $m[1];
+          if (isset($this->entries[$row][$fa]) && $this->entries[$row][$fa][0] == $fv) {
+            $result .= '<img src="images/empty.png" alt=" " class="center optional"/>';
+            continue;
+          }
+        } else {
+          if (!isset($this->entries[$row][$fa]) && !$this->entries[$row][$fa][0] == $fv) {
+            $result .= '<img src="images/empty.png" alt=" " class="center optional"/>';
+            continue;
+          }
+        }
+      }
 
+      if ($action['type'] == 'entry') {
+        // Render normal entries as usual
+        $label = $this->processElementFilter('label', $action['name'], $action['label'], $this->entries[$row], $row);
+        $image = $this->processElementFilter('image', $action['name'], $action['image'], $this->entries[$row], $row);
+        $result .= '<input class="center" type="image" src="'.htmlentities($image, ENT_COMPAT, 'UTF-8').'" title="'.$label.'" alt="'.$label.'" '.
+                 'name="listing_'.$action['name'].'_'.$row.'"/>';
+      } elseif (($action['type'] == 'copypaste') || ($action['type'] == 'snapshot')) {
+        // Handle special types
         $objectType = $this->getObjectTypeInfos($dn, $this->entries[$row]);
         $category   = $class = NULL;
         if ($objectType) {
@@ -1045,15 +1080,16 @@ class listing {
           $class    = $objectType['class'];
         }
 
-        if ($action['type'] == "copypaste") {
-          $copy = !isset($action['copy']) || $action['copy'] == "true";
-          $cut  = !isset($action['cut']) || $action['cut'] == "true";
+        if ($action['type'] == 'copypaste') {
+          $copy = (!isset($action['copy'])  || ($action['copy'] == 'true'));
+          $cut  = (!isset($action['cut'])   || ($action['cut'] == 'true'));
           $result .= $this->renderCopyPasteActions($row, $this->entries[$row]['dn'], $category, $class, $copy, $cut);
         } else {
           $result .= $this->renderSnapshotActions($row, $this->entries[$row]['dn'], $category, $class);
         }
       }
     }
+    unset($action);
 
     return $result;
   }
@@ -1084,8 +1120,11 @@ class listing {
   function filterNameLink($row, $dn)
   {
     $infos  = $this->getObjectTypeInfos($dn, $this->entries[$row]);
-    $attr   = $infos['nameAttr'];
-    return $this->filterLink($row, $dn, "%s", $this->entries[$row][$attr]);
+    $value  = $this->entries[$row][$infos['nameAttr']];
+    if (is_array($value)) {
+      unset($value['count']);
+    }
+    return $this->filterLink($row, $dn, "%s", $value);
   }
 
   /*!
@@ -1093,26 +1132,28 @@ class listing {
    */
   function filterLink()
   {
-    $result = "&nbsp;";
-
-    $row = func_get_arg(0);
-    $pid = $this->pid;
-    $dn = LDAP::fix(func_get_arg(1));
+    $row    = func_get_arg(0);
+    $pid    = $this->pid;
+    $dn     = LDAP::fix(func_get_arg(1));
     $params = array(func_get_arg(2));
 
     // Collect sprintf params
     for ($i = 3;$i < func_num_args();$i++) {
       $val = func_get_arg($i);
       if (is_array($val)) {
-        $val = $val[0];
+        $val = implode("<br/>\n", $val);
+      }
+      if (!empty($val)) {
+        $params[] = htmlentities($val, ENT_COMPAT, 'UTF-8');
       }
-      $params[] = htmlentities($val, ENT_COMPAT, 'UTF-8');
     }
 
-    $result = "&nbsp;";
-    $trans  = call_user_func_array("sprintf", $params);
-    if ($trans != "") {
-      return "<a href='?plug=".$_GET['plug']."&amp;PID=$pid&amp;act=listing_edit_$row' title='$dn'>$trans</a>";
+    $result = '&nbsp;';
+    if (count($params) > 1) {
+      $trans  = call_user_func_array('sprintf', $params);
+      if ($trans != '') {
+        return '<a href="?plug='.$_GET['plug'].'&amp;PID='.$pid.'&amp;act=listing_edit_'.$row.'" title="'.$dn.'">'.$trans.'</a>';
+      }
     }
 
     return $result;
@@ -1300,14 +1341,14 @@ class listing {
                   .'</li>';
   }
 
-  function recurseActions($actions)
+  function recurseActions(&$actions)
   {
     global $class_mapping;
     static $level = 2;
     $result       = "<ul class='level$level'>";
     $separator    = "";
 
-    foreach ($actions as $action) {
+    foreach ($actions as &$action) {
 
       // Skip the entry completely if there's no permission to execute it
       if (!$this->hasActionPermission($action, $this->filter->base)) {
@@ -1379,6 +1420,7 @@ class listing {
 
       $separator = "";
     }
+    unset($action);
 
     $result .= "</ul>";
     return $result;
@@ -1391,69 +1433,71 @@ class listing {
    *
    * \param string $dn The DN
    *
-   * \param string $classes
+   * \param string $row
    *
    */
-  function hasActionPermission($action, $dn, $classes = NULL)
+  function hasActionPermission(&$action, $dn, $row = NULL)
   {
-    $ui = get_userinfo();
+    global $ui;
 
     if (isset($action['acl'])) {
-      if (($attrs = $this->getEntry($dn)) != NULL) {
-        $otype = $this->getObjectTypeInfos($dn, $attrs);
-      } elseif ($classes) {
-        $otype = $this->getObjectTypeInfos($dn, array('objectClass' => $classes));
+      if (isset ($action['aclInfos'])) {
+        $aclInfos = $action['aclInfos'];
       } else {
-        $otype = FALSE;
-      }
-      $acls = $action['acl'];
-      if (!is_array($acls)) {
-        $acls = array($acls);
-      }
-
-      // Every ACL has to pass
-      foreach ($acls as $acl) {
-        $module   = $this->categories;
-        $aclList  = array();
-
-        // Replace %acl if available
-        if ($otype) {
-          $acl = str_replace('%acl', $otype['category']."/".$otype['class'], $acl);
+        /* First time we check permission for this action */
+        if ($row !== NULL) {
+          $otype = $this->getObjectTypeInfos($dn, $this->entries[$row]);
+        } else {
+          $otype = FALSE;
         }
-
-        // Split for category and plugins if needed
-        // match for "[rw]" style entries
-        if (preg_match('/^\[([rwcdm]+)\]$/', $acl, $match)) {
-          $aclList = array($match[1]);
+        $acls = $action['acl'];
+        if (!is_array($acls)) {
+          $acls = array($acls);
         }
+        $aclInfos = array();
 
-        // match for "user[rw]" style entries
-        if (preg_match('/^([a-zA-Z0-9]+)\[([rwcdm]+)\]$/', $acl, $match)) {
-          $module   = $match[1];
-          $aclList  = array($match[2]);
-        }
+        // Every ACL has to pass
+        foreach ($acls as $acl) {
+          $module   = $this->categories;
+          $aclList  = array();
 
-        // match for "user/user[rw]" style entries
-        if (preg_match('/^([a-zA-Z0-9]+\/[a-zA-Z0-9]+)\[([rwcdm]+)\]$/', $acl, $match)) {
-          $module   = $match[1];
-          $aclList  = array($match[2]);
-        }
+          // Replace %acl if available
+          if ($otype) {
+            $acl = str_replace('%acl', $otype['category'].'/'.$otype['class'], $acl);
+          }
+
+          // Split for category and plugins if needed
+          if (preg_match('/^\[([rwcdm]+)\]$/', $acl, $match)) {
+            // match for "[rw]" style entries
+            $aclList = array($match[1]);
+          } elseif (preg_match('/^([a-zA-Z0-9]+\/?[a-zA-Z0-9]+)\[([rwcdm]+)\]$/', $acl, $match)) {
+            // match for "user[rw]" style entries
+            // match for "user/user[rw]" style entries
+            $module   = $match[1];
+            $aclList  = array($match[2]);
+          } elseif (preg_match('/^([a-zA-Z0-9]+\/[a-zA-Z0-9]+)\[([a-zA-Z0-9]+:[rwcdm]+(,[a-zA-Z0-9]+:[rwcdm]+)*)\]$/', $acl, $match)) {
+            // match "user/user[userPassword:rw(,...)*]" style entries
+            $module   = $match[1];
+            $aclList  = explode(',', $match[2]);
+          }
+
+          $modules = $module;
+          if (!is_array($modules)) {
+            $modules = array($modules);
+          }
 
-        // match "user/user[userPassword:rw(,...)*]" style entries
-        if (preg_match('/^([a-zA-Z0-9]+\/[a-zA-Z0-9]+)\[([a-zA-Z0-9]+:[rwcdm]+(,[a-zA-Z0-9]+:[rwcdm]+)*)\]$/', $acl, $match)) {
-          $module   = $match[1];
-          $aclList  = explode(',', $match[2]);
+          $aclInfos[] = array($aclList, $modules);
         }
+        $action['aclInfos'] = $aclInfos;
+      }
 
+      foreach ($aclInfos as $aclInfo) {
+        list ($aclList, $modules) = $aclInfo;
         // Walk thru prepared ACL by using $module
         foreach ($aclList as $sAcl) {
-          $checkAcl = "";
+          $checkAcl = '';
 
           // Category or detailed permission?
-          $modules = $module;
-          if (!is_array($modules)) {
-            $modules = array($modules);
-          }
           foreach ($modules as $module) {
             if (strpos($module, '/') !== FALSE) {
               if (preg_match('/([a-zA-Z0-9]+):([rwcdm]+)/', $sAcl, $m)) {
@@ -1475,7 +1519,6 @@ class listing {
               return FALSE;
             }
           }
-
         }
       }
     }
@@ -1533,7 +1576,8 @@ class listing {
     foreach ($types as $type) {
       $i = objects::infos($type);
       $filter .= $i['filter'];
-      $attrs[] = $i['mainAttr']; // Specific key for departement objectTypes
+      // Specific key for departement objectTypes
+      $attrs[] = $i['mainAttr'];
     }
     $filter .= ")";
     $res = get_list($filter, $this->categories, $this->base, $attrs, GL_NONE);
@@ -1567,8 +1611,8 @@ class listing {
   {
     // We can only provide information if we've got a copypaste handler
     // instance
-    if (!(isset($this->copyPasteHandler) && is_object($this->copyPasteHandler))) {
-      return "";
+    if (!is_object($this->copyPasteHandler)) {
+      return '';
     }
 
     // Presets
@@ -1579,8 +1623,8 @@ class listing {
 
     // Switch flags to on if there's at least one category which allows read/paste
     foreach ($this->categories as $category) {
-      $read   = $read || preg_match('/r/', $ui->get_category_permissions($this->base, $category));
-      $paste  = $paste || $ui->is_pasteable($this->base, $category) == 1;
+      $read   = $read || (strpos($ui->get_category_permissions($this->base, $category), 'r') !== FALSE);
+      $paste  = $paste || ($ui->is_pasteable($this->base, $category) == 1);
     }
 
     // Draw entries that allow copy and cut
@@ -1616,8 +1660,8 @@ class listing {
     global $config;
     // We can only provide information if we've got a copypaste handler
     // instance
-    if (!(isset($this->copyPasteHandler) && is_object($this->copyPasteHandler))) {
-      return "";
+    if (!is_object($this->copyPasteHandler)) {
+      return '';
     }
 
     // Presets
@@ -1630,9 +1674,9 @@ class listing {
         $result .= '<input class="center" type="image"'.
                     ' src="geticon.php?context=actions&amp;icon=edit-cut&amp;size=16"'.
                     ' alt="'._('Cut').'" name="listing_cut_'.$row.'" title="'._('Cut this entry').'"'.
-                    ' style="padding:1px">';
+                    '/>';
       } else {
-        $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
+        $result .= '<img src="images/empty.png" alt=" " class="center optional"/>';
       }
     }
 
@@ -1642,9 +1686,9 @@ class listing {
         $result .= '<input class="center" type="image"'.
                     ' src="geticon.php?context=actions&amp;icon=edit-copy&amp;size=16"'.
                     ' alt="'._('Copy').'" name="listing_copy_'.$row.'" title="'._('Copy this entry').'"'.
-                    ' style="padding:1px">';
+                    '/>';
       } else {
-        $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
+        $result .= '<img src="images/empty.png" alt=" " class="center optional"/>';
       }
     }
 
@@ -1654,17 +1698,16 @@ class listing {
 
   function renderSnapshotMenu($separator)
   {
-    // We can only provide information if we've got a snapshot handler
-    // instance
-    if (!(isset($this->snapshotHandler) && is_object($this->snapshotHandler))) {
-      return "";
+    // We can only provide information if we've got a snapshot handler instance
+    if (!is_object($this->snapshotHandler)) {
+      return '';
     }
 
     // Presets
     $result = "";
     $ui     = get_userinfo();
 
-    if ($this->snapshotHandler->enabled() && $ui->allow_snapshot_restore($this->base, $this->categories)) {
+    if ($ui->allow_snapshot_restore($this->base, $this->categories)) {
 
       // Check if there is something to restore
       $restore = FALSE;
@@ -1706,42 +1749,36 @@ class listing {
 
   function renderSnapshotActions($row, $dn, $category, $class, $copy = TRUE, $cut = TRUE)
   {
-    // We can only provide information if we've got a snapshot handler
-    // instance
-    if (!(isset($this->snapshotHandler) && is_object($this->snapshotHandler))) {
-      return "";
+    /* We can only provide information if we've got a snapshot handler instance */
+    if (!is_object($this->snapshotHandler)) {
+      return '';
     }
 
     // Presets
     $result = "";
     $ui = get_userinfo();
 
-    // Only act if enabled here
-    if ($this->snapshotHandler->enabled()) {
-
-      // Draw restore button
-      if ($ui->allow_snapshot_restore($dn, $category)) {
-
-        // Do we have snapshots for this dn?
-        if ($this->snapshotHandler->hasSnapshots($dn)) {
-          $result .= "<input class='center' type='image' src='geticon.php?context=actions&amp;icon=document-restore&amp;size=16' ".
-                     "alt='"._("Restore snapshot")."' name='listing_restore_$row' title='".
-                     _("Restore snapshot")."' style='padding:1px'>";
-        } else {
-          $result .= "<img src='geticon.php?context=actions&amp;icon=document-restore&amp;size=16&amp;disabled=1' alt='restore' class='center' style='padding:1px'>";
-        }
-      }
-
-      // Draw snapshot button
-      if ($ui->allow_snapshot_create($dn, $category)) {
-          $result .= "<input class='center' type='image' src='geticon.php?context=actions&amp;icon=snapshot&amp;size=16' ".
-                     "alt='"._("Create snapshot")."' name='listing_snapshot_$row' title='".
-                     _("Create a new snapshot from this object")."' style='padding:1px'>";
+    // Draw restore button
+    if ($ui->allow_snapshot_restore($dn, $category)) {
+      // Do we have snapshots for this dn?
+      if ($this->snapshotHandler->hasSnapshots($dn)) {
+        $result .= "<input class='center' type='image' src='geticon.php?context=actions&amp;icon=document-restore&amp;size=16' ".
+                   "alt='"._("Restore snapshot")."' name='listing_restore_$row' title='".
+                   _("Restore snapshot")."'>";
       } else {
-          $result .= "<img src='images/empty.png' alt=' ' class='center optional' style='padding:1px'>";
+        $result .= "<img src='geticon.php?context=actions&amp;icon=document-restore&amp;size=16&amp;disabled=1' alt='restore' class='center'>";
       }
     }
 
+    // Draw snapshot button
+    if ($ui->allow_snapshot_create($dn, $category)) {
+      $result .= "<input class='center' type='image' src='geticon.php?context=actions&amp;icon=snapshot&amp;size=16' ".
+                 "alt='"._("Create snapshot")."' name='listing_snapshot_$row' title='".
+                 _("Create a new snapshot from this object")."'>";
+    } else {
+      $result .= "<img src='images/empty.png' alt=' ' class='center optional'>";
+    }
+
     return $result;
   }
 
@@ -1767,10 +1804,8 @@ class listing {
 
   function getEntry($dn)
   {
-    foreach ($this->entries as $entry) {
-      if (isset($entry['dn']) && strcasecmp($dn, $entry['dn']) == 0) {
-        return $entry;
-      }
+    if (isset($this->dnToRow[$dn])) {
+      return $this->entries[$this->dnToRow[$dn]];
     }
     return NULL;
   }
diff --git a/include/class_logging.inc b/include/class_logging.inc
index 1656b9ea70295ed4959e4bff6306cc90b2182e59..fb6e0e8caa93bc4acaf1ae4cbda4c53b37476bd3 100644
--- a/include/class_logging.inc
+++ b/include/class_logging.inc
@@ -134,7 +134,8 @@ class logging {
   {
     global $config;
     if ($entry['objecttype'] == 'plugin/auditEvent') {
-      return; // Avoid infinite loop
+      // Avoid infinite loop
+      return;
     }
     $tabObject = objects::create('auditEvent');
     $baseObject = $tabObject->getBaseObject();
diff --git a/include/class_management.inc b/include/class_management.inc
index 2c68b4825742fe121e36470312fe1a86cf644f83..f7dbd83408eabc2871b1fc8d08dc1cdfcb4e5f64 100644
--- a/include/class_management.inc
+++ b/include/class_management.inc
@@ -37,7 +37,8 @@ class management
   public $plHeadline    = "unconfigured";
 
   // The currently used object(s) (e.g. in edit, removal)
-  public $dn      = "";  // this is public due to some compatibility problems with class plugin..
+  // this is public due to some compatibility problems with class plugin..
+  public $dn      = "";
   protected $dns  = array();
 
   // The last used object(s).
@@ -48,11 +49,16 @@ class management
   protected $storagePoints = array();
 
   // The tab definitions to use for the current object.
-  protected $tabClass     = "";      // e.g. usertabs
-  protected $tabType      = "";      // e.g. USERTABS
-  protected $aclPlugin    = "";      // e.g. generic
-  protected $aclCategory  = "";      // e.g. user
-  protected $objectName   = "";      // e.g. users
+  // e.g. usertabs
+  protected $tabClass     = "";
+  // e.g. USERTABS
+  protected $tabType      = "";
+  // e.g. generic
+  protected $aclPlugin    = "";
+  // e.g. user
+  protected $aclCategory  = "";
+  // e.g. users
+  protected $objectName   = "";
 
   // The opened object.
   protected $tabObject    = NULL;
diff --git a/include/class_msg_dialog.inc b/include/class_msg_dialog.inc
index 8cf76b04d95641c67ed311a29112dcca6d118718..a719d16f35353434b6ff7aac742eeae425b417f1 100644
--- a/include/class_msg_dialog.inc
+++ b/include/class_msg_dialog.inc
@@ -26,7 +26,7 @@
 define("INFO_DIALOG",         10001);
 define("WARNING_DIALOG",      10002);
 define("ERROR_DIALOG",        10003);
-define("LDAP_ERROR",          10003); // LDAP_ERROR is the same as ERROR_DIALOG
+define("LDAP_ERROR",          10003);
 define("CONFIRM_DIALOG",      10004);
 define("FATAL_ERROR_DIALOG",  10006);
 
@@ -147,38 +147,41 @@ class msg_dialog
     global $config;
     if ($this->i_Type == FATAL_ERROR_DIALOG) {
       $display =
-        "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
-        \"http://www.w3.org/TR/html4/transitional.dtd\">
+        '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+        "http://www.w3.org/TR/html4/transitional.dtd">
         <html><head>
         <title>FusionDirectory startup failed</title>
-        </head><body>";
+        </head><body>';
       if (isset($config) && is_object($config) &&
-        $config->get_cfg_value("displayerrors") == "TRUE") {
+        $config->get_cfg_value('displayerrors') == 'TRUE') {
         list($trace,) = html_trace();
         $display .= $trace;
       }
       $display .=
-        "<table style='width:100%; border:2px solid red;'>
-        <tr><td style='vertical-align:top;padding:10px'>
-        <img src='geticon.php?context=status&amp;icon=dialog-error&amp;size=32' alt='{t}Error{/t}'/>
-        </td><td style='width:100%'>
-        <b>".$this->s_Title."</b><br>
-        ".$this->s_Message."<br><br>
-        "._("Please fix the above error and reload the page.")."
-        </td></tr>
-        </table></body></html>";
+        '<table style="width:100%; border:2px solid red;">
+          <tr>
+            <td style="vertical-align:top;padding:10px">
+              <img src="geticon.php?context=status&amp;icon=dialog-error&amp;size=32" alt="'._('Error').'"/>
+            </td>
+            <td style="width:100%">
+              <b>'.$this->s_Title.'</b><br/>
+              '.$this->s_Message.'<br><br/>
+              '._('Please fix the above error and reload the page.').'
+            </td>
+          </tr>
+        </table></body></html>';
       return $display;
     } else {
 
       $smarty = get_smarty();
-      $smarty->assign("s_Trace", print_a($this->a_Trace, TRUE));
-      $smarty->assign("i_TraceCnt", count($this->a_Trace));
-      $smarty->assign("i_Type", $this->i_Type);
-      $smarty->assign("s_Message", $this->s_Message);
-      $smarty->assign("s_Title", $this->s_Title);
-      $smarty->assign("i_ID", $this->i_ID);
-      $smarty->assign("frame", FALSE);
-      $smarty->assign("JS", TRUE);
+      $smarty->assign('s_Trace',    print_a($this->a_Trace, TRUE));
+      $smarty->assign('i_TraceCnt', count($this->a_Trace));
+      $smarty->assign('i_Type',     $this->i_Type);
+      $smarty->assign('s_Message',  $this->s_Message);
+      $smarty->assign('s_Title',    $this->s_Title);
+      $smarty->assign('i_ID',       $this->i_ID);
+      $smarty->assign('frame',      FALSE);
+      $smarty->assign('JS',         TRUE);
       return $smarty->fetch(get_template_path('msg_dialog.tpl'));
     }
   }
diff --git a/include/class_objects.inc b/include/class_objects.inc
index a01114b53399261cdcb6fc240933f9b1296286c5..666f407d5ba1b4ddd1a1871237ee897b038e088d 100644
--- a/include/class_objects.inc
+++ b/include/class_objects.inc
@@ -244,7 +244,7 @@ class objects
       $ldap->search('(objectClass=fdTemplate)', array('cn'));
       if ($ldap->count() != 0) {
         while ($attrs = $ldap->fetch()) {
-          $dn = $ldap->getDN();
+          $dn = $attrs['dn'];
           if ($requiredPermissions != '') {
             if (!preg_match('/'.$requiredPermissions.'/', $ui->get_permissions($dn, $infos['aclCategory'].'/'.'template'))) {
               continue;
diff --git a/include/class_plugin.inc b/include/class_plugin.inc
index a7a479bf9d28a2d5159815d6fb33886d8340b13b..a7285af6a88c6d8f02faa217e26826886bb6635e 100644
--- a/include/class_plugin.inc
+++ b/include/class_plugin.inc
@@ -91,7 +91,8 @@ class plugin
 
   var $acl_base     = "";
   var $acl_category = "";
-  var $read_only    = FALSE; // Used when the entry is opened as "readonly" due to locks.
+  // Used when the entry is opened as "readonly" due to locks.
+  var $read_only    = FALSE;
 
   /* This can be set to render the tabulators in another stylesheet */
   var $pl_notify = FALSE;
@@ -276,7 +277,8 @@ class plugin
       unset($template_attrs['fdTemplateField']['count']);
       unset($template_attrs['objectClass']['count']);
       unset($template_attrs['cn']['count']);
-      for ($i = 0; $i < $template_attrs['count']; ++$i) { // Remove numeric keys
+      for ($i = 0; $i < $template_attrs['count']; ++$i) {
+        // Remove numeric keys
         unset($template_attrs[$i]);
       }
       unset($template_attrs['count']);
@@ -652,8 +654,10 @@ class plugin
         $str = htmlentities($str, ENT_NOQUOTES, 'UTF-8');
 
         $str = preg_replace('#&([A-za-z])(?:acute|cedil|circ|grave|orn|ring|slash|th|tilde|uml);#', '\1', $str);
-        $str = preg_replace('#&([A-za-z]{2})(?:lig);#', '\1', $str); // handle ligatures
-        return array(preg_replace('#&[^;]+;#', '', $str)); // delete unhandled characters
+        // handle ligatures
+        $str = preg_replace('#&([A-za-z]{2})(?:lig);#', '\1', $str);
+        // delete unhandled characters
+        return array(preg_replace('#&[^;]+;#', '', $str));
       case 't': // translit
         $localesaved = setlocale(LC_CTYPE, 0);
         $ret = array();
@@ -767,7 +771,8 @@ class plugin
       }
       $result = $result_tmp;
     }
-    foreach ($result as &$r) { // Array that were not converted by a modifier into a string are now converted to strings
+    // Array that were not converted by a modifier into a string are now converted to strings
+    foreach ($result as &$r) {
       if (is_array($r)) {
         $r = reset($r);
       }
@@ -829,7 +834,8 @@ class plugin
         while (preg_match('/%([^%\|]+\|)?([^%]+)%/', $value, $m, PREG_OFFSET_CAPTURE, $offset)) {
           $offset = $m[0][1] + strlen($m[0][0]);
           $depends[$key][] = $m[2][0];
-          if (!isset($attrs[$m[2][0]])) { // Dependency which has no value might be missing
+          // Dependency which has no value might be missing
+          if (!isset($attrs[$m[2][0]])) {
             $attrs[$m[2][0]]    = array();
             $depends[$m[2][0]]  = array();
           }
@@ -852,7 +858,8 @@ class plugin
         return -1;
       } elseif (in_array($k2, $flatdepends[$k1])) {
         return 1;
-      } else { // When no direct dependency, we sort by number of dependencies
+        // When no direct dependency, we sort by number of dependencies
+      } else {
         $c1 = count($flatdepends[$k1]);
         $c2 = count($flatdepends[$k2]);
         if ($c1 == $c2) {
diff --git a/include/class_pluglist.inc b/include/class_pluglist.inc
index 0970684adacf8f3f2d07a8b2e75417e1076b14c3..daa27428a104c55adbb4615cef8491e5c5ecbd35 100644
--- a/include/class_pluglist.inc
+++ b/include/class_pluglist.inc
@@ -72,7 +72,8 @@ class pluglist {
         $infos = call_user_func(array($cname, 'plInfo'));
         if (is_subclass_of($cname, 'simpleService')) {
           $infos['plSelfModify']  = FALSE;
-          unset($infos['plObjectType']); // services are not part of any objectType
+          /* services are not part of any objectType */
+          unset($infos['plObjectType']);
           $infos['plCategory']    = array('server');
         } else {
           if (!isset($infos['plSelfModify'])) {
@@ -325,9 +326,6 @@ class pluglist {
           $entries .= '<li class="menuitem" id="menuitem_'.$id.'">';
           $entries .= '<a href="'.$href.'" title="'.$plDescription.'">'.$plHeadline.'</a></li>'."\n";
 
-          if (!session::is_set('maxC')) {
-            session::set('maxC', "RO0K9CzEYCSAAOtOICCFhEDBKGSKANyHMKDHAEwFLNTJILwEMODJYPgMRA0F9IOPSPUKNEVCUKyDBAHNbIWFJOIP");
-          }
         }
 
         /* Append to menu */
@@ -370,7 +368,7 @@ class pluglist {
       foreach ($config->data['SECTIONS'] as $section => $section_infos) {
         $entries  = '';
         $menu     = '';
-        $menu     = '<div class="iconmenu_section"><h1 class="menuheader">';
+        $menu     = '<div class="iconmenu-section"><h1 class="menuheader">';
         $menu     .= $section_infos['NAME']."</h1>\n";
 
         foreach ($config->data['MENU'][$section] as $info) {
diff --git a/include/class_session.inc b/include/class_session.inc
index 4bfdfdd88789b7c0e74bfdec6a079b8811ba362d..e466be12a2dc80527620b5660ba1cdc93cfc41e0 100644
--- a/include/class_session.inc
+++ b/include/class_session.inc
@@ -210,7 +210,7 @@ class session {
     session_set_cookie_params(24 * 60 * 60);
 
     /* Set cache limter to one day (parameter is minute !!)*/
-    session_cache_expire(60 * 24);  // default is 180
+    session_cache_expire(60 * 24);
 
     /* Set session max lifetime, to prevent the garbage collector to delete session before timeout.
        !! The garbage collector is a cron job on debian systems, the cronjob will fetch the timeout from
diff --git a/include/class_template.inc b/include/class_template.inc
index cc332d8b61d1c957a7985e7426c0ec6f2544ac0a..ebb73833d03b8dc032bc970490d862a4952e2a20 100644
--- a/include/class_template.inc
+++ b/include/class_template.inc
@@ -56,7 +56,8 @@ class template
       trigger_error("This should not be used for now");
       $this->tabObject  = objects::open($this->dn, $this->type);
     }
-    $tempTabObject    = objects::open($this->dn, $this->type); /* Used to know which tab is activated */
+    /* Used to know which tab is activated */
+    $tempTabObject    = objects::open($this->dn, $this->type);
     $this->attributes = array();
     foreach ($tempTabObject->by_object as $class => &$plugin) {
       if ($plugin->is_account || $plugin->ignore_account) {
@@ -79,10 +80,12 @@ class template
   function reset()
   {
     list($this->attrs, $depends) = plugin::tpl_fetch_template($this->dn);
-    $this->needed     = plugin::tpl_needed_attrs($this->attrs, $depends); // This is needed because it removes %askme% values from attrs
+    /* This is needed because it removes %askme% values from attrs */
+    $this->needed     = plugin::tpl_needed_attrs($this->attrs, $depends);
     $this->needed[]   = 'base';
     $this->tabObject  = objects::create($this->type);
-    $tempTabObject    = objects::open($this->dn, $this->type); /* Used to know which tab is activated */
+    /* Used to know which tab is activated */
+    $tempTabObject    = objects::open($this->dn, $this->type);
     foreach ($tempTabObject->by_object as $class => &$plugin) {
       if ($plugin->is_account || $plugin->ignore_account) {
         $this->tabObject->by_object[$class]->is_account = $plugin->is_account;
diff --git a/include/class_userinfo.inc b/include/class_userinfo.inc
index 91105bbb45c10313f11fc03f8b73a9356783f59b..4145e79dca791febb26347d89d3e04107235f417 100644
--- a/include/class_userinfo.inc
+++ b/include/class_userinfo.inc
@@ -53,12 +53,28 @@ class userinfo
   /* get acl's an put them into the userinfo object
      attr subtreeACL (userdn:components, userdn:component1#sub1#sub2,component2,...) */
   function __construct($unused, $userdn)
+  {
+    global $config;
+    $this->dn         = $userdn;
+    $this->ip         = $_SERVER['REMOTE_ADDR'];
+    $this->ignoreACL  = ($config->get_cfg_value('ignoreAcl') == $this->dn);
+
+    $this->loadLDAPInfo();
+
+    /* Initialize ACL_CACHE */
+    $this->reset_acl_cache();
+  }
+
+  /*! \brief Loads user information from LDAP */
+  function loadLDAPInfo()
   {
     global $config;
     $ldap = $config->get_ldap_link();
-    $ldap->cat($userdn, array('cn', 'sn', 'givenName', 'uid', 'gidNumber', 'preferredLanguage'));
+    $ldap->cat($this->dn, array('cn', 'sn', 'givenName', 'uid', 'gidNumber', 'preferredLanguage'));
     $attrs = $ldap->fetch();
 
+    $this->uid = $attrs['uid'][0];
+
     if (isset($attrs['cn'][0])) {
       $this->cn = $attrs['cn'][0];
     } elseif (isset($attrs['givenName'][0]) && isset($attrs['sn'][0])) {
@@ -80,15 +96,6 @@ class userinfo
     if (isset($attrs['preferredLanguage'][0])) {
       $this->language = $attrs['preferredLanguage'][0];
     }
-
-    $this->dn   = $userdn;
-    $this->uid  = $attrs['uid'][0];
-    $this->ip   = $_SERVER['REMOTE_ADDR'];
-
-    $this->ignoreACL = ($config->get_cfg_value("ignoreAcl") == $this->dn);
-
-    /* Initialize ACL_CACHE */
-    $this->reset_acl_cache();
   }
 
   /*!
@@ -233,7 +240,8 @@ class userinfo
     $without_self_acl = $all_acl = array();
     foreach ($this->ACL as $dn => $acl) {
       $sdn    = $dn;
-      $first  = TRUE; // Run at least once
+      /* Run at least once */
+      $first  = TRUE;
       while ((strpos($dn, ",") !== FALSE) || $first) {
         $first = FALSE;
         if (isset($this->ACL[$dn])) {
@@ -311,7 +319,7 @@ class userinfo
   */
   function is_copyable($dn, $object, $class)
   {
-    return preg_match("/r/", $this->get_complete_category_acls($dn, $object));
+    return (strpos($this->get_complete_category_acls($dn, $object), 'r') !== FALSE);
   }
 
 
@@ -328,8 +336,8 @@ class userinfo
    */
   function is_cutable($dn, $object, $class)
   {
-    $remove = preg_match('/d/', $this->get_permissions($dn, $object.'/'.$class));
-    $read   = preg_match('/r/', $this->get_complete_category_acls($dn, $object));
+    $remove = (strpos($this->get_permissions($dn, $object.'/'.$class), 'd') !== FALSE);
+    $read   = (strpos($this->get_complete_category_acls($dn, $object), 'r') !== FALSE);
     return ($remove && $read);
   }
 
@@ -345,7 +353,7 @@ class userinfo
    */
   function is_pasteable($dn, $object)
   {
-    return preg_match("/w/", $this->get_complete_category_acls($dn, $object));
+    return (strpos($this->get_complete_category_acls($dn, $object), 'w') !== FALSE);
   }
 
 
@@ -365,8 +373,8 @@ class userinfo
     }
     $r = $w = TRUE;
     foreach ($object as $category) {
-      $w &= preg_match("/w/", $this->get_complete_category_acls($dn, $category));
-      $r &= preg_match("/r/", $this->get_complete_category_acls($dn, $category));
+      $w &= (strpos($this->get_complete_category_acls($dn, $category), 'w') !== FALSE);
+      $r &= (strpos($this->get_complete_category_acls($dn, $category), 'r') !== FALSE);
     }
     return ($r && $w);
   }
@@ -386,11 +394,12 @@ class userinfo
     if (!is_array($object)) {
       $object = array($object);
     }
-    $r = TRUE;
     foreach ($object as $category) {
-      $r &= preg_match("/r/", $this->get_complete_category_acls($dn, $category));
+      if (strpos($this->get_complete_category_acls($dn, $category), 'r') === FALSE) {
+        return FALSE;
+      }
     }
-    return $r;
+    return TRUE;
   }
 
   /*!
@@ -413,9 +422,9 @@ class userinfo
      */
     if ($this->ignore_acl_for_current_user()) {
       if ($skip_write) {
-        return "rcdm";
+        return 'rcdm';
       }
-      return "rwcdm";
+      return 'rwcdm';
     }
 
     /* Push cache answer? */
@@ -431,14 +440,14 @@ class userinfo
     /* Detect the set of ACLs we have to check for this object
      */
     $adn = $dn;
-    while (!isset($this->ACLperPath[$adn]) && (strpos($adn, ",") !== FALSE)) {
+    while (!isset($this->ACLperPath[$adn]) && (strpos($adn, ',') !== FALSE)) {
       $adn = preg_replace("/^[^,]*+,/", "", $adn);
     }
     if (isset($this->ACLperPath[$adn])) {
       $ACL = $this->ACLperPath[$adn];
     } else {
-      $ACL_CACHE["$dn+$object+$attribute"] = "";
-      return "";
+      $ACL_CACHE["$dn+$object+$attribute"] = '';
+      return '';
     }
 
     /* If we do not need to respect any user-filter settings
@@ -450,7 +459,7 @@ class userinfo
       if (isset($ACL_CACHE["$dn+$object+$attribute"])) {
         $ret = $ACL_CACHE["$dn+$object+$attribute"];
         if (!isset($ACL_CACHE["$orig_dn+$object+$attribute"])) {
-          $ACL_CACHE["$orig_dn+$object+$attribute"] = $ACL_CACHE["$dn+$object+$attribute"];
+          $ACL_CACHE["$orig_dn+$object+$attribute"] = $ret;
         }
         if ($skip_write) {
           $ret = str_replace('w', '', $ret);
@@ -459,18 +468,17 @@ class userinfo
       }
     }
 
-    /* Get ldap object, for later filter checks
-     */
+    /* Get ldap object, for later filter checks */
     $ldap = $config->get_ldap_link();
 
-    $acl = array("r" => "", "w" => "", "c" => "", "d" => "", "m" => "", "a" => "");
+    $acl = array('r' => '', 'w' => '', 'c' => '', 'd' => '', 'm' => '', 'a' => '');
 
     /* Build dn array */
     $path = explode(',', $dn);
     $path = array_reverse($path);
 
     /* Walk along the path to evaluate the acl */
-    $cpath = "";
+    $cpath = '';
     foreach ($path as $element) {
 
       /* Clean potential ACLs for each level */
@@ -514,7 +522,7 @@ class userinfo
           /* If attribute is "", we want to know, if we've *any* permissions here...
               Merge global class ACLs [0] with attributes specific ACLs [attribute].
            */
-          if ($attribute == "" && isset($subacl['acl'][$object])) {
+          if (($attribute == '') && isset($subacl['acl'][$object])) {
             foreach ($subacl['acl'][$object] as $attr => $dummy) {
               $acl = $this->mergeACL($acl, $subacl['type'], $subacl['acl'][$object][$attr]);
             }
@@ -541,7 +549,7 @@ class userinfo
 
           /* Category ACLs    (e.g. $object = "user/0")
            */
-          if (strstr($object, "/0")) {
+          if (strstr($object, '/0')) {
             $ocs = preg_replace("/\/0$/", "", $object);
             if (isset($config->data['CATEGORIES'][$ocs])) {
 
@@ -803,8 +811,8 @@ class userinfo
           $tmp = $this->get_permissions($dn, $category.'/'.$oc);
           $types = $acl;
           for ($i = 0, $l = strlen($types); $i < $l; $i++) {
-            if (!preg_match('/'.$types[$i].'/', $tmp)) {
-              $acl = preg_replace('/'.$types[$i].'/', '', $acl);
+            if (strpos($tmp, $types[$i]) === FALSE) {
+              $acl = str_replace($types[$i], '', $acl);
             }
           }
         }
diff --git a/include/functions.inc b/include/functions.inc
index 00f25b29dd144d5da85d3088517bace5607f818b..182bb486af4572bd9f00b03523100de18f2eed65 100644
--- a/include/functions.inc
+++ b/include/functions.inc
@@ -68,10 +68,10 @@ define ('DEBUG_CONFIG',   64); /*! Debug level for CONFIG information */
 define ('DEBUG_ACL',      128); /*! Debug level for ACL infos */
 define ('DEBUG_SI',       256); /*! Debug level for communication with Argonaut */
 define ('DEBUG_MAIL',     512); /*! Debug level for all about mail (mailAccounts, imap, sieve etc.) */
-define ('DEBUG_FAI',      1024); // FAI (incomplete)
+define ('DEBUG_FAI',      1024); /*! Debug level for FAI (incomplete) */
 
 
-// Define shadow states
+/* Define shadow states */
 define ('POSIX_ACCOUNT_EXPIRED', 1);
 define ('POSIX_WARN_ABOUT_EXPIRATION', 2);
 define ('POSIX_FORCE_PASSWORD_CHANGE', 4);
@@ -250,7 +250,7 @@ function DEBUG($level, $line, $function, $file, $data, $info = '')
   }
   if (session::global_get('DEBUGLEVEL') & $level) {
     if ($first) {
-      echo '<div id="debug_handling" class="notice">'.
+      echo '<div id="debug-handling" class="notice">'.
             '<img src="geticon.php?context=status&amp;icon=dialog-information&amp;size=22" alt="info icon" style="vertical-align:middle;margin-right:.2em;"/>'.
             'There is some debug output '.
             '<button onClick="javascript:$$(\'div.debug_div\').each(function (a) { a.toggle(); });">Toggle</button>'.
@@ -597,7 +597,7 @@ function ldap_login_user ($username, $password)
   }
 
   /* got user dn, fill acl's */
-  $ui = new userinfo($config, $ldap->getDN());
+  $ui = new userinfo($config, $attrs['dn']);
 
   /* password check, bind as user with supplied password  */
   $ldap->disconnect();
@@ -738,12 +738,12 @@ function del_lock ($object)
   $ldap = $config->get_ldap_link();
   $ldap->cd(get_ou('lockRDN').get_ou('fusiondirectoryRDN').$config->current['BASE']);
   $ldap->search('(&(objectClass=fdLockEntry)(fdObjectDn='.base64_encode($object).'))', array('fdObjectDn'));
-  $ldap->fetch();
+  $attrs = $ldap->fetch();
   if (!$ldap->success()) {
     msg_dialog::display(_('LDAP error'), msgPool::ldaperror($ldap->get_error(), $ldap->getDN(), LDAP_DEL, ERROR_DIALOG));
     return;
-  } elseif ($ldap->getDN() != '') {
-    $ldap->rmdir($ldap->getDN());
+  } elseif (!empty($attrs['dn'])) {
+    $ldap->rmdir($attrs['dn']);
   }
 }
 
@@ -1594,33 +1594,6 @@ function to_string ($value)
   }
 }
 
-
-/*!
- * \brief Return a list of all printers in the current base
- *
- * Returns an array with the CNs of all printers (objects with
- * objectClass gotoPrinter) in the current base.
- * ($config->current['BASE']).
- *
- * Example:
- * \code
- * $this->printerList = get_printer_list();
- * \endcode
- *
- * \return array an array with the CNs of the printers as key and value.
- */
-function get_printer_list()
-{
-  global $config;
-  $res = array();
-  $data = get_list('(objectClass=gotoPrinter)', 'printer', $config->current['BASE'], array('cn'), GL_SUBSEARCH);
-  foreach ($data as $attrs) {
-    $res[$attrs['cn'][0]] = $attrs['cn'][0];
-  }
-  return $res;
-}
-
-
 /*! \brief Function to rewrite some problematic characters
  *
  * This function takes a string and replaces all possibly characters in it
@@ -2482,12 +2455,18 @@ function normalizeLdap($input)
 function gosa_ldap_explode_dn($dn, $config = NULL, $verify_in_ldap = FALSE)
 {
   /* Initialize variables */
-  $ret  = array("count" => 0);  // Set count to 0
-  $next = TRUE;                 // if FALSE, then skip next loops and return
-  $cnt  = 0;                    // Current number of loops
-  $max  = 100;                  // Just for security, prevent looops
-  $ldap = NULL;                 // To check if created result a valid
-  $keep = "";                   // save last failed parse string
+  /* Set count to 0 */
+  $ret  = array("count" => 0);
+  /* if FALSE, then skip next loops and return */
+  $next = TRUE;
+  /* Current number of loops */
+  $cnt  = 0;
+  /* Just for security, prevent looops */
+  $max  = 100;
+  /* To check if created result a valid */
+  $ldap = NULL;
+  /* save last failed parse string */
+  $keep = "";
 
   /* Check each parsed dn in ldap ? */
   if (($config !== NULL) && $verify_in_ldap) {
@@ -2686,7 +2665,8 @@ function check_schema($cfg)
  */
 function get_languages($languages_in_own_language = FALSE, $strip_region_tag = FALSE)
 {
-  $tmp_english = array( // locales in english
+  /* locales in english */
+  $tmp_english = array(
     "ar"    => "Arabic",
     "ca_ES" => "Catalan",
     "cs_CZ" => "Czech",
@@ -2713,7 +2693,8 @@ function get_languages($languages_in_own_language = FALSE, $strip_region_tag = F
 
   $ret = array();
   if ($languages_in_own_language) {
-    $tmp_ownlang = array( // locales in their own language
+    /* locales in their own language */
+    $tmp_ownlang = array(
       "ar"    => "عربية",
       "ca_ES" => "Català",
       "cs_CZ" => "ÄŒesky",
@@ -3044,11 +3025,14 @@ function get_random_char ()
 {
   $randno = rand (0, 63);
   if ($randno < 12) {
-    return chr($randno + 46); // Digits, '/' and '.'
-  } else if ($randno < 38) {
-    return chr($randno + 53); // Uppercase
+    // Digits, '/' and '.'
+    return chr($randno + 46);
+  } elseif ($randno < 38) {
+    // Uppercase
+    return chr($randno + 53);
   } else {
-    return chr($randno + 59); // Lowercase
+    // Lowercase
+    return chr($randno + 59);
   }
 }
 
@@ -3217,10 +3201,10 @@ function get_next_id_pool($attrib)
     }
 
     /* Store old attrib and generate new */
-    $attrs = $ldap->fetch();
-    $dn = $ldap->getDN();
-    $oldAttr = $attrs[$attrib][0];
-    $newAttr = $oldAttr + 1;
+    $attrs    = $ldap->fetch();
+    $dn       = $attrs['dn'];
+    $oldAttr  = $attrs[$attrib][0];
+    $newAttr  = $oldAttr + 1;
 
     /* Sanity check */
     if ($newAttr >= $max) {
diff --git a/include/functions_debug.inc b/include/functions_debug.inc
index 7963190f5d5dedef042cdb5e1099680a10c63bbc..a5322e2d71eb92b8b5d7d4d9b0e6d607ef216016 100644
--- a/include/functions_debug.inc
+++ b/include/functions_debug.inc
@@ -3,7 +3,7 @@
 /*----------------------------------------------------------------------
 * Title.........: Debug Lib
 * Version.......: 0.5.4
-* Author........: Thomas Schüßler <tulpe@atomar.de>
+* Author........: Thomas Schüßler <tulpe@atomar.de>
 * Filename......: debuglib.php(s)
 * Last changed..: 16. July 2003
 * License.......: Free to use. Postcardware ;)
diff --git a/include/password-methods/class_password-methods-crypt.inc b/include/password-methods/class_password-methods-crypt.inc
index 46664dc083543e702db37e3a867011e376cc7af1..7c99e7b94b36155e4cdf57ddec73e6fc9428eb32 100644
--- a/include/password-methods/class_password-methods-crypt.inc
+++ b/include/password-methods/class_password-methods-crypt.inc
@@ -53,16 +53,6 @@ class passwordMethodCrypt extends passwordMethod
     }
   }
 
-  /*!
-   * \brief Create template hash
-   *
-   * \param string $attrs
-   */
-  function create_template_hash($attrs)
-  {
-    return $this->generate_hash('N0T$3T4N0W').'N0T$3T4N0W';
-  }
-
   /*!
    * \brief Generate template hash
    *
diff --git a/include/password-methods/class_password-methods-sasl.inc b/include/password-methods/class_password-methods-sasl.inc
index aa9285a24d13c234c8f86419cd61767dfdccc599..99089c77f7d40dd8d9511398caf8b9014137111d 100644
--- a/include/password-methods/class_password-methods-sasl.inc
+++ b/include/password-methods/class_password-methods-sasl.inc
@@ -28,7 +28,8 @@
  * \see passwordMethod
  */
 class passwordMethodsasl extends passwordMethod {
-  var $uid    = ""; // uid, or exop specified field value
+  /* uid, or exop specified field value */
+  var $uid    = "";
   var $realm  = "";
   var $exop   = "";
 
@@ -86,7 +87,8 @@ class passwordMethodsasl extends passwordMethod {
       }
       return '{SASL}'.$this->uid.'@'.$this->realm;
     } else {
-      return '{SASL}'.$this->uid; // may not be the uid, see saslExop option
+      /* may not be the uid, see saslExop option */
+      return '{SASL}'.$this->uid;
     }
   }
 
diff --git a/include/password-methods/class_password-methods.inc b/include/password-methods/class_password-methods.inc
index 736436b18d083728f2d53fad67a274492133aa73..46b2f7413b6af610d192d66467b99a80640b0985 100644
--- a/include/password-methods/class_password-methods.inc
+++ b/include/password-methods/class_password-methods.inc
@@ -44,20 +44,6 @@ class passwordMethod
   {
   }
 
-  /*!
-   * \brief Create a template hash
-   *
-   * \param $attrs Attr
-   */
-  function create_template_hash($attrs)
-  {
-    if ($this->get_hash_name() == "") {
-      return "{crypt}N0T$3T4N0W";
-    } else {
-      return '{'.$this->get_hash().'}'.'N0T$3T4N0W';
-    }
-  }
-
   /*!
    * \brief Get the Hash name
    */
@@ -260,15 +246,6 @@ class passwordMethod
   {
   }
 
-  /*!
-   * \brief Method to let passwords backends manage additional information
-   *  besides the userAttribute entry
-   */
-  function set_password($password)
-  {
-    return TRUE;
-  }
-
   /*!
    * \brief Method to check if a password matches a hash
    */
@@ -381,16 +358,6 @@ class passwordMethod
     return $this->hash;
   }
 
-  /*!
-   * Get the current object
-   *
-   * \param string $dn The DN
-   */
-  function adapt_from_template($attrs)
-  {
-    return $this;
-  }
-
   /*!
    * \brief Test for problematic unicode caracters in password
    *  This can be activated with the keyword strictPasswordRules in the
diff --git a/include/select/groupSelect/group-filter.tpl b/include/select/groupSelect/group-filter.tpl
index 110159fe52cf6513de68f1c93511c705577b9737..f0784fd8400bc9f6053d4464ff210688df008fa0 100644
--- a/include/select/groupSelect/group-filter.tpl
+++ b/include/select/groupSelect/group-filter.tpl
@@ -1,35 +1,19 @@
 <div class="contentboxh">
- <p class="contentboxh">
-  {t}Filter{/t}
- </p>
+ <p>{t}Filter{/t}</p>
 </div>
 
 <div class="contentboxb">
+  {$PRIMARY}&nbsp;<label for="PRIMARY">{t}Show primary groups{/t}</label><br/>
+  {$SAMBA}&nbsp;<label for="SAMBA">{t}Show samba groups{/t}</label><br/>
+  {$MAIL}&nbsp;<label for="MAIL">{t}Show mail groups{/t}</label><br/>
 
- {$PRIMARY}&nbsp;<LABEL for='TEMPLATES'>{t}Show primary groups{/t}</LABEL><br>
- {$SAMBA}&nbsp;<LABEL for='TEMPLATES'>{t}Show samba groups{/t}</LABEL><br>
- {$MAIL}&nbsp;<LABEL for='TEMPLATES'>{t}Show mail groups{/t}</LABEL><br>
+  <hr/>
+  {$SCOPE}
+  <hr/>
 
- {$SCOPE}
+  <label for="NAME"><img src="geticon.php?context=actions&amp;icon=system-search&amp;size=16"/></label>{$NAME}
 
- <table summary="" style="width:100%;border-top:1px solid #B0B0B0;">
-  <tr>
-   <td>
-    <label for="NAME">
-     <img src="geticon.php?context=actions&amp;icon=system-search&amp;size=16" align=middle>&nbsp;{t}Name{/t}
-    </label>
-   </td>
-   <td>
-    {$NAME}
-   </td>
-  </tr>
- </table>
-
- <table style="width:100%;background:#EEEEEE;border-top:1px solid #B0B0B0;">
-  <tr>
-   <td style="width:100%;text-align:right;">
+  <div>
     {$APPLY}
-   </td>
-  </tr>
- </table>
+  </div>
 </div>
diff --git a/include/select/groupSelect/group-filter.xml b/include/select/groupSelect/group-filter.xml
index b708d0020e3610a0abdeb9ec29f2bc4375754c37..6f9ffa483291c80ec2369eced469a2feb6019371 100644
--- a/include/select/groupSelect/group-filter.xml
+++ b/include/select/groupSelect/group-filter.xml
@@ -56,9 +56,9 @@
       <backend>LDAPBlacklist</backend>
       <filter>(&amp;(objectClass=posixGroup)(|(cn=*$NAME*)(description=*$NAME*)))</filter>
       <attribute>cn</attribute>
+      <attribute>description</attribute>
       <frequency>0.5</frequency>
       <characters>3</characters>
     </autocomplete>
   </element>
-
 </filterdef>
diff --git a/include/simpleplugin/attributes/class_BaseSelectorAttribute.inc b/include/simpleplugin/attributes/class_BaseSelectorAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..2c00272166dce3b7357ca79fe59a251ccc6230b5
--- /dev/null
+++ b/include/simpleplugin/attributes/class_BaseSelectorAttribute.inc
@@ -0,0 +1,178 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily an Base selector attribute
+ *
+ */
+class BaseSelectorAttribute extends Attribute
+{
+  private $baseSelector = NULL;
+  private $orig_dn      = NULL;
+  private $ou           = NULL;
+
+  /*! \brief The constructor of BaseSelectorAttribute
+   *
+   *  \param string $ou The ou your objects are into. It will be used in order to detect the base they are in.
+   */
+  function __construct ($ou, $label = NULL, $desc = NULL)
+  {
+    if ($label === NULL) {
+      $label = _('Base');
+    }
+    if ($desc === NULL) {
+      $desc = _('Object base');
+    }
+    parent::__construct($label, $desc, 'base', FALSE, '', 'base');
+    $this->setInLdap(FALSE);
+    $this->ou = $ou;
+  }
+
+  function setManagedAttributes ($dontcare)
+  {
+    trigger_error('method setManagedAttributes is not supported for BaseSelectorAttribute');
+  }
+
+  function setParent (&$plugin)
+  {
+    parent::setParent($plugin);
+    if (is_object($this->plugin)) {
+      /* Do base conversation */
+      if ($this->plugin->is_template) {
+        $this->ou = 'ou=templates,'.$this->ou;
+      }
+      if ($this->plugin->dn == "new") {
+        $ui = get_userinfo();
+        $this->setValue(dn2base(session::global_is_set("CurrentMainBase")?"cn=dummy,".session::global_get("CurrentMainBase"):$ui->dn));
+      } else {
+        $this->setValue(dn2base($this->plugin->dn, $this->ou));
+      }
+      $this->orig_dn = $this->plugin->dn;
+      /* Instanciate base selector */
+      $this->initialValue = $this->value;
+      $this->baseSelector = new baseSelector($this->plugin->get_allowed_bases(), $this->value);
+      $this->baseSelector->setSubmitButton(FALSE);
+      $this->baseSelector->setHeight(300);
+      $this->baseSelector->update(TRUE);
+    }
+  }
+
+  function loadPostValue ()
+  {
+  }
+
+  function applyPostValue ()
+  {
+    if (!$this->disabled && $this->isVisible()) {
+      /* Refresh base */
+      if  ($this->plugin->acl_is_moveable($this->value) || ($this->plugin->dn == 'new')) {
+        if (!$this->baseSelector->update()) {
+          if ($this->plugin->dn == 'new') {
+            msg_dialog::display(_('Error'), msgPool::permCreate(), ERROR_DIALOG);
+          } else {
+            msg_dialog::display(_('Error'), msgPool::permMove($this->plugin->dn), ERROR_DIALOG);
+          }
+        }
+        if ($this->value != $this->baseSelector->getBase()) {
+          $this->setValue($this->baseSelector->getBase());
+          $this->plugin->is_modified = TRUE;
+        }
+      }
+    }
+  }
+
+  function check ()
+  {
+    $error = parent::check();
+    if (!empty($error)) {
+      return $error;
+    } else {
+      /* Check if we are allowed to create/move this user */
+      if (($this->orig_dn == 'new') && !$this->plugin->acl_is_createable($this->value)) {
+        return msgPool::permCreate();
+      } elseif (
+        ($this->orig_dn != 'new') &&
+        ($this->plugin->dn != $this->orig_dn) &&
+        !$this->plugin->acl_is_moveable($this->value)) {
+        return msgPool::permMove($this->plugin->dn);
+      }
+      // Check if a wrong base was supplied
+      if (!$this->baseSelector->checkLastBaseUpdate()) {
+        return msgPool::check_base();
+      }
+    }
+  }
+
+  function setValue ($value)
+  {
+    parent::setValue($value);
+    if (is_object($this->plugin)) {
+      /* Set the new acl base */
+      if ($this->plugin->dn == 'new') {
+        $this->plugin->set_acl_base($this->value);
+        $this->plugin->parent->set_acl_base();
+      }
+
+      if (($this->baseSelector !== NULL) && ($this->baseSelector->getBase() !== $this->value)) {
+        $this->baseSelector->setBase($this->value);
+      }
+    }
+  }
+
+  function getValue ()
+  {
+    return $this->value;
+  }
+
+  function renderFormInput ()
+  {
+    $smarty = get_smarty();
+    $smarty->assign('usePrototype', 'true');
+    if ($this->disabled) {
+      $display = $this->renderInputField(
+        'text', '',
+        array(
+          'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
+        )
+      );
+    } else {
+      $display = '{literal}'.$this->baseSelector->render().'{/literal}';
+    }
+    return $this->renderAcl($display);
+  }
+
+  function getHtmlId()
+  {
+    if (isset($this->baseSelector)) {
+      return $this->baseSelector->getInputHtmlId();
+    } else {
+      return '';
+    }
+  }
+
+  function serializeAttribute(&$attributes, $form = TRUE)
+  {
+    if (!$form || $this->visible) {
+      parent::serializeAttribute($attributes, $form);
+
+      $attributes[$this->getLdapName()]['choices'] = $this->baseSelector->getBases();
+    }
+  }
+}
+
diff --git a/include/simpleplugin/attributes/class_BooleanAttribute.inc b/include/simpleplugin/attributes/class_BooleanAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..bb59958f4b5e7e94c6e1ba8518249f61f8eea7c0
--- /dev/null
+++ b/include/simpleplugin/attributes/class_BooleanAttribute.inc
@@ -0,0 +1,149 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily a Boolean LDAP attribute
+ *
+ */
+class BooleanAttribute extends Attribute
+{
+  public $trueValue;
+  public $falseValue;
+
+  /*! \brief The constructor of BooleanAttribute
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param mixed $defaultValue The default value for this attribute
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   *  \param mixed $trueValue The value to store in LDAP when this boolean is TRUE. (For weird schemas that uses string or integer to store a boolean)
+   *  \param mixed $falseValue The value to store in LDAP when this boolean is FALSE. (For weird schemas that uses string or integer to store a boolean)
+   */
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = FALSE, $acl = "", $trueValue = "TRUE", $falseValue = "FALSE")
+  {
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->trueValue  = $trueValue;
+    $this->falseValue = $falseValue;
+  }
+
+  function inputValue ($value)
+  {
+    return ($value == $this->trueValue);
+  }
+
+  function loadPostValue ()
+  {
+    if ($this->isVisible()) {
+      $this->setPostValue(isset($_POST[$this->getHtmlId()]));
+    }
+  }
+
+  function computeLdapValue ()
+  {
+    return ($this->value?$this->trueValue:$this->falseValue);
+  }
+
+  function renderFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $attributes = ($this->value?array('checked' => 'checked'): array());
+    if ($this->submitForm) {
+      $js       = 'document.mainform.submit();';
+      $attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
+    } elseif (!empty($this->managedAttributes)) {
+      $js       = $this->managedAttributesJS();
+      $attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
+    }
+    $display  = $this->renderInputField('checkbox', $id, $attributes);
+    return $this->renderAcl($display);
+  }
+
+  protected function managedAttributesJS ()
+  {
+    $js = '';
+    $id = $this->getHtmlId();
+    foreach ($this->managedAttributes as $array) {
+      foreach ($array as $value => $attributes) {
+        if (isset($this->managedAttributesMultipleValues[$value])) {
+          trigger_error('Multiple values are not available for boolean attributes');
+        } else {
+          $js .= 'disableAttributes = (document.getElementById('.json_encode($id).').checked == '.($value?'true':'false').');'."\n";
+        }
+        foreach ($attributes as $attribute) {
+          foreach ($this->plugin->attributesAccess[$attribute]->htmlIds() as $htmlId) {
+            $js .= 'if (document.getElementById('.json_encode($htmlId).')) { document.getElementById('.json_encode($htmlId).').disabled = disableAttributes; }'."\n";
+          }
+        }
+      }
+    }
+    return $js;
+  }
+}
+
+/*! \brief This class allow to handle easily a Boolean LDAP attribute that triggers a set of objectclasses
+ *
+ */
+class ObjectClassBooleanAttribute extends BooleanAttribute
+{
+  private $objectclasses;
+
+
+  /*! \brief The constructor of ObjectClassBooleanAttribute
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param mixed $objectclasses objectClass or array of objectClasses that this boolean should add/remove depending on its state
+   *  \param mixed $defaultValue The default value for this attribute
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   */
+  function __construct ($label, $description, $ldapName, $required, $objectclasses, $defaultValue = FALSE, $acl = "")
+  {
+    if (is_array($objectclasses)) {
+      $this->objectclasses = $objectclasses;
+    } else {
+      $this->objectclasses = array($objectclasses);
+    }
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->setInLdap(FALSE);
+  }
+
+  function loadValue ($attrs)
+  {
+    if (isset($attrs['objectClass'])) {
+      $missing_oc = array_udiff($this->objectclasses, $attrs['objectClass'], 'strcasecmp');
+      $this->setValue(empty($missing_oc));
+    } else {
+      $this->resetToDefault();
+    }
+    $this->initialValue = $this->value;
+  }
+
+  function fillLdapValue (&$attrs)
+  {
+    if ($this->getValue()) {
+      $attrs['objectClass'] = array_merge_unique($this->objectclasses, $attrs['objectClass']);
+    } else {
+      $attrs['objectClass'] = array_remove_entries($this->objectclasses, $attrs['objectClass']);
+    }
+  }
+}
diff --git a/include/simpleplugin/attributes/class_CompositeAttribute.inc b/include/simpleplugin/attributes/class_CompositeAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..e673e57896137079741e52a946d4876dc55073dd
--- /dev/null
+++ b/include/simpleplugin/attributes/class_CompositeAttribute.inc
@@ -0,0 +1,296 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily a composite attribute
+ *
+ * That means this is only one attribute in the LDAP, but it is shown as several in the form.
+ * If you need something else than scanf and printf for reading and writing the values (for instance if you want to do a addition of several int attributes),
+ * you should inherit this class and write your own readValues and writeValues method
+ *
+ */
+class CompositeAttribute extends Attribute
+{
+  public $attributes;
+  protected $readFormat;
+  protected $writeFormat;
+  protected $linearRendering = FALSE;
+
+  /*! \brief The constructor of CompositeAttribute
+   *
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param array $attributes The attributes that are parts of this composite attribute
+   *  \param string $readFormat the preg_match format that's gonna be used in order to read values from LDAP
+   *  \param string $writeFormat the printf format that's gonna be used in order to write values into LDAP
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   *  \param string $label The label to show for this attribute. Only useful if you put this attribute inside a SetAttribute, or if you use a specific template that needs it.
+   */
+  function __construct ($description, $ldapName, $attributes, $readFormat, $writeFormat, $acl = "", $label = NULL)
+  {
+    if ($label === NULL) {
+      $label = $ldapName;
+    }
+    parent::__construct($label, $description, $ldapName, FALSE, "", $acl);
+    $this->readFormat   = $readFormat;
+    $this->writeFormat  = $writeFormat;
+    $this->setAttributes($attributes);
+  }
+
+  function setAttributes ($attributes)
+  {
+    $this->attributes   = $attributes;
+    foreach ($this->attributes as &$attribute) {
+      $attribute->setAcl($this->getAcl());
+    }
+    unset($attribute);
+  }
+
+  function setAcl ($acl)
+  {
+    parent::setAcl($acl);
+    foreach ($this->attributes as &$attribute) {
+      $attribute->setAcl($this->getAcl());
+    }
+    unset($attribute);
+  }
+
+  function setParent (&$plugin)
+  {
+    parent::setParent($plugin);
+    foreach ($this->attributes as &$attribute) {
+      $attribute->setParent($plugin);
+    }
+    unset($attribute);
+  }
+
+  function setManagedAttributes ($dontcare)
+  {
+    trigger_error('method setManagedAttributes is not supported for CompositeAttribute');
+  }
+
+  function setLinearRendering ($bool)
+  {
+    $this->linearRendering = $bool;
+  }
+
+  function readValues($value)
+  {
+    $res = preg_match($this->readFormat, $value, $m);
+    if ($res === 1) {
+      $m = array_slice($m, 1);
+      $values = array();
+      foreach (array_keys($this->attributes) as $name) {
+        if (isset($m[$name])) {
+          $values[] = $m[$name];
+        } else {
+          $values[] = '';
+        }
+      }
+      return $values;
+    } elseif ($res === FALSE) {
+      trigger_error('Error in preg_match : '.preg_last_error());
+    } elseif ($value !== "") { /* If an empty value does not match, we don't trigger an error */
+      trigger_error('String passed "'.$value.'"to Composite did not match format "'.$this->readFormat.'"');
+    }
+    return array_fill(0, count($this->attributes), '');
+  }
+
+  function writeValues($values)
+  {
+    if ($this->writeFormat === FALSE) {
+      return $values;
+    } else {
+      return vsprintf($this->writeFormat, $values);
+    }
+  }
+
+  function resetToDefault ()
+  {
+    foreach ($this->attributes as &$attribute) {
+      $attribute->resetToDefault();
+    }
+    unset($attribute);
+  }
+
+  function inputValue ($value)
+  {
+    $values = $this->readValues($value);
+    $i = 0;
+    foreach ($this->attributes as &$attribute) {
+      $values[$i] = $attribute->inputValue($values[$i]);
+      $i++;
+    }
+    unset($attribute);
+    return $values;
+  }
+
+  function loadPostValue ()
+  {
+    foreach ($this->attributes as &$attribute) {
+      $attribute->loadPostValue();
+    }
+    unset($attribute);
+  }
+
+  function applyPostValue ()
+  {
+    foreach ($this->attributes as &$attribute) {
+      $attribute->applyPostValue();
+    }
+    unset($attribute);
+  }
+
+  function setValue ($values)
+  {
+    if (!is_array($values)) {
+      $values = $this->inputValue($values);
+    }
+    $i = 0;
+    reset($values);
+    foreach ($this->attributes as &$attribute) {
+      $attribute->setValue(current($values));
+      next($values);
+    }
+    unset($attribute);
+    reset($values);
+  }
+
+  /* We always return the LDAP value as the composite attribute has nothing else */
+  function getValue ()
+  {
+    $values = array_map(
+      function ($a)
+      {
+        return $a->computeLdapValue();
+      },
+      $this->attributes
+    );
+    return $this->writeValues($values);
+  }
+
+  function getArrayValue ()
+  {
+    $values = array_map(
+      function ($a)
+      {
+        return $a->displayValue($a->getValue());
+      },
+      $this->attributes
+    );
+    return $values;
+  }
+
+  function check ()
+  {
+    $error = parent::check();
+    if (!empty($error)) {
+      return $error;
+    }
+    foreach ($this->attributes as &$attribute) {
+      $error = $attribute->check();
+      if (!empty($error)) {
+        return $error;
+      }
+    }
+    unset($attribute);
+  }
+
+  function renderAttribute(&$attributes, $readOnly)
+  {
+    if ($this->visible) {
+      if ($this->linearRendering) {
+        parent::renderAttribute($attributes, $readOnly);
+      } else {
+        foreach ($this->attributes as &$attribute) {
+          $attribute->setDisabled($this->disabled);
+          $attribute->renderAttribute($attributes, $readOnly);
+        }
+        unset($attribute);
+      }
+    }
+  }
+
+  function getForHtmlId()
+  {
+    // Label (if any) should point to the first attribute
+    if (isset($this->attributes[0])) {
+      return $this->attributes[0]->getForHtmlId();
+    } else {
+      return '';
+    }
+  }
+
+  function serializeAttribute(&$attributes, $form = TRUE)
+  {
+    if ($form) {
+      if ($this->visible) {
+        foreach ($this->attributes as &$attribute) {
+          $attribute->setDisabled($this->disabled);
+          $attribute->serializeAttribute($attributes, $form);
+        }
+        unset($attribute);
+      }
+    } else {
+      parent::serializeAttribute($attributes, $form);
+      $subattributes = array();
+      foreach ($this->attributes as &$attribute) {
+        $attribute->setDisabled($this->disabled);
+        $attribute->serializeAttribute($subattributes, $form);
+      }
+      unset($attribute);
+      $attributes[$this->getLdapName()]['attributes']       = $subattributes;
+      $attributes[$this->getLdapName()]['attributes_order'] = array_keys($subattributes);
+    }
+  }
+
+  function deserializeValue($values)
+  {
+    if ($this->visible) {
+      foreach ($this->attributes as &$attribute) {
+        $attribute->setDisabled($this->disabled);
+        $attribute->deserializeValue($values);
+      }
+      unset($attribute);
+    }
+  }
+
+  function renderFormInput()
+  {
+    $display = "";
+    foreach ($this->attributes as &$attribute) {
+      $attribute->setDisabled($this->disabled);
+      if ($attribute->isVisible()) {
+        $display .= '<label for="'.$attribute->getForHtmlId().'">'.$attribute->getLabel().'</label>'." ".$attribute->renderFormInput()." ";
+      }
+    }
+    unset($attribute);
+    return $display;
+  }
+
+  public function htmlIds()
+  {
+    $ret = array();
+    foreach ($this->attributes as &$attribute) {
+      $ret = array_merge($ret, $attribute->htmlIds());
+    }
+    unset($attribute);
+    return $ret;
+  }
+}
diff --git a/include/simpleplugin/attributes/class_DateAttribute.inc b/include/simpleplugin/attributes/class_DateAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..f80efd3dadae604bee63e44c6e531b0746fc3d20
--- /dev/null
+++ b/include/simpleplugin/attributes/class_DateAttribute.inc
@@ -0,0 +1,182 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily an Date LDAP attribute
+ *
+ * We are using UTC timezone because we don't care about time, we just want date.
+ */
+class DateAttribute extends Attribute
+{
+  protected $format;
+
+  /*! \brief The constructor of DateAttribute
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param string $format The date format. It can be any format recognized by DateTime::format. see http://www.php.net/manual/fr/function.date.php
+   *  \param mixed $defaultValue The default value for this attribute
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   */
+  function __construct ($label, $description, $ldapName, $required, $format, $defaultValue = 'now', $acl = "")
+  {
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->format = $format;
+  }
+
+  function inputValue ($value)
+  {
+    if ($value === "" && !$this->isRequired()) {
+      return $value;
+    } elseif (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $value)) {
+      return $value;
+    } else {
+      return $this->ldapToDate($value);
+    }
+  }
+
+  function getValue ()
+  {
+    if ($this->value === "" && !$this->isRequired()) {
+      return $this->value;
+    } else {
+      try {
+        return $this->getDateValue()->format('d.m.Y');
+      } catch (Exception $e) {
+        if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
+          return $this->value;
+        } else {
+          return '';
+        }
+      }
+    }
+  }
+
+  protected function ldapToDate($ldapValue)
+  {
+    $date = DateTime::createFromFormat($this->format, $ldapValue, new DateTimeZone('UTC'));
+    if ($date !== FALSE) {
+      return $date;
+    } else {
+      trigger_error('LDAP value for '.$this->getLdapName().' was not in the right date format.');
+      return new DateTime($ldapValue, new DateTimeZone('UTC'));
+    }
+  }
+
+  protected function dateToLdap($dateValue)
+  {
+    return $dateValue->format($this->format);
+  }
+
+  function getDateValue()
+  {
+    $value = $this->value;
+    if (!($value instanceof DateTime)) {
+      $value = new DateTime($value, new DateTimeZone('UTC'));
+    }
+    return $value;
+  }
+
+  function computeLdapValue ()
+  {
+    if ($this->value === "" && !$this->isRequired()) {
+      return $this->value;
+    } elseif (!($this->value instanceof DateTime)) {
+      try {
+        $this->setValue($this->getDateValue());
+      } catch (Exception $e) {
+        if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
+          return $this->value;
+        } else {
+          throw $e;
+        }
+      }
+    }
+    return $this->dateToLdap($this->value);
+  }
+
+  function check ()
+  {
+    $error = parent::check();
+    if (!empty($error)) {
+      return $error;
+    } else {
+      if ($this->value instanceof DateTime) {
+        return;
+      } else {
+        try {
+          $this->getDateValue();
+        } catch (Exception $e) {
+          if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
+            return;
+          } else {
+            return sprintf(_('Error, incorrect date: %s'), $e->getMessage());
+          }
+        }
+      }
+    }
+  }
+
+  function renderFormInput ()
+  {
+    $smarty = get_smarty();
+    $smarty->assign('usePrototype', 'true');
+    $id = $this->getHtmlId();
+    $display = $this->renderInputField(
+      'text', $id,
+      array(
+        'value' => '{literal}'.$this->getValue().'{/literal}',
+        'class' => 'date'
+      )
+    );
+    $display  .= '{if $'.$this->getAcl().'ACL|regex_replace:"/[cdmr]/":"" == "w"}'.
+        '<script type="text/javascript">
+          {literal}
+          var datepicker  = new DatePicker({ relative : \''.$id.'\', language : \'{/literal}{$lang}{literal}\', keepFieldEmpty : true, enableCloseEffect : false, enableShowEffect : false });
+          {/literal}
+        </script>
+        {/if}';
+    return $this->renderAcl($display);
+  }
+}
+
+class GeneralizedTimeDateAttribute extends DateAttribute
+{
+  function __construct ($label, $description, $ldapName, $required, $defaultValue = 'now', $acl = "")
+  {
+    parent::__construct($label, $description, $ldapName, $required, '', $defaultValue, $acl);
+  }
+
+  protected function ldapToDate($ldapValue)
+  {
+    try {
+      return LdapGeneralizedTime::fromString($ldapValue);
+    } catch (LdapGeneralizedTimeBadFormatException $e) {
+      trigger_error('LDAP value "'.$ldapValue.'" for '.$this->getLdapName().' is not in the right date format.');
+      return new DateTime($ldapValue, timezone::utc());
+    }
+  }
+
+  protected function dateToLdap($dateValue)
+  {
+    return LdapGeneralizedTime::toString($dateValue);
+  }
+}
diff --git a/include/simpleplugin/attributes/class_FileAttribute.inc b/include/simpleplugin/attributes/class_FileAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..b045482e90fe4b2c1aae9eddf387bb2072e4282c
--- /dev/null
+++ b/include/simpleplugin/attributes/class_FileAttribute.inc
@@ -0,0 +1,352 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily an File LDAP attribute
+ *
+ */
+class FileAttribute extends Attribute
+{
+  function loadPostValue()
+  {
+    $this->postValue = $this->value;
+    if (!empty($_FILES[$this->getHtmlId()]['name']) && $this->isVisible()) {
+      if ($_FILES[$this->getHtmlId()]['size'] <= 0) {
+        msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file is empty")), ERROR_DIALOG);
+      } elseif (!file_exists($_FILES[$this->getHtmlId()]['tmp_name'])) {
+        // Is there a tmp file, which we can use ?
+        msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not found")), ERROR_DIALOG);
+      } elseif (!$handle = @fopen($_FILES[$this->getHtmlId()]['tmp_name'], "r")) {
+        // Can we open the tmp file, for reading
+        msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not readable")), ERROR_DIALOG);
+      } else {
+        // Everything just fine :)
+
+        // Reading content
+        $this->readFile($handle);
+      }
+      /* so that we only handle the file once */
+      $_FILES[$this->getHtmlId()]['name'] = "";
+    }
+  }
+
+  /*! \brief This function read the file from the given handle and then closes it
+   *
+   *  \param filehandle $handle The handle on the opened uploaded file
+   */
+  function readFile($handle)
+  {
+    $postValue = fread($handle, 1024);
+    while (!feof($handle)) {
+      $postValue .= fread($handle, 1024);
+    }
+    $this->setPostValue($postValue);
+    @fclose($handle);
+  }
+
+  function renderFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $display = $this->renderInputField('file', $id);
+    return $this->renderAcl($display);
+  }
+
+  function displayValue($value)
+  {
+    return sprintf(_('%s (%d bytes)'), $this->getLabel(), mb_strlen($value, '8bit'));
+  }
+}
+
+/* FileAttribue with download button */
+class FileDownloadAttribute extends FileAttribute
+{
+  protected $extension;
+  protected $upload;
+
+  function __construct ($label, $description, $ldapName, $required = FALSE, $extension = '', $upload = FALSE, $defaultValue = "", $acl = "")
+  {
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->extension  = $extension;
+    $this->upload     = $upload;
+  }
+
+  function computeFilename()
+  {
+    return $this->getLdapName().$this->extension;
+  }
+
+  function loadPostValue ()
+  {
+    if ($this->isVisible()) {
+      $this->postValue = $this->value;
+      foreach (array_keys($_POST) as $name) {
+        if (preg_match('/^download'.$this->getHtmlId().'/', $name)) {
+          session::set('binary', $this->value);
+          session::set('binarytype', 'octet-stream');
+          session::set('binaryfile', $this->computeFilename());
+          header('location: getbin.php');
+          exit();
+        }
+      }
+      if ($this->upload && isset($_POST['upload'.$this->getHtmlId()])) {
+        parent::loadPostValue();
+      }
+    }
+  }
+
+  function renderFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $display = '';
+    if ($this->upload) {
+      $display  .= $this->renderInputField('file', $id);
+      $display  .= $this->renderInputField('submit', 'upload'.$id, array('value' => _('Upload')));
+    }
+    $display  .= $this->renderInputField(
+      'image', 'download'.$id,
+      array(
+        'title' => _('Download'),
+        'alt'   => _('Download'),
+        'class' => 'center',
+        'src'   => 'geticon.php?context=actions&amp;icon=document-save&amp;size=16',
+      )
+    );
+    return $this->renderAcl($display);
+  }
+
+  public function htmlIds()
+  {
+    $id   = $this->getHtmlId();
+    $ids  = array('download'.$id);
+    if ($this->upload) {
+      $ids[] =  $id;
+      $ids[] =  'upload'.$id;
+    }
+    return $ids;
+  }
+
+  function renderAttribute(&$attributes, $readOnly)
+  {
+    if ($this->upload == FALSE) {
+      parent::renderAttribute($attributes, FALSE);
+    } else {
+      parent::renderAttribute($attributes, $readOnly);
+    }
+  }
+}
+
+class FileTextAreaAttribute extends FileDownloadAttribute
+{
+  function __construct ($label, $description, $ldapName, $required = FALSE, $extension = '.txt', $upload = TRUE, $defaultValue = "", $acl = "")
+  {
+    parent::__construct(
+      $label, $description, $ldapName, $required,
+      $extension, $upload, $defaultValue, $acl
+    );
+  }
+  /*! \brief Update this attributes postValue depending of the $_POST values
+   */
+  function loadPostValue ()
+  {
+    if ($this->isVisible()) {
+      $this->postValue = $this->value;
+      foreach (array_keys($_POST) as $name) {
+        if (preg_match('/^download'.$this->getHtmlId().'/', $name)) {
+          session::set('binary', $this->value);
+          session::set('binarytype', 'octet-stream');
+          session::set('binaryfile', $this->computeFilename());
+          header('location: getbin.php');
+          exit();
+        }
+      }
+      if ($this->upload) {
+        if (isset($_POST['upload'.$this->getHtmlId()])) {
+          parent::loadPostValue();
+        } else {
+          $id = $this->getHtmlId().'_text';
+          if (isset($_POST[$id])) {
+            $this->setPostValue($_POST[$id]);
+          }
+        }
+      }
+    }
+  }
+
+  function renderFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $display  = '<textarea name="'.$id.'_text" id="'.$id.'_text"'.
+                ($this->disabled? 'disabled="disabled"':'').'>'.
+                '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}</textarea><br/>';
+    return $this->renderAcl($display).parent::renderFormInput();
+  }
+
+  function fixPostValue ($value)
+  {
+    /* Replace CRLF by LF, to avoid non-ASCII chars */
+    return str_replace(array("\r\n", "\r"), "\n", $value);
+  }
+
+  public function htmlIds()
+  {
+    $ids    = parent::htmlIds();
+    $ids[]  = $id.'_text';
+    return $ids;
+  }
+}
+
+class ImageAttribute extends FileAttribute
+{
+  protected $width;
+  protected $height;
+  protected $format;
+  protected $forceSize;
+  protected $placeholder;
+
+  function __construct ($label, $description, $ldapName, $required = FALSE, $width = 48, $height = 48, $format = 'png', $forceSize = FALSE, $defaultValue = "", $acl = "")
+  {
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->width      = $width;
+    $this->height     = $height;
+    $this->format     = $format;
+    $this->forceSize  = $forceSize;
+  }
+
+  function setPlaceholder($placeholder)
+  {
+    $this->placeholder = $placeholder;
+  }
+
+  /*! \brief Update this attributes postValue depending of the $_POST values
+   */
+  function loadPostValue ()
+  {
+    $this->postValue = $this->value;
+    $id = $this->getHtmlId();
+    if (!$this->disabled && $this->isVisible()) {
+      foreach (array_keys($_POST) as $name) {
+        if (!$this->isRequired()) {
+          if (preg_match('/^'.$id.'_remove_/', $name)) {
+            $this->setPostValue('');
+            break;
+          }
+        }
+        if (preg_match('/^'.$id.'_upload_/', $name)) {
+          parent::loadPostValue();
+          break;
+        }
+      }
+    }
+  }
+
+  function setValue ($value)
+  {
+    if ($value == "") {
+      $this->value = "";
+      return;
+    }
+    if (class_exists('Imagick')) {
+      $im     = new Imagick();
+      $modify = FALSE;
+      $im->readImageBlob($value);
+
+      $size = $im->getImageGeometry();
+
+      if (
+          ($size['width'] > 0 && $size['height'] > 0) &&
+          (
+            ($size['width'] < $this->width && $size['height'] < $this->height) ||
+            ($size['width'] > $this->width) ||
+            ($size['height'] > $this->height)
+          )
+        ) {
+        $modify = TRUE;
+        $im->resizeImage($this->width, $this->height, Imagick::FILTER_GAUSSIAN, 1, !$this->forceSize);
+      }
+
+      if ($modify || !preg_match('/^'.$this->format.'$/i', $im->getImageFormat())) {
+        if ($this->format == 'jpeg') {
+          $im->setImageCompression(Imagick::COMPRESSION_JPEG);
+          $im->setImageCompressionQuality(90);
+        }
+        $im->setImageFormat($this->format);
+
+        /* Save attribute */
+        $this->value = $im->getImageBlob();
+      } else {
+        $this->value = $value;
+      }
+    } else {
+      msg_dialog::display(
+        _('Error'),
+        _('Cannot save user picture, FusionDirectory requires the PHP module "imagick" to be installed!'),
+        ERROR_DIALOG
+      );
+    }
+  }
+
+  function renderFormInput ()
+  {
+    $this->setValue($this->inputValue($this->getValue()));
+    $id = $this->getHtmlId();
+    /* Just to be sure the image is not cached */
+    srand((double)microtime() * 1000000);
+    $display  = '<img id="'.$id.'_img"'.
+                ($this->disabled? 'disabled="disabled"':'').
+                ' src="getbin.php?rand='.rand(0, 10000).'"'.
+                ' style="border:1px solid black;"'.
+                ' alt="'.$this->getDescription().'"'.
+                ' title="'.$this->getDescription().'"'.
+                ' /><br/>';
+    $display  .= $this->renderInputField('file', $id);
+    $display .= $this->renderInputField(
+      'image', $id.'_upload',
+      array(
+        'class' => 'center',
+        'src'   => 'geticon.php?context=actions&amp;icon=upload&amp;size=16',
+        'title' => _('Upload'),
+        'alt'   => _('Upload')
+      )
+    );
+    if (!$this->isRequired()) {
+      $display .= $this->renderInputField(
+        'image', $id.'_remove',
+        array(
+          'class' => 'center',
+          'src'   => 'geticon.php?context=actions&amp;icon=remove&amp;size=16',
+          'title' => _('Remove'),
+          'alt'   => _('Remove')
+        )
+      );
+    }
+    if (($this->getValue() == '') && ($this->placeholder != '')) {
+      session::set('binary', $this->placeholder);
+    } else {
+      session::set('binary', $this->getValue());
+    }
+    session::set('binarytype', 'image/'.$this->format);
+    return $this->renderAcl($display);
+  }
+
+  public function htmlIds()
+  {
+    $id = $this->getHtmlId();
+    return array($id.'_img',$id,'upload'.$id);
+  }
+}
diff --git a/include/simpleplugin/attributes/class_FlagsAttribute.inc b/include/simpleplugin/attributes/class_FlagsAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..8db7cc10968d41b2897ab2ae34cc6e07f0d28b87
--- /dev/null
+++ b/include/simpleplugin/attributes/class_FlagsAttribute.inc
@@ -0,0 +1,73 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle an attribute that stores flags based on other BooleanAttributes
+ *
+ */
+class FlagsAttribute extends StringAttribute
+{
+  protected $flags;
+
+  /*! \brief The constructor of IntAttribute
+   *
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param array  $flags The ids of the BooleanAttributes to use as flags
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   */
+  function __construct ($ldapName, $flags, $acl = "")
+  {
+    parent::__construct('', '', $ldapName, FALSE, '', $acl);
+    $this->setVisible(FALSE);
+    $this->flags = $flags;
+  }
+
+  function setParent (&$plugin)
+  {
+    parent::setParent($plugin);
+    if (is_object($this->plugin)) {
+      foreach ($this->flags as $attr) {
+        $this->plugin->attributesAccess[$attr]->setInLdap(FALSE);
+      }
+    }
+  }
+
+  function setValue ($value)
+  {
+    parent::setValue($value);
+    if (is_object($this->plugin)) {
+      foreach ($this->flags as $attr) {
+        $trueValue = $this->plugin->attributesAccess[$attr]->trueValue;
+        $this->plugin->attributesAccess[$attr]->setValue(preg_match("/$trueValue/", $this->value));
+      }
+    }
+  }
+
+  function getValue()
+  {
+    $value = '[';
+    if (is_object($this->plugin)) {
+      foreach ($this->flags as $attr) {
+        $value .= $this->plugin->attributesAccess[$attr]->computeLdapValue();
+      }
+    }
+    $value .= ']';
+    return $value;
+  }
+}
diff --git a/include/simpleplugin/attributes/class_IntAttribute.inc b/include/simpleplugin/attributes/class_IntAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..739f7bd48005ebbf89f3c36cf4288ef6178be6b9
--- /dev/null
+++ b/include/simpleplugin/attributes/class_IntAttribute.inc
@@ -0,0 +1,176 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily an Integer LDAP attribute
+ *
+ */
+class IntAttribute extends Attribute
+{
+  protected $min;
+  protected $max;
+  protected $step = 1;
+  protected $example;
+
+  /*! \brief The constructor of IntAttribute
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param int $min The minimum value it can take
+   *  \param int $max The maximum value it can take
+   *  \param mixed $defaultValue The default value for this attribute
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   */
+  function __construct ($label, $description, $ldapName, $required, $min, $max, $defaultValue = "", $acl = "")
+  {
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->min      = ($min === FALSE ? FALSE : $this->inputValue($min));
+    $this->max      = ($max === FALSE ? FALSE : $this->inputValue($max));
+    $this->example  = "";
+
+    if (($min !== FALSE) && ($max !== FALSE)) {
+      $this->example = sprintf(_("An integer between %d and %d"), $min, $max);
+    } elseif ($min !== FALSE) {
+      $this->example = sprintf(_("An integer larger than %d"),    $min);
+    } elseif ($max !== FALSE) {
+      $this->example = sprintf(_("An integer smaller than %d"),   $max);
+    }
+  }
+
+  function setStep ($step)
+  {
+    $this->step = $step;
+  }
+
+  function inputValue ($value)
+  {
+    if (!$this->isRequired() && empty($value) && !is_numeric($value)) {
+      // value is "" or array()
+      return "";
+    }
+    if (is_object($this->plugin) && $this->plugin->is_template) {
+      return $value;
+    } else {
+      return intval($value);
+    }
+  }
+
+  function check ()
+  {
+    $error = parent::check();
+    if (!empty($error)) {
+      return $error;
+    } else {
+      if (!is_numeric($this->value) && (!empty($this->value) || $this->isRequired())) {
+        return msgPool::invalid($this->getLabel(), $this->value, "/./", $this->example);
+      }
+      if ((($this->min !== FALSE) && ($this->value < $this->min))
+      || (($this->max !== FALSE) && ($this->value > $this->max))) {
+        return msgPool::invalid($this->getLabel(), $this->value, "/./", $this->example);
+      }
+    }
+  }
+
+  function renderFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $attributes = array(
+      'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
+    );
+    if ($this->min !== FALSE) {
+      $attributes['min'] = $this->min;
+    }
+    if ($this->max !== FALSE) {
+      $attributes['max'] = $this->max;
+    }
+    if ($this->step !== FALSE) {
+      $attributes['step'] = $this->step;
+    }
+    if (!empty($this->managedAttributes)) {
+      $js       = $this->managedAttributesJS();
+      $attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
+    }
+    $display = $this->renderInputField('number', $id, $attributes);
+    return $this->renderAcl($display);
+  }
+
+  function renderTemplateInput ()
+  {
+    $id = $this->getHtmlId();
+    $display = $this->renderInputField(
+      'text', $id,
+      array(
+        'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
+      )
+    );
+    return $this->renderAcl($display);
+  }
+}
+
+/*! \brief This class allow to handle easily an Float LDAP attribute
+ *
+ */
+class FloatAttribute extends IntAttribute
+{
+
+  /*! \brief The constructor of FloatAttribute
+   *
+   * By default a FloatAttribute will have a step of 0.1, use setStep in order to change it.
+   * You can use setStep(FALSE) to disable it.
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param float $min The minimum value it can take
+   *  \param float $max The maximum value it can take
+   *  \param mixed $defaultValue The default value for this attribute
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   */
+  function __construct ($label, $description, $ldapName, $required, $min, $max, $defaultValue = 0.0, $acl = "")
+  {
+    parent::__construct($label, $description, $ldapName, $required, $min, $max, $defaultValue, $acl);
+
+    $this->step = 0.01;
+
+    $this->example  = "";
+    if (($min !== FALSE) && ($max !== FALSE)) {
+      $this->example = sprintf(_("A float between %f and %f"), $min, $max);
+    } elseif ($min !== FALSE) {
+      $this->example = sprintf(_("A float larger than %f"),    $min);
+    } elseif ($max !== FALSE) {
+      $this->example = sprintf(_("A float smaller than %f"),   $max);
+    }
+  }
+
+  function inputValue ($value)
+  {
+    if (!$this->isRequired() && empty($value) && !is_numeric($value)) {
+      // value is "" or array()
+      return "";
+    }
+    if (is_object($this->plugin) && $this->plugin->is_template) {
+      return $value;
+    } else {
+      return floatval($value);
+    }
+  }
+}
diff --git a/include/simpleplugin/attributes/class_SelectAttribute.inc b/include/simpleplugin/attributes/class_SelectAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..50156bd67880693ad999b18ef1a3c0faec513995
--- /dev/null
+++ b/include/simpleplugin/attributes/class_SelectAttribute.inc
@@ -0,0 +1,229 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*!
+ * \file class_SelectAttribute.inc
+ * Source code for the Select attributes
+ */
+
+/*! \brief This class allow to handle easily a Select LDAP attribute with a set of choices
+ *
+ */
+class SelectAttribute extends Attribute
+{
+  protected $choices;
+  protected $outputs  = NULL;
+  protected $size     = 1;
+
+  /*! \brief The constructor of SelectAttribute
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param array $choices The choices this select should offer. Pass array("") if you're gonna fill it later with setChoices
+   *  \param mixed $defaultValue The default value for this attribute
+   *  \param array $outputs The labels corresponding to the choices, leave to NULL if you want to display the choices themselves
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   */
+  function __construct ($label, $description, $ldapName, $required = FALSE, $choices = array(), $defaultValue = "", $outputs = NULL, $acl = "")
+  {
+    if (!in_array($defaultValue, $choices, TRUE) && isset($choices[0])) {
+      $defaultValue = $choices[0];
+    }
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->setChoices($choices, $outputs);
+  }
+
+  /*! \brief Set the options of the select attribute
+   *
+   *  \param array $choices The choices this select should offer
+   *  \param array $outputs The labels corresponding to the choices, leave to NULL if you want to display the choices themselves
+   */
+  function setChoices ($choices, $outputs = NULL)
+  {
+    $this->outputs = NULL;
+    if (!$this->isRequired() && !in_array('', $choices, TRUE)) {
+      array_unshift($choices, '');
+      if (is_array($outputs)) {
+        array_unshift($outputs, _('None'));
+      }
+    }
+    $this->choices = $choices;
+    if (!in_array($this->defaultValue, $this->choices, TRUE) && isset($this->choices[0])) {
+      $this->defaultValue = $this->choices[0];
+    }
+    if (is_array($outputs)) {
+      $this->setDisplayChoices($outputs);
+    }
+    if (!in_array($this->value, $this->choices)) {
+      $this->resetToDefault();
+    }
+  }
+
+  /*! \brief Set the display options of the select attribute
+   *
+   *  \param array $outputs The labels corresponding to the choices, in the same order as the choices
+   */
+  function setDisplayChoices ($values)
+  {
+    $this->outputs = array();
+    $i = 0;
+    foreach ($this->choices as $choice) {
+      $this->outputs[$choice] = $values[$i++];
+    }
+  }
+
+  /*! \brief Get the choices
+   */
+  function getChoices ()
+  {
+    return $this->choices;
+  }
+
+  function setRequired ($bool)
+  {
+    parent::setRequired($bool);
+    $key = array_search("", $this->choices, TRUE);
+    if ($this->isRequired() && ($key !== FALSE)) {
+      unset($this->choices[$key]);
+      unset($this->outputs[""]);
+    } elseif (!$this->isRequired() && !in_array("", $this->choices, TRUE)) {
+      $this->choices[] = "";
+      if (!isset($this->output[""])) {
+        $this->output[""] = _("None");
+      }
+    }
+  }
+
+  function displayValue ($value)
+  {
+    if ($this->outputs !== NULL) {
+      if (isset($this->outputs[$value])) {
+        return $this->outputs[$value];
+      } else {
+        trigger_error("No display value set for '$value' in ".$this->getLabel());
+        return $value;
+      }
+    } else {
+      return $value;
+    }
+  }
+
+  function check ()
+  {
+    $error = parent::check();
+    if (!empty($error)) {
+      return $error;
+    } else {
+      if (!$this->disabled && !in_array($this->value, $this->choices)) {
+        return sprintf(_('The value "%s" for field "%s" is not in the list of possible choices'), $this->value, $this->getLabel());
+      }
+    }
+  }
+
+  function renderFormInput ()
+  {
+    $smarty = get_smarty();
+    $id = $this->getHtmlId();
+    $smarty->assign($id."_choices", $this->choices);
+    if ($this->outputs !== NULL) {
+      $outputs = array_values($this->outputs);
+    } else {
+      $outputs = $this->choices;
+    }
+    $key = array_search('', $outputs, TRUE);
+    if ($key !== FALSE) {
+      $outputs[$key] = '&nbsp;';
+    }
+    $smarty->assign($id."_outputs", $outputs);
+    $smarty->assign($id."_selected", $this->getValue());
+    $display  = '<select name="'.$id.'" id="'.$id.'" ';
+    if ($this->disabled || (count($this->choices) == 0)) {
+      $display .= 'disabled="disabled" ';
+    }
+    if ($this->size > 1) {
+      $display .= 'size="'.$this->size.'" ';
+    }
+    if ($this->submitForm) {
+      $js       = 'document.mainform.submit();';
+      $display  .= 'onChange="javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8').'"';
+    } elseif (!empty($this->managedAttributes)) {
+      $js       = $this->managedAttributesJS();
+      $display  .= 'onChange="javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8').'"';
+    }
+    $display .= '>';
+    $display .= '{html_options values=$'.$id.'_choices output=$'.$id.'_outputs selected=$'.$id.'_selected}';
+    $display .= '</select>';
+    return $this->renderAcl($display);
+  }
+
+  function serializeAttribute(&$attributes, $form = TRUE)
+  {
+    if (!$form || $this->visible) {
+      parent::serializeAttribute($attributes, $form);
+
+      if ($this->outputs !== NULL) {
+        $outputs = array_values($this->outputs);
+      } else {
+        $outputs = $this->choices;
+      }
+      $attributes[$this->getLdapName()]['choices'] = array_combine($this->choices, $outputs);
+    }
+  }
+
+  /*! \brief Set the size of the HTML input tag, useful to display several options on the screen instead of just one */
+  function setSize($size)
+  {
+    $this->size = $size;
+  }
+}
+
+/*! \brief This class allows to handle a select attribute which allow to choose an object
+ *
+ */
+class ObjectSelectAttribute extends SelectAttribute
+{
+  protected $objectType;
+  protected $objectAttrs  = NULL;
+  protected $objectFilter = '';
+
+  function __construct ($label, $description, $ldapName, $required, $objectType, $objectAttrs = NULL, $objectFilter = '', $acl = "")
+  {
+    parent::__construct($label, $description, $ldapName, $required, array(), "", NULL, $acl);
+    $this->objectType   = $objectType;
+    $this->objectAttrs  = $objectAttrs;
+    $this->objectFilter = $objectFilter;
+  }
+
+  function setParent (&$plugin)
+  {
+    parent::setParent($plugin);
+    if (is_object($this->plugin)) {
+      $this->updateChoices();
+    }
+  }
+
+  function updateChoices()
+  {
+    $objects = objects::ls($this->objectType, $this->objectAttrs, NULL, $this->objectFilter);
+    $this->setChoices(array_keys($objects), array_values($objects));
+  }
+}
diff --git a/include/simpleplugin/attributes/class_SetAttribute.inc b/include/simpleplugin/attributes/class_SetAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..8f93933bd3e9882df3c2505802d69aedf4e008ac
--- /dev/null
+++ b/include/simpleplugin/attributes/class_SetAttribute.inc
@@ -0,0 +1,735 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily a multi-valuated attribute
+ *
+ */
+class SetAttribute extends Attribute
+{
+  public $attribute;
+  protected $valueUnicity     = TRUE;
+  protected $editingValue     = FALSE;
+  protected $linearRendering  = TRUE;
+  protected $size = 4;
+
+  /*! \brief The constructor of SetAttribute
+   *
+   *  \param Attribute $attribute The attribute you want to see multi-valuated
+   *  \param array $values The default values
+   *  \param boolean $valueUnicity Should the value unicity be checked
+   */
+  function __construct ($attribute, $values = array(), $valueUnicity = TRUE)
+  {
+    parent::__construct(
+      $attribute->getLabel(),     $attribute->getDescription(),
+      $attribute->getLdapName(),  $attribute->isRequired(),
+      $values
+    );
+    $this->attribute = $attribute;
+    $this->attribute->setRequired(TRUE);
+    $this->valueUnicity = $valueUnicity;
+  }
+
+  function setManagedAttributes ($dontcare)
+  {
+    trigger_error('method setManagedAttributes is not supported for SetAttributes');
+  }
+
+  function setLinearRendering ($bool)
+  {
+    $this->linearRendering = $bool;
+  }
+
+  protected function loadAttrValue ($attrs)
+  {
+    if (isset($attrs[$this->getLdapName()]["count"])) {
+      $this->value = array();
+      for ($i = 0; $i < $attrs[$this->getLdapName()]["count"]; $i++) {
+        $this->value[] = $attrs[$this->getLdapName()][$i];
+      }
+    } else {
+      $this->resetToDefault();
+    }
+  }
+
+  function getAcl ()
+  {
+    if ($this->attribute === FALSE) {
+      return parent::getAcl();
+    }
+    return $this->attribute->getAcl();
+  }
+
+  function setAcl ($acl)
+  {
+    if ($this->attribute === FALSE) {
+      return parent::setAcl($acl);
+    }
+    $this->attribute->setAcl($acl);
+  }
+
+  function addPostValue ($value)
+  {
+    if ($value === '') {
+      return FALSE;
+    }
+    if ($this->valueUnicity && in_array($value, $this->postValue, TRUE)) {
+      return FALSE;
+    }
+    $this->postValue[] = $value;
+    return TRUE;
+  }
+
+  function delPostValue ($key)
+  {
+    unset($this->postValue[$key]);
+  }
+
+  function loadPostValue ()
+  {
+    $this->editingValue = FALSE;
+    $id = $this->getHtmlId();
+    if ($this->isVisible()) {
+      $this->postValue = $this->value;
+      if (isset($_POST["add".$id])) {
+        if ($this->attribute !== FALSE) {
+          $this->attribute->loadPostValue();
+          $this->attribute->applyPostValue();
+          $this->addPostValue($this->attribute->getValue());
+        }
+      } elseif (isset($_POST["del".$id]) && isset($_POST["row".$id])) {
+        foreach ($_POST["row".$id] as $key) {
+          $this->delPostValue($key);
+        }
+      } elseif ($this->attribute !== FALSE) {
+        $this->attribute->loadPostValue();
+        $this->attribute->applyPostValue();
+        $this->editingValue = $this->attribute->getValue();
+      }
+    }
+  }
+
+  function check ()
+  {
+    $error = parent::check();
+    if (!empty($error) || ($this->attribute === FALSE)) {
+      return $error;
+    } else {
+      foreach ($this->value as $value) {
+        $this->attribute->setValue($value);
+        $error = $this->attribute->check();
+        if (!empty($error)) {
+          return $error;
+        }
+      }
+    }
+  }
+
+  function renderFormInput ()
+  {
+    $display      = $this->renderOnlyFormInput();
+    $attr_display = $this->renderAttributeInput(FALSE);
+    $buttons      = $this->renderButtons();
+    return $this->renderAcl($display).$attr_display.$this->renderAcl($buttons);
+  }
+
+  function renderTemplateInput ()
+  {
+    $display      = $this->renderOnlyFormInput();
+    $attr_display = $this->renderAttributeInput(TRUE);
+    $buttons      = $this->renderButtons();
+    return $this->renderAcl($display).$attr_display.$this->renderAcl($buttons);
+  }
+
+  function renderOnlyFormInput()
+  {
+    if (($this->size < 15) && ($this->size < count($this->value))) {
+      $this->size = min(15, count($this->value));
+    }
+    $id = $this->getHtmlId();
+    $smarty = get_smarty();
+    $smarty->assign($id.'_values', $this->getDisplayValues());
+    $display = '<select multiple="multiple"  name="row'.$id.'[]" id="row'.$id.'" size="'.$this->size.'"'.
+                ($this->disabled? ' disabled="disabled"':'').
+                ' >'."\n";
+    $display .= '{html_options options=$'.$id.'_values}';
+    $display .= '</select><br/>'."\n";
+    return $display;
+  }
+
+  function getDisplayValues ()
+  {
+    if ($this->attribute === FALSE) {
+      return $this->value;
+    }
+    $attribute = $this->attribute;
+    return array_map(
+      function ($value) use($attribute)
+      {
+        return $attribute->displayValue($value);
+      },
+      $this->value
+    );
+  }
+
+  function handleEditingValue()
+  {
+    if ($this->editingValue === FALSE) {
+      $this->attribute->resetToDefault();
+    } else {
+      $this->attribute->setValue($this->editingValue);
+    }
+  }
+
+  function renderAttributeInput ($template = FALSE)
+  {
+    if ($this->attribute === FALSE) {
+      return;
+    }
+    $this->handleEditingValue();
+    if ($template) {
+      return $this->attribute->renderTemplateInput();
+    } else {
+      return $this->attribute->renderFormInput();
+    }
+  }
+
+  function renderAttribute(&$attributes, $readOnly)
+  {
+    if ($this->attribute === FALSE) {
+      return parent::renderAttribute($attributes, $readOnly);
+    }
+    if ($this->visible) {
+      $this->attribute->setDisabled($this->disabled);
+      if ($this->linearRendering || $readOnly) {
+        parent::renderAttribute($attributes, $readOnly);
+      } else {
+        $attributes[$this->getLdapName()] = array(
+          'htmlid'      => $this->getForHtmlId(),
+          'label'       => '{literal}'.$this->getLabel().'{/literal}'.($this->isRequired()?'{$must}':''),
+          'description' => ($this->isRequired()?sprintf(_("%s (required)"), $this->getDescription()):$this->getDescription()),
+          'input'       => $this->renderOnlyFormInput(),
+        );
+        $this->handleEditingValue();
+        $this->attribute->renderAttribute($attributes, $readOnly);
+        $attributes[$this->getLdapName().'_buttons'] = array(
+          'htmlid'      => 'add'.$this->getHtmlId(),
+          'label'       => '{literal}'.$this->getLabel().'{/literal}'.($this->isRequired()?'{$must}':''),
+          'description' => '',
+          'input'       => $this->renderButtons(),
+        );
+      }
+    }
+  }
+
+  function serializeAttribute(&$attributes, $form = TRUE)
+  {
+    parent::serializeAttribute($attributes, $form);
+    if ($this->attribute === FALSE) {
+      return;
+    }
+    if ($form) {
+      return;
+    } else {
+      $subattributes = array();
+      $this->attribute->setDisabled($this->disabled);
+      $this->attribute->serializeAttribute($subattributes, $form);
+      $attributes[$this->getLdapName()]['attributes']       = $subattributes;
+      $attributes[$this->getLdapName()]['attributes_order'] = array_keys($subattributes);
+    }
+  }
+
+  function getForHtmlId()
+  {
+    // Label should point to the attribute
+    if (is_object($this->attribute)) {
+      return $this->attribute->getForHtmlId();
+    } else {
+      return '';
+    }
+  }
+
+  function renderButtons ()
+  {
+    $id = $this->getHtmlId();
+    $buttons  = $this->renderInputField('submit', 'add'.$id, array('value' => '{msgPool type=addButton}'));
+    $buttons .= $this->renderInputField('submit', 'del'.$id, array('value' => '{msgPool type=delButton}'));
+    return $buttons;
+  }
+
+  function computeLdapValue ()
+  {
+    return array_values($this->value);
+  }
+
+  public function htmlIds()
+  {
+    $id = $this->getHtmlId();
+    return array_merge(array('add'.$id,'del'.$id,'row'.$id), $this->attribute->htmlIds());
+  }
+
+  /*! \brief Set the parent plugin for this attribute
+   *
+   *  \param simplePlugin &$plugin The parent plugin
+   */
+  function setParent (&$plugin)
+  {
+    parent::setParent($plugin);
+    if ($this->attribute !== FALSE) {
+      $this->attribute->setParent($plugin);
+    }
+  }
+
+  function getArrayValues()
+  {
+    $result = array();
+    foreach ($this->value as $value) {
+      $this->attribute->setValue($value);
+      $row = array();
+      foreach ($this->attribute->getArrayValue() as $val) {
+        $row[] = $val;
+      }
+      $result[] = $row;
+    }
+    return $result;
+  }
+
+  function foreignKeyUpdate($oldvalue, $newvalue, $source)
+  {
+    foreach ($this->value as $key => &$value) {
+      if ($value == $oldvalue) {
+        if ($newvalue === NULL) {
+          unset($this->value[$key]);
+        } elseif ($source['MODE'] == 'copy') {
+          $this->value[] = $newvalue;
+        } elseif ($source['MODE'] == 'move') {
+          $value = $newvalue;
+        }
+      }
+    }
+    unset($value);
+  }
+
+  function foreignKeyCheck($value, $source)
+  {
+    return in_array($value, $this->value);
+  }
+
+  function setSize($size)
+  {
+    $this->size = $size;
+  }
+}
+
+class OrderedArrayAttribute extends SetAttribute
+{
+  protected $order;
+  protected $edit_enabled;
+  protected $height   = 90;
+  protected $headers  = FALSE;
+
+  /*! \brief The constructor of OrderedArrayAttribute
+   *
+   *  \param Attribute $attribute The composite attribute you want to see multi-valuated
+   *  \param array $values The default values
+   */
+  function __construct ($attribute, $order = TRUE, $values = array(), $edit_enabled = FALSE)
+  {
+    parent::__construct($attribute, $values);
+    $this->order        = $order;
+    $this->edit_enabled = $edit_enabled;
+  }
+
+  function setHeight($h)
+  {
+    $this->height = $h;
+  }
+
+  function setHeaders($h)
+  {
+    $this->headers = $h;
+  }
+
+  function readValue($value)
+  {
+    if ($this->order) {
+      return preg_split('/:/', $value, 2);
+    } else {
+      return $value;
+    }
+  }
+
+  function writeValue($key, $value)
+  {
+    if ($this->order) {
+      return $key.":".$value;
+    } else {
+      return $value;
+    }
+  }
+
+  function computeLdapValue ()
+  {
+    $ldapValue = array();
+    foreach ($this->value as $key => $value) {
+      $ldapValue[] = $this->writeValue($key, $value);
+    }
+    return $ldapValue;
+  }
+
+  protected function loadAttrValue ($attrs)
+  {
+    if (isset($attrs[$this->getLdapName()]["count"])) {
+      $this->value = array();
+      for ($i = 0; $i < $attrs[$this->getLdapName()]["count"]; $i++) {
+        $value = $this->readValue($attrs[$this->getLdapName()][$i]);
+        if (is_array($value)) {
+          $this->value[$value[0]] = $value[1];
+        } else {
+          $this->value[] = $value;
+        }
+      }
+    } else {
+      $this->resetToDefault();
+    }
+    if ($this->order) {
+      $this->reIndexValues();
+    }
+  }
+
+  function renderOnlyFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $div = new divSelectBox('rows'.$id);
+    $smarty = get_smarty();
+    $div->SetHeight($this->height);
+    $div->SetHeaders($this->headers);
+    foreach ($this->value as $key => $value) {
+      $fields = array();
+      foreach ($this->getAttributeArrayValue($key, $value) as $field) {
+        if (is_array($field)) {
+          $fields[] = $field;
+        } else {
+          $fields[] = array('string' => $field);
+        }
+      }
+      if (empty($fields)) {
+        continue;
+      }
+
+      list ($img, $width) = $this->genRowIcons($key, $value);
+
+      $fields[] = array("html" => $img, "attach" => 'style="border:0px;width:'.$width.'px;"');
+      $div->AddEntry($fields);
+    }
+    $smarty->assign("div_$id", $div->DrawList());
+    return '{$div_'.$id.'}'."\n";
+  }
+
+  protected function genRowIcons($key, $value)
+  {
+    $id = $this->getHtmlId();
+
+    $img = '';
+    $width = 25;
+
+    if ($this->order) {
+      $width += 20;
+      if ($key != 0) {
+        $img .= $this->renderInputField(
+          'image', $id.'_up_'.$key,
+          array(
+            'src'   => 'geticon.php?context=actions&amp;icon=view-sort-descending&amp;size=16',
+            'title' => _('Sort up'),
+            'alt'   => _('Sort up'),
+            'class' => 'center'
+          )
+        ).'&nbsp;';
+      } else {
+        $img .= '<img src="images/empty.png" alt="" style="width:10px;"/>';
+      }
+      if (($key + 1) < count($this->value)) {
+        $img .= $this->renderInputField(
+          'image', $id.'_down_'.$key,
+          array(
+            'src'   => 'geticon.php?context=actions&amp;icon=view-sort-ascending&amp;size=16',
+            'title' => _('Sort down'),
+            'alt'   => _('Sort down'),
+            'class' => 'center'
+          )
+        ).'&nbsp;';
+      } else {
+        $img .= '<img src="images/empty.png" alt="" style="width:10px;"/>';
+      }
+    }
+    if ($this->edit_enabled) {
+      $width += 15;
+      $img .= $this->renderInputField(
+        'image', $id.'_edit_'.$key,
+        array(
+          'src'   => 'geticon.php?context=actions&amp;icon=document-edit&amp;size=16',
+          'title' => _('Edit'),
+          'alt'   => _('Edit'),
+          'class' => 'center'
+        )
+      ).'&nbsp;';
+    }
+    $img .= $this->renderInputField(
+      'image', $id.'_del_'.$key,
+      array(
+        'src'   => 'geticon.php?context=actions&amp;icon=edit-delete&amp;size=16',
+        'title' => _('Delete'),
+        'alt'   => _('Delete'),
+        'class' => 'center'
+      )
+    ).'&nbsp;';
+
+    return array ($img, $width);
+  }
+
+  protected function getAttributeArrayValue($key, $value)
+  {
+    $this->attribute->setValue($value);
+    return $this->attribute->getArrayValue();
+  }
+
+  protected function reIndexValues ()
+  {
+    $this->value = array_values($this->value);
+  }
+
+  function loadPostValue ()
+  {
+    $this->editingValue = FALSE;
+    if ($this->isVisible()) {
+      $this->postValue = $this->value;
+      $id = $this->getHtmlId();
+      foreach (array_keys($_POST) as $name) {
+        if ($this->handlePostValueActions($id, $name)) {
+          break;
+        }
+      }
+      $this->handleAddAndEditValue();
+    }
+  }
+
+  protected function handlePostValueActions($id, $postValue)
+  {
+    if ($this->order) {
+      if (preg_match('/^'.$id.'_up_/', $postValue)) {
+        $key = preg_replace('/^'.$id.'_up_/', '', $postValue);
+        $key = preg_replace('/_[xy]$/', '', $key);
+
+        $tmp                        = $this->postValue[$key];
+        $this->postValue[$key]      = $this->postValue[$key - 1];
+        $this->postValue[$key - 1]  = $tmp;
+        return TRUE;
+      }
+      if (preg_match('/^'.$id.'_down_/', $postValue)) {
+        $key = preg_replace('/^'.$id.'_down_/', '', $postValue);
+        $key = preg_replace('/_[xy]$/', '', $key);
+
+        $tmp                        = $this->postValue[$key];
+        $this->postValue[$key]      = $this->postValue[$key + 1];
+        $this->postValue[$key + 1]  = $tmp;
+        return TRUE;
+      }
+    }
+    if ($this->edit_enabled) {
+      if (preg_match('/^'.$id.'_edit_/', $postValue)) {
+        $key = preg_replace('/^'.$id.'_edit_/', '', $postValue);
+        $key = preg_replace('/_[xy]$/', '', $key);
+        $this->handleEdit($key);
+        return TRUE;
+      }
+    }
+    if (preg_match('/^'.$id.'_del_/', $postValue)) {
+      $key = preg_replace('/^'.$id.'_del_/', '', $postValue);
+      $key = preg_replace('/_[xy]$/', '', $key);
+      $this->delPostValue($key);
+      return TRUE;
+    }
+    return FALSE;
+  }
+
+  protected function handleAddAndEditValue()
+  {
+    $id = $this->getHtmlId();
+    if ($this->attribute === FALSE) {
+      return;
+    }
+    if (isset($_POST["add$id"])) {
+      $this->attribute->loadPostValue();
+      $this->attribute->applyPostValue();
+      if ($error = $this->attribute->check()) {
+        msg_dialog::display(sprintf(_('Invalid value for %s'), $this->getLabel()), $error);
+      } else {
+        $this->addPostValue($this->attribute->getValue());
+      }
+    } elseif ($this->editingValue === FALSE) {
+      $this->attribute->loadPostValue();
+      $this->attribute->applyPostValue();
+      $this->editingValue = $this->attribute->getValue();
+    }
+  }
+
+  protected function handleEdit($key)
+  {
+    $this->editingValue = $this->value[$key];
+    $this->delPostValue($key);
+    $this->plugin->focusedField = $this->getHtmlId();
+  }
+
+  function applyPostValue ()
+  {
+    parent::applyPostValue();
+    if ($this->order) {
+      $this->reIndexValues();
+    }
+  }
+
+  public function htmlIds()
+  {
+    $id   = $this->getHtmlId();
+    $ids  = array('add'.$id);
+    if ($this->attribute !== FALSE) {
+      $ids  = array_merge($ids, $this->attribute->htmlIds());
+    }
+    $nb_values = count($this->value);
+    for ($i = 0; $i < $nb_values; ++$i) {
+      if ($this->order) {
+        if ($i > 0) {
+          $ids[] = $id.'_up_'.$i;
+        }
+        if (($i + 1) < $nb_values) {
+          $ids[] = $id.'_down_'.$i;
+        }
+      }
+      $ids[] = $id.'_del_'.$i;
+    }
+    return $ids;
+  }
+
+  function renderButtons ()
+  {
+    $id = $this->getHtmlId();
+    $buttons = $this->renderInputField('submit', 'add'.$id, array('value' => '{msgPool type=addButton}'));
+    return $buttons;
+  }
+}
+
+class SubNodesAttribute extends OrderedArrayAttribute
+{
+  protected $objectClass;
+  protected $objectClasses;
+
+  function __construct ($label, $description, $ldapName, $objectClass, $attributes, $order = FALSE, $values = array(), $edit_enabled = FALSE, $acl = "")
+  {
+    $attributes_keys = array();
+    foreach ($attributes as $attribute) {
+      $attributes_keys[$attribute->getLdapName()] = $attribute;
+      $attributes_keys[$attribute->getLdapName()]->htmlid_prefix = $ldapName.'_';
+    }
+    $composite = new CompositeAttribute(
+      $description, $ldapName,
+      $attributes_keys,
+      FALSE, FALSE,
+      $acl, $label
+    );
+    parent::__construct($composite, $order, $values, $edit_enabled);
+    if (is_array($objectClass)) {
+      $this->objectClass    = $objectClass[0];
+      $this->objectClasses  = $objectClass;
+    } else {
+      $this->objectClass    = $objectClass;
+      $this->objectClasses  = array($objectClass);
+    }
+  }
+
+  protected function loadAttrValue ($attrs)
+  {
+    global $config;
+    /* Should we take dn from attrs or plugin? */
+    if (isset($attrs['dn'])) {
+      $ldap = $config->get_ldap_link();
+      $ldap->ls('objectClass='.$this->objectClass, $attrs['dn']);
+      $this->value = array();
+      while ($subattrs = $ldap->fetch()) {
+        $this->attribute->resetToDefault();
+        foreach ($this->attribute->attributes as &$attribute) {
+          $attribute->loadAttrValue($subattrs);
+        }
+        unset($attribute);
+        $this->value[] = $this->attribute->getValue();
+      }
+    } else {
+      $this->resetToDefault();
+    }
+  }
+
+  /* Not saving anything into base node */
+  function fillLdapValue (&$attrs)
+  {
+    /* Remove crap made by plugin */
+    unset ($attrs[$this->getLdapName()]);
+  }
+
+  /* Special LDAP treatment that this attribute does after plugin ldap save */
+  function postLdapSave ($ldap)
+  {
+    /* First delete all old nodes */
+    $ldap->ls('objectClass='.$this->objectClass, $this->plugin->dn, array('dn'));
+    $delete = array();
+    while ($attrs = $ldap->fetch()) {
+      $delete[] = $attrs['dn'];
+    }
+    foreach ($delete as $dn) {
+      $ldap->rmdir($dn);
+    }
+    /* Then add our values */
+    foreach ($this->value as $val) {
+      $attrs = array('objectClass' => $this->objectClasses);
+      $this->attribute->setValue($val);
+      foreach ($this->attribute->attributes as &$attribute) {
+        $attribute->fillLdapValue($attrs);
+      }
+      unset($attribute);
+      $dn = $this->compute_attribute_dn();
+      $ldap->cd($dn);
+      foreach (array_keys($attrs) as $index) {
+        if (is_array($attrs[$index]) && (count($attrs[$index]) == 0)) {
+          unset($attrs[$index]);
+        }
+      }
+      $ldap->add($attrs);
+      if (!$ldap->success()) {
+        msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_ADD, get_class()), LDAP_ERROR);
+      }
+    }
+  }
+
+  function compute_attribute_dn ()
+  {
+    /* Later we might want to be able to choose which attribute to use in the dn */
+    reset($this->attribute->attributes);
+    $attribute = key($this->attribute->attributes);
+    return $attribute.'='.$this->attribute->attributes[$attribute]->computeLdapValue().','.$this->plugin->dn;
+  }
+}
diff --git a/include/simpleplugin/attributes/class_StringAttribute.inc b/include/simpleplugin/attributes/class_StringAttribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..38e03c9af22849f5e518cb05a877726d6adfcc75
--- /dev/null
+++ b/include/simpleplugin/attributes/class_StringAttribute.inc
@@ -0,0 +1,153 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily a String LDAP attribute
+ *
+ */
+class StringAttribute extends Attribute
+{
+  protected $pattern;
+  protected $example;
+  protected $autocomplete = NULL;
+
+  /*! \brief The constructor of StringAttribute
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param mixed $defaultValue The default value for this attribute
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   *  \param string $regexp A regular expression that should be matched by the value of this attribute in order for it to be considered valid. Will be used as a PHP regexp and as an html5 input pattern.
+   */
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = "", $acl = "", $regexp = "", $example = NULL)
+  {
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->pattern = $regexp;
+    $this->example = ($example === NULL?$defaultValue:$example);
+  }
+
+  function setExample ($example)
+  {
+    $this->example = $example;
+  }
+
+  function setPattern ($pattern)
+  {
+    $this->pattern = $pattern;
+  }
+
+  function renderFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $attributes = array(
+      'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
+    );
+    if (!empty($this->managedAttributes)) {
+      $js       = $this->managedAttributesJS();
+      $attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
+    }
+    if ($this->autocomplete !== NULL) {
+      $attributes['autocomplete'] = ($this->autocomplete ? 'on' : 'off' );
+    }
+    $display  = $this->renderInputField('text', $id, $attributes);
+    return $this->renderAcl($display);
+  }
+
+  function fixPostValue ($value)
+  {
+    /* Replace CRLF by LF, to avoid non-ASCII chars in multiline values (mainly useful for textarea) */
+    return str_replace(array("\r\n", "\r"), "\n", $value);
+  }
+
+  function check ()
+  {
+    $error = parent::check();
+    if (!empty($error)) {
+      return $error;
+    } else {
+      if ($this->value !== "") {
+        return $this->validate();
+      }
+    }
+  }
+
+  function validate ()
+  {
+    if (($this->pattern !== "") && !preg_match($this->pattern, $this->value)) {
+      return msgPool::invalid($this->getLabel(), $this->value, $this->pattern, htmlentities($this->example));
+    }
+  }
+
+  function setAutocomplete ($bool)
+  {
+    $this->autocomplete = $bool;
+  }
+
+  function getAutocomplete ()
+  {
+    return $this->autocomplete;
+  }
+}
+
+/*! \brief This class allow to handle easily a String LDAP attribute that appears as a text area
+ *
+ */
+class TextAreaAttribute extends StringAttribute
+{
+  function renderFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $display  = '<textarea name="'.$id.'" id="'.$id.'"'.
+                ($this->disabled? 'disabled="disabled"':'').'>'.
+                '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}</textarea>';
+    return $this->renderAcl($display);
+  }
+}
+
+/*! \brief This class allow to handle easily a String LDAP attribute that contains a password
+ *
+ */
+class PasswordAttribute extends StringAttribute
+{
+  protected $autocomplete = FALSE;
+
+  function renderFormInput ()
+  {
+    $id = $this->getHtmlId();
+    $display  = $this->renderInputField(
+      'password', $id,
+      array(
+        'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}',
+        'autocomplete' => ($this->autocomplete?'on':'off'),
+      )
+    );
+    if ($this->autocomplete === FALSE) {
+      $display = '{literal}<input autocomplete="off" value="foolautocompleteworkaround" type="text" style="display:none;"/>{/literal}'.$display;
+    }
+    return $this->renderAcl($display);
+  }
+
+  function renderTemplateInput ()
+  {
+    return parent::renderFormInput();
+  }
+}
+
diff --git a/include/simpleplugin/class_Attribute.inc b/include/simpleplugin/class_Attribute.inc
new file mode 100644
index 0000000000000000000000000000000000000000..14bf31c406bc2db2f0caf87d45c45bc49f839368
--- /dev/null
+++ b/include/simpleplugin/class_Attribute.inc
@@ -0,0 +1,826 @@
+<?php
+/*
+  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
+  Copyright (C) 2012-2016  FusionDirectory
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+/*! \brief This class allow to handle easily any kind of LDAP attribute
+ *
+ */
+class Attribute
+{
+  /* \brief Name of this attribute in the LDAP */
+  private $ldapName;
+  /* \brief Label of this attribute in the form */
+  private $label;
+  /* \brief Description of this attribute */
+  private $description;
+  /* \brief Is this attribute mandatory */
+  private $required;
+  /* \brief Should this attribute be saved into the LDAP */
+  private $inLdap = TRUE;
+  /* \brief Should this attribute be unique
+   * FALSE  -> no unicity check
+   * one    -> unicity check in the same base -> broken right now because of object ous
+   * sub    -> unicity check in the same subtree
+   *  \__> this should not be used as it’s breaking reciprocity
+   * whole  -> unicity check in the whole LDAP
+   */
+  private $unique = FALSE;
+
+  /* \brief Prefix for the html id */
+  protected $htmlid_prefix = '';
+  /* \brief Should this attribute be shown */
+  protected $visible = TRUE;
+  /* \brief Name of the ACL to use, empty if we need our own */
+  protected $acl;
+  /* \brief Is this attribute disabled */
+  protected $disabled = FALSE;
+  /* \brief Should this attribute submit formular when changing value
+   * If this is not a boolean it is a string containing a method name to call on the plugin when changing value */
+  protected $submitForm = FALSE;
+  /* \brief Value of this attribute */
+  protected $value;
+  /* \brief Value we read from POST */
+  protected $postValue;
+  /* \brief Default value of this attribute */
+  protected $defaultValue;
+  /* \brief Initial value of this attribute */
+  protected $initialValue;
+  /* \brief Reference to the plugin */
+  protected $plugin;
+  /* \brief Array of attributes to manage (prefix => value => attribute)
+   * Prefix should be 'erase' or 'disable' */
+  protected $managedAttributes = array();
+  /* \brief Array of multiple values groups for managed attributes */
+  protected $managedAttributesMultipleValues = array();
+
+  /* \bried Array of booleans telling for each managing attributes if he's disabling us */
+  protected $managingAttributesOrders = array();
+
+  /*! \brief The constructor of Attribute
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param mixed defaultValue The default value for this attribute
+   *  \param string acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   */
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = "", $acl = "")
+  {
+    $this->label        = $label;
+    $this->description  = $description;
+    $this->ldapName     = $ldapName;
+    $this->required     = $required;
+    $this->defaultValue = $defaultValue;
+    $this->value        = $defaultValue;
+    $this->postValue    = $this->value;
+    $this->acl          = $acl;
+    $this->plugin       = NULL;
+  }
+
+  /*! \brief Set the parent plugin for this attribute
+   *
+   *  \param simplePlugin &$plugin The parent plugin
+   */
+  function setParent (&$plugin)
+  {
+    $this->plugin = $plugin;
+    $this->manageAttributes($this->getValue());
+  }
+
+  function setInLdap ($inLdap)
+  {
+    $this->inLdap = $inLdap;
+  }
+
+  function setVisible ($visible)
+  {
+    $this->visible = $visible;
+  }
+
+  function isVisible ()
+  {
+    return $this->visible;
+  }
+
+  function setUnique ($unique)
+  {
+    if ($unique === TRUE) {
+      $this->unique = 'one';
+    } else {
+      $this->unique = $unique;
+    }
+  }
+
+  function getUnique ()
+  {
+    return $this->unique;
+  }
+
+  function isInLdap ()
+  {
+    return $this->inLdap;
+  }
+
+  function setValue ($value)
+  {
+    $old_value    = $this->value;
+    $this->value  = $value;
+    if (($this->submitForm != FALSE) && ($this->submitForm !== TRUE) && ($old_value != $value) && is_object($this->plugin)) {
+      $func = $this->submitForm;
+      $this->plugin->$func();
+    }
+    $this->manageAttributes($this->value);
+  }
+
+  /*! \brief Set the postValue */
+  function setPostValue ($value)
+  {
+    if ($this->isVisible()) {
+      $this->postValue = $this->fixPostValue($value);
+      $this->manageAttributes($this->postValue);
+    }
+  }
+
+  /*! \brief In case a treatment is needed on POST content */
+  function fixPostValue ($value)
+  {
+    return $value;
+  }
+
+  /*! \brief Reset this attribute to its default value
+   */
+  function resetToDefault ()
+  {
+    $this->setValue($this->defaultValue);
+  }
+
+  function getValue ()
+  {
+    return $this->value;
+  }
+
+  /* Return the value as an array of values to be displayed in a table columns */
+  function getArrayValue ()
+  {
+    return array($this->displayValue($this->getValue()));
+  }
+
+  function getLdapName ()
+  {
+    return $this->ldapName;
+  }
+
+  function getHtmlId ()
+  {
+    return $this->htmlid_prefix.preg_replace('/[\/\-,.#:;]/', '_', $this->getLdapName());
+  }
+
+  /* html id to put in the "for" attribute of our "label" tag */
+  function getForHtmlId ()
+  {
+    return $this->getHtmlId();
+  }
+
+  function getLabel ()
+  {
+    return $this->label;
+  }
+
+  function getDescription ()
+  {
+    return $this->description;
+  }
+
+  function getAcl ()
+  {
+    if (empty($this->acl)) {
+      return $this->getHtmlId();
+    } else {
+      return $this->acl;
+    }
+  }
+
+  function setAcl ($acl)
+  {
+    $this->acl = $acl;
+  }
+
+  function isRequired ()
+  {
+    return $this->required;
+  }
+
+  function setRequired ($bool)
+  {
+    $this->required = $bool;
+  }
+
+  protected function setLabel ($label)
+  {
+    $this->label = $label;
+  }
+
+  protected function setDescription ($description)
+  {
+    $this->description = $description;
+  }
+
+  function setDisabled ($disabled)
+  {
+    $this->disabled = $disabled;
+  }
+
+  function isDisabled ()
+  {
+    return $this->disabled;
+  }
+
+  function setManagingDisabled ($sender, $value)
+  {
+    $this->managingAttributesOrders[$sender] = $value;
+    $this->setDisabled(array_reduce($this->managingAttributesOrders,
+      function ($a, $b)
+      {
+        return $a || $b;
+      }
+    ));
+  }
+
+  function setSubmitForm ($submitForm)
+  {
+    $this->submitForm = $submitForm;
+  }
+
+  /*! \brief If in LDAP, loads this attribute value from the attrs array
+   */
+  function loadValue ($attrs)
+  {
+    if ($this->inLdap) {
+      $this->loadAttrValue($attrs);
+    }
+    $this->initialValue = $this->getValue();
+  }
+
+  /*! \brief Loads this attribute value from the attrs array
+   */
+  protected function loadAttrValue ($attrs)
+  {
+    if (isset($attrs[$this->getLdapName()])) {
+      $this->setValue($this->inputValue($attrs[$this->getLdapName()][0]));
+    }
+  }
+
+  function getInitialValue ()
+  {
+    return $this->initialValue;
+  }
+
+  function setInitialValue ($value)
+  {
+    $this->initialValue = $value;
+  }
+
+  function hasChanged ()
+  {
+    return ($this->getValue() !== $this->initialValue);
+  }
+
+  function displayValue ($value)
+  {
+    return $value;
+  }
+
+  /*! \brief Return the ldap value in the correct intern format value
+   *
+   *  \param $ldapValue The value as found in the LDAP
+   */
+  function inputValue ($ldapValue)
+  {
+    return $ldapValue;
+  }
+
+  function setDefaultValue ($value)
+  {
+    $this->defaultValue = $value;
+  }
+
+  /*! \brief Set a list of attributes that are managed by this attributes.
+   * See FusionDirectory wiki for detailed documentation
+   */
+  function setManagedAttributes ($mAttributes)
+  {
+    if (isset($mAttributes['multiplevalues'])) {
+      $this->managedAttributesMultipleValues = $mAttributes['multiplevalues'];
+      unset($mAttributes['multiplevalues']);
+    } else {
+      $this->managedAttributesMultipleValues = array();
+    }
+    $this->managedAttributes = $mAttributes;
+    $this->manageAttributes($this->getValue());
+  }
+
+  protected function isValueManagingValue ($myvalue, $mavalue)
+  {
+    if (isset($this->managedAttributesMultipleValues[$mavalue])) {
+      return in_array($myvalue, $this->managedAttributesMultipleValues[$mavalue]);
+    } else {
+      return ($myvalue == $mavalue);
+    }
+  }
+
+  function manageAttributes ($myvalue)
+  {
+    if ($this->plugin === NULL) {
+      return FALSE;
+    }
+    foreach ($this->managedAttributes as $array) {
+      foreach ($array as $value => $attributes) {
+        foreach ($attributes as $attribute) {
+          $disabled = $this->isValueManagingValue($myvalue, $value);
+          $this->plugin->attributesAccess[$attribute]->setManagingDisabled($this->getLdapName(), $disabled);
+        }
+      }
+    }
+    return TRUE;
+  }
+
+  /*! \brief Update this attributes postValue depending of the $_POST values
+   */
+  function loadPostValue ()
+  {
+    if ($this->isVisible()) {
+      $this->postValue = $this->value;
+      if (isset($_POST[$this->getHtmlId()])) {
+        $this->setPostValue($_POST[$this->getHtmlId()]);
+      }
+    }
+  }
+
+  /*! \brief Apply this attribute postValue in value if this attribute is enabled
+   */
+  function applyPostValue ()
+  {
+    if (!$this->disabled && $this->isVisible()) {
+      $this->setValue($this->postValue);
+    }
+  }
+
+  /*! \brief Computes LDAP value
+   */
+  function computeLdapValue ()
+  {
+    return $this->getValue();
+  }
+
+  /*! \brief Fill LDAP value in the attrs array
+   */
+  function fillLdapValue (&$attrs)
+  {
+    if ($this->inLdap) {
+      $value = $this->computeLdapValue();
+      if ($value !== '') {
+        $attrs[$this->getLdapName()] = $value;
+      } else {
+        $attrs[$this->getLdapName()] = array();
+      }
+    }
+  }
+
+  /*! \brief Post-modify the attrs array if needed (used for erasing managed attributes)
+   */
+  function fillLdapValueHook (&$attrs)
+  {
+    foreach ($this->managedAttributes as $prefix => $array) {
+      if ($prefix != 'erase') {
+        continue;
+      }
+      foreach ($array as $value => $attributes) {
+        $myvalue = $this->getValue();
+        $erase = $this->isValueManagingValue($myvalue, $value);
+        if (!$erase) {
+          continue;
+        }
+        foreach ($attributes as $attribute) {
+          $attrs[$attribute] = array();
+        }
+      }
+    }
+  }
+
+  /*! \brief Check the correctness of this attribute
+   */
+  function check ()
+  {
+    global $config;
+    $value = $this->getValue();
+    if ($this->isRequired() && !$this->disabled && (($value === "") || ($value === array()))) {
+      return msgPool::required($this->getLabel());
+    } elseif (($this->unique !== FALSE) && !$this->disabled) {
+      $value = $this->computeLdapValue();
+      if (($value === "") || ($value === array())) {
+        return;
+      }
+      $ldap = $config->get_ldap_link();
+      $base = $config->current['BASE'];
+      if ($this->unique !== 'whole') {
+        if (isset($this->plugin->base) && !empty($this->plugin->base)) {
+          $base = $this->plugin->base;
+        } elseif (isset($this->plugin->dn) && !empty($this->plugin->dn) && ($this->plugin->dn != 'new')) {
+          $base = dn2base($this->plugin->dn);
+        }
+      }
+      $ldap->cd($base);
+      if (is_array($value)) {
+        $filter = '(|('.$this->getLdapName().'='.join(')('.$this->getLdapName().'=', array_map('ldap_escape_f', $value)).'))';
+      } else {
+        $filter = '('.$this->getLdapName().'='.ldap_escape_f($value).')';
+      }
+      $infos = pluglist::pluginInfos(get_class($this->plugin));
+      $filters = array_map(
+        function ($key, $ot)
+        {
+          if (!is_numeric($key)) {
+            $ot = $key;
+          }
+          try {
+            $oinfos = objects::infos($ot);
+            return $oinfos['filter'];
+          } catch (NonExistingObjectTypeException $e) {
+            return '';
+          }
+        },
+        array_keys($infos['plObjectType']),
+        array_values($infos['plObjectType'])
+      );
+      $pluginFilter = $this->plugin->getObjectClassFilter();
+      if (!empty($pluginFilter)) {
+        $filters[] = $pluginFilter;
+      }
+      $filter = '(&'.$filter.implode($filters).')';
+      $ldap->search($filter, array($this->getLdapName()));
+      $branches = array_filter(
+        array_map(
+          function ($key, $ot)
+          {
+            if (!is_numeric($key)) {
+              $ot = $key;
+            }
+            try {
+              $oinfos = objects::infos($ot);
+              return $oinfos['ou'];
+            } catch (NonExistingObjectTypeException $e) {
+              return FALSE;
+            }
+          },
+          array_keys($infos['plObjectType']),
+          array_values($infos['plObjectType'])
+        ),
+        function ($ou)
+        {
+          return ($ou !== FALSE);
+        }
+      );
+      while ($attrs = $ldap->fetch()) {
+        if ($attrs['dn'] != $this->plugin->dn) {
+          $dn_base  = preg_replace('/^[^,]+,/', '', $attrs['dn']);
+          $found    = FALSE;
+          if ($this->unique === 'one') {
+            /* Check that this entry is in a concerned branch */
+            foreach ($branches as $branch) {
+              if ($branch.$base == $dn_base) {
+                $dn_base  = preg_replace('/^'.preg_quote($branch, '/').'/', '', $dn_base);
+                $found    = TRUE;
+                break;
+              }
+            }
+          } else { /* whole (or sub) */
+            /* Check that this entry is in a concerned branch */
+            foreach ($branches as $branch) {
+              if (preg_match('/^'.preg_quote($branch, '/').'/', $dn_base)) {
+                $dn_base  = preg_replace('/^'.preg_quote($branch, '/').'/', '', $dn_base);
+                $found    = TRUE;
+                break;
+              }
+            }
+            if (!in_array($dn_base, $config->departments)) {
+              continue;
+            }
+          }
+          if (!$found) {
+            continue;
+          }
+
+          return msgPool::duplicated($this->getLabel(), $attrs['dn']);
+        }
+      }
+    }
+  }
+
+  /*! \brief Render this attribute form input(s)
+   *
+   *  \param array& attributes the attributes array
+   *
+   *  \param bool readOnly should we show text or input
+   */
+  function renderAttribute(&$attributes, $readOnly)
+  {
+    if ($this->visible) {
+      if ($readOnly) {
+        $input = '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}';
+      } elseif (is_object($this->plugin) && $this->plugin->is_template) {
+        $input = $this->renderTemplateInput();
+      } else {
+        $input = $this->renderFormInput();
+      }
+      $attributes[$this->getLdapName()] = array(
+        'htmlid'      => $this->getForHtmlId(),
+        'label'       => '{literal}'.$this->getLabel().'{/literal}'.($this->isRequired()?'{$must}':''),
+        'description' => ($this->isRequired()?sprintf(_("%s (required)"), $this->getDescription()):$this->getDescription()),
+        'input'       => $input,
+      );
+    }
+  }
+
+  /*! \brief Serialize this attribute for RPC requests
+   *
+   *  \param array& attributes the attributes array
+   */
+  function serializeAttribute(&$attributes, $form = TRUE)
+  {
+    if (!$form || $this->visible) {
+      $class = get_class($this);
+      while ($class != 'Attribute') {
+        $type[] = $class;
+        $class  = get_parent_class($class);
+      }
+       /* To avoid empty array */
+      $type[] = 'Attribute';
+      $infos = array(
+        'htmlid'      => $this->getHtmlId(),
+        'label'       => $this->getLabel(),
+        'required'    => $this->isRequired(),
+        'disabled'    => $this->disabled,
+        'description' => $this->getDescription(),
+        'value'       => $this->getValue(),
+        'default'     => $this->defaultValue,
+        'type'        => $type,
+      );
+      if (!$form) {
+        $infos['inldap']   = $this->isInLdap();
+        $infos['visible']  = $this->visible;
+        $infos['htmlids']  = $this->htmlIds();
+      }
+      $attributes[$this->getLdapName()] = $infos;
+    }
+  }
+
+  /*! \brief Apply value from RPC requests
+   *
+   *  \param array values the values array
+   */
+  function deserializeValue($values)
+  {
+    if (isset($values[$this->getLdapName()])) {
+      $this->setValue($values[$this->getLdapName()]);
+    }
+  }
+
+  /*! \brief Add ACL information around display
+   *
+   *  \param string $display the display information to pass through ACL
+   */
+  function renderAcl($display)
+  {
+    return '{render acl=$'.$this->getAcl()."ACL}\n$display\n{/render}";
+  }
+
+  /*! \brief Get ACL information about the ACL we need to create
+   */
+  function getAclInfo ()
+  {
+    /* If acl is not empty, we use an acl that is not ours, we have no acl to create */
+    if (empty($this->acl)) {
+      return array(
+        'name' => $this->getHtmlId(),
+        'desc' => $this->getDescription()
+      );
+    } else {
+      return FALSE;
+    }
+  }
+
+  protected function changeStateJS ()
+  {
+    return join(array_map(
+      function ($id) {
+        return 'changeState('.json_encode($id).');';
+      },
+      $this->htmlIds()
+    ));
+  }
+
+  public function htmlIds()
+  {
+    return array($this->getHtmlId());
+  }
+
+  protected function managedAttributesJS ()
+  {
+    $js = '';
+    $id = $this->getHtmlId();
+    foreach ($this->managedAttributes as $array) {
+      foreach ($array as $value => $attributes) {
+        if (isset($this->managedAttributesMultipleValues[$value])) {
+          $js .= 'disableAttributes = inArray(document.getElementById('.json_encode($id).').value,'.json_encode($this->managedAttributesMultipleValues[$value]).');';
+        } else {
+          $js .= 'disableAttributes = (document.getElementById('.json_encode($id).').value == '.json_encode($value).');'."\n";
+        }
+        foreach ($attributes as $attribute) {
+          foreach ($this->plugin->attributesAccess[$attribute]->htmlIds() as $htmlId) {
+            $js .= 'if (document.getElementById('.json_encode($htmlId).')) { document.getElementById('.json_encode($htmlId).').disabled = disableAttributes; }'."\n";
+          }
+        }
+      }
+    }
+    return $js;
+  }
+
+  function renderTemplateInput ()
+  {
+    return $this->renderFormInput();
+  }
+
+  function foreignKeyUpdate($oldvalue, $newvalue, $source)
+  {
+    if ($source['MODE'] == 'move') {
+      if ($this->getValue() == $oldvalue) {
+        $this->setValue($newvalue);
+      }
+    }
+  }
+
+  function foreignKeyCheck($value, $source)
+  {
+    return ($this->getValue() == $value);
+  }
+
+  protected function renderInputField($type, $name, $attributes = array())
+  {
+    $input  = '<input type="'.$type.'" '.
+              'name="'.$name.'" id="'.$name.'"'.
+              ($this->disabled? ' disabled="disabled"':'');
+    foreach ($attributes as $label => $value) {
+      $input .= ' '.$label.'="'.$value.'"';
+    }
+    $input .= '/>';
+    return $input;
+  }
+}
+
+class HiddenAttribute extends Attribute
+{
+  /*! \brief The constructor of HiddenAttribute
+   *
+   *  \param string $label The label to show for this attribute
+   *  \param string $description A more detailed description for the attribute
+   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
+   *  \param boolean $required Is this attribute mandatory or not
+   *  \param mixed $defaultValue The default value for this attribute
+   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
+   */
+  function __construct ($ldapName, $required = FALSE, $defaultValue = "", $acl = "", $label = NULL, $description = "hidden")
+  {
+    if ($label === NULL) {
+      $label = $ldapName;
+    }
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->setVisible(FALSE);
+  }
+}
+
+class HiddenArrayAttribute extends HiddenAttribute
+{
+  protected function loadAttrValue ($attrs)
+  {
+    if (isset($attrs[$this->getLdapName()]['count'])) {
+      $this->value = array();
+      for ($i = 0; $i < $attrs[$this->getLdapName()]['count']; $i++) {
+        $this->value[] = $attrs[$this->getLdapName()][$i];
+      }
+    } else {
+      $this->resetToDefault();
+    }
+  }
+}
+
+/* Dummy attribute class in order to give stats information to the template */
+class FakeAttribute extends Attribute
+{
+  function __construct ($ldapName)
+  {
+    parent::__construct("Fake one", "", $ldapName, FALSE, "", "noacl");
+    $this->setInLdap(FALSE);
+  }
+
+  function renderAttribute(&$attributes, $readOnly)
+  {
+    $attributes[$this->getLdapName()] = $this->getValue();
+  }
+}
+
+/*! \brief This class allow to display an attribute.
+ *
+ * It can be used to display an attribute value the user is never allowed to modify.
+ * (But FD might edit it)
+ */
+class DisplayLDAPAttribute extends Attribute
+{
+  protected $allowHTML = FALSE;
+
+  function renderFormInput ()
+  {
+    if ($this->allowHTML) {
+      return $this->getValue();
+    } else {
+      return htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8');
+    }
+  }
+
+  function setAllowHTML ($allowHTML)
+  {
+    $this->allowHTML = $allowHTML;
+  }
+}
+
+/*! \brief This class allow to display an attribute.
+ *
+ * It can be used to display an attribute value the user and FD are never allowed to modify.
+ */
+class ReadOnlyLDAPAttribute extends DisplayLDAPAttribute
+{
+  function fillLdapValue (&$attrs)
+  {
+    /* Remove crap made by plugin */
+    unset($attrs[$this->getLdapName()]);
+  }
+}
+
+/*! \brief This class allow to display an attribute.
+ *
+ * It can be used to display an attribute value the user is never allowed to modify.
+ */
+class DisplayLDAPArrayAttribute extends Attribute
+{
+  protected function loadAttrValue ($attrs)
+  {
+    if (isset($attrs[$this->getLdapName()]['count'])) {
+      $this->value = array();
+      for ($i = 0; $i < $attrs[$this->getLdapName()]['count']; $i++) {
+        $this->value[] = $attrs[$this->getLdapName()][$i];
+      }
+    } else {
+      $this->resetToDefault();
+    }
+  }
+
+  function renderFormInput ()
+  {
+    $value = $this->getValue();
+    if (is_array($value)) {
+      $value = join(', ', $value);
+    }
+    return htmlentities($value, ENT_COMPAT, 'UTF-8');
+  }
+}
+
+/*! \brief This class allow to display a text in front of an attribute.
+ *
+ * For instance, it can be used to display a link.
+ */
+class DisplayAttribute extends DisplayLDAPAttribute
+{
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = "", $acl = "")
+  {
+    parent::__construct ($label, $description, $ldapName, $required, $defaultValue, $acl);
+    $this->setInLdap(FALSE);
+  }
+}
+
+?>
diff --git a/include/simpleplugin/class_attribute.inc b/include/simpleplugin/class_attribute.inc
deleted file mode 100644
index ab7a6a30205abfc811faf749a92761ce06c56614..0000000000000000000000000000000000000000
--- a/include/simpleplugin/class_attribute.inc
+++ /dev/null
@@ -1,3116 +0,0 @@
-<?php
-/*
-  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
-  Copyright (C) 2012-2016  FusionDirectory
-
-  This program is free software; you can redistribute it and/or modify
-  it under the terms of the GNU General Public License as published by
-  the Free Software Foundation; either version 2 of the License, or
-  (at your option) any later version.
-
-  This program is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-
-  You should have received a copy of the GNU General Public License
-  along with this program; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
-*/
-
-/*! \brief This class allow to handle easily any kind of LDAP attribute
- *
- */
-class Attribute
-{
-  /* \brief Name of this attribute in the LDAP */
-  private $ldapName;
-  /* \brief Label of this attribute in the form */
-  private $label;
-  /* \brief Description of this attribute */
-  private $description;
-  /* \brief Is this attribute mandatory */
-  private $required;
-  /* \brief Should this attribute be saved into the LDAP */
-  private $inLdap = TRUE;
-  /* \brief Should this attribute be unique
-   * FALSE  -> no unicity check
-   * one    -> unicity check in the same base -> broken right now because of object ous
-   * sub    -> unicity check in the same subtree
-   *  \__> this should not be used as it’s breaking reciprocity
-   * whole  -> unicity check in the whole LDAP
-   */
-  private $unique = FALSE;
-
-  /* \brief Prefix for the html id */
-  protected $htmlid_prefix = '';
-  /* \brief Should this attribute be shown */
-  protected $visible = TRUE;
-  /* \brief Name of the ACL to use, empty if we need our own */
-  protected $acl;
-  /* \brief Is this attribute disabled */
-  protected $disabled = FALSE;
-  /* \brief Should this attribute submit formular when changing value
-   * If this is not a boolean it is a string containing a method name to call on the plugin when changing value */
-  protected $submitForm = FALSE;
-  /* \brief Value of this attribute */
-  protected $value;
-  /* \brief Value we read from POST */
-  protected $postValue;
-  /* \brief Default value of this attribute */
-  protected $defaultValue;
-  /* \brief Initial value of this attribute */
-  protected $initialValue;
-  /* \brief Reference to the plugin */
-  protected $plugin;
-  /* \brief Array of attributes to manage (prefix => value => attribute)
-   * Prefix should be 'erase' or 'disable' */
-  protected $managedAttributes = array();
-  /* \brief Array of multiple values groups for managed attributes */
-  protected $managedAttributesMultipleValues = array();
-
-  /* \bried Array of booleans telling for each managing attributes if he's disabling us */
-  protected $managingAttributesOrders = array();
-
-  /*! \brief The constructor of Attribute
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param mixed defaultValue The default value for this attribute
-   *  \param string acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   */
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = "", $acl = "")
-  {
-    $this->label        = $label;
-    $this->description  = $description;
-    $this->ldapName     = $ldapName;
-    $this->required     = $required;
-    $this->defaultValue = $defaultValue;
-    $this->value        = $defaultValue;
-    $this->postValue    = $this->value;
-    $this->acl          = $acl;
-    $this->plugin       = NULL;
-  }
-
-  /*! \brief Set the parent plugin for this attribute
-   *
-   *  \param simplePlugin &$plugin The parent plugin
-   */
-  function setParent (&$plugin)
-  {
-    $this->plugin = $plugin;
-    $this->manageAttributes($this->getValue());
-  }
-
-  function setInLdap ($inLdap)
-  {
-    $this->inLdap = $inLdap;
-  }
-
-  function setVisible ($visible)
-  {
-    $this->visible = $visible;
-  }
-
-  function isVisible ()
-  {
-    return $this->visible;
-  }
-
-  function setUnique ($unique)
-  {
-    if ($unique === TRUE) {
-      $this->unique = 'one';
-    } else {
-      $this->unique = $unique;
-    }
-  }
-
-  function getUnique ()
-  {
-    return $this->unique;
-  }
-
-  function isInLdap ()
-  {
-    return $this->inLdap;
-  }
-
-  function setValue ($value)
-  {
-    $old_value    = $this->value;
-    $this->value  = $value;
-    if (($this->submitForm != FALSE) && ($this->submitForm !== TRUE) && ($old_value != $value) && is_object($this->plugin)) {
-      $func = $this->submitForm;
-      $this->plugin->$func();
-    }
-    $this->manageAttributes($this->value);
-  }
-
-  /*! \brief Set the postValue */
-  function setPostValue ($value)
-  {
-    if ($this->isVisible()) {
-      $this->postValue = $this->fixPostValue($value);
-      $this->manageAttributes($this->postValue);
-    }
-  }
-
-  /*! \brief In case a treatment is needed on POST content */
-  function fixPostValue ($value)
-  {
-    return $value;
-  }
-
-  /*! \brief Reset this attribute to its default value
-   */
-  function resetToDefault ()
-  {
-    $this->setValue($this->defaultValue);
-  }
-
-  function getValue ()
-  {
-    return $this->value;
-  }
-
-  /* Return the value as an array of values to be displayed in a table columns */
-  function getArrayValue ()
-  {
-    return array($this->displayValue($this->getValue()));
-  }
-
-  function getLdapName ()
-  {
-    return $this->ldapName;
-  }
-
-  function getHtmlId ()
-  {
-    return $this->htmlid_prefix.preg_replace('/[\/\-,.#:;]/', '_', $this->getLdapName());
-  }
-
-  /* html id to put in the "for" attribute of our "label" tag */
-  function getForHtmlId ()
-  {
-    return $this->getHtmlId();
-  }
-
-  function getLabel ()
-  {
-    return $this->label;
-  }
-
-  function getDescription ()
-  {
-    return $this->description;
-  }
-
-  function getAcl ()
-  {
-    if (empty($this->acl)) {
-      return $this->getHtmlId();
-    } else {
-      return $this->acl;
-    }
-  }
-
-  function setAcl ($acl)
-  {
-    $this->acl = $acl;
-  }
-
-  function isRequired ()
-  {
-    return $this->required;
-  }
-
-  function setRequired ($bool)
-  {
-    $this->required = $bool;
-  }
-
-  protected function setLabel ($label)
-  {
-    $this->label = $label;
-  }
-
-  protected function setDescription ($description)
-  {
-    $this->description = $description;
-  }
-
-  function setDisabled ($disabled)
-  {
-    $this->disabled = $disabled;
-  }
-
-  function isDisabled ()
-  {
-    return $this->disabled;
-  }
-
-  function setManagingDisabled ($sender, $value)
-  {
-    $this->managingAttributesOrders[$sender] = $value;
-    $this->setDisabled(array_reduce($this->managingAttributesOrders,
-      function ($a, $b)
-      {
-        return $a || $b;
-      }
-    ));
-  }
-
-  function setSubmitForm ($submitForm)
-  {
-    $this->submitForm = $submitForm;
-  }
-
-  /*! \brief If in LDAP, loads this attribute value from the attrs array
-   */
-  function loadValue ($attrs)
-  {
-    if ($this->inLdap) {
-      $this->loadAttrValue($attrs);
-    }
-    $this->initialValue = $this->getValue();
-  }
-
-  /*! \brief Loads this attribute value from the attrs array
-   */
-  protected function loadAttrValue ($attrs)
-  {
-    if (isset($attrs[$this->getLdapName()])) {
-      $this->setValue($this->inputValue($attrs[$this->getLdapName()][0]));
-    }
-  }
-
-  function getInitialValue ()
-  {
-    return $this->initialValue;
-  }
-
-  function setInitialValue ($value)
-  {
-    $this->initialValue = $value;
-  }
-
-  function hasChanged ()
-  {
-    return ($this->getValue() !== $this->initialValue);
-  }
-
-  function displayValue ($value)
-  {
-    return $value;
-  }
-
-  /*! \brief Return the ldap value in the correct intern format value
-   *
-   *  \param $ldapValue The value as found in the LDAP
-   */
-  function inputValue ($ldapValue)
-  {
-    return $ldapValue;
-  }
-
-  function setDefaultValue ($value)
-  {
-    $this->defaultValue = $value;
-  }
-
-  /*! \brief Set a list of attributes that are managed by this attributes.
-   * See FusionDirectory wiki for detailed documentation
-   */
-  function setManagedAttributes ($mAttributes)
-  {
-    if (isset($mAttributes['multiplevalues'])) {
-      $this->managedAttributesMultipleValues = $mAttributes['multiplevalues'];
-      unset($mAttributes['multiplevalues']);
-    } else {
-      $this->managedAttributesMultipleValues = array();
-    }
-    $this->managedAttributes = $mAttributes;
-    $this->manageAttributes($this->getValue());
-  }
-
-  protected function isValueManagingValue ($myvalue, $mavalue)
-  {
-    if (isset($this->managedAttributesMultipleValues[$mavalue])) {
-      return in_array($myvalue, $this->managedAttributesMultipleValues[$mavalue]);
-    } else {
-      return ($myvalue == $mavalue);
-    }
-  }
-
-  function manageAttributes ($myvalue)
-  {
-    if ($this->plugin === NULL) {
-      return FALSE;
-    }
-    foreach ($this->managedAttributes as $array) {
-      foreach ($array as $value => $attributes) {
-        foreach ($attributes as $attribute) {
-          $disabled = $this->isValueManagingValue($myvalue, $value);
-          $this->plugin->attributesAccess[$attribute]->setManagingDisabled($this->getLdapName(), $disabled);
-        }
-      }
-    }
-    return TRUE;
-  }
-
-  /*! \brief Update this attributes postValue depending of the $_POST values
-   */
-  function loadPostValue ()
-  {
-    if ($this->isVisible()) {
-      $this->postValue = $this->value;
-      if (isset($_POST[$this->getHtmlId()])) {
-        $this->setPostValue($_POST[$this->getHtmlId()]);
-      }
-    }
-  }
-
-  /*! \brief Apply this attribute postValue in value if this attribute is enabled
-   */
-  function applyPostValue ()
-  {
-    if (!$this->disabled && $this->isVisible()) {
-      $this->setValue($this->postValue);
-    }
-  }
-
-  /*! \brief Computes LDAP value
-   */
-  function computeLdapValue ()
-  {
-    return $this->getValue();
-  }
-
-  /*! \brief Fill LDAP value in the attrs array
-   */
-  function fillLdapValue (&$attrs)
-  {
-    if ($this->inLdap) {
-      $value = $this->computeLdapValue();
-      if ($value !== '') {
-        $attrs[$this->getLdapName()] = $value;
-      } else {
-        $attrs[$this->getLdapName()] = array();
-      }
-    }
-  }
-
-  /*! \brief Post-modify the attrs array if needed (used for erasing managed attributes)
-   */
-  function fillLdapValueHook (&$attrs)
-  {
-    foreach ($this->managedAttributes as $prefix => $array) {
-      if ($prefix != 'erase') {
-        continue;
-      }
-      foreach ($array as $value => $attributes) {
-        $myvalue = $this->getValue();
-        $erase = $this->isValueManagingValue($myvalue, $value);
-        if (!$erase) {
-          continue;
-        }
-        foreach ($attributes as $attribute) {
-          $attrs[$attribute] = array();
-        }
-      }
-    }
-  }
-
-  /*! \brief Check the correctness of this attribute
-   */
-  function check ()
-  {
-    global $config;
-    $value = $this->getValue();
-    if ($this->isRequired() && !$this->disabled && (($value === "") || ($value === array()))) {
-      return msgPool::required($this->getLabel());
-    } elseif (($this->unique !== FALSE) && !$this->disabled) {
-      $value = $this->computeLdapValue();
-      if (($value === "") || ($value === array())) {
-        return;
-      }
-      $ldap = $config->get_ldap_link();
-      $base = $config->current['BASE'];
-      if ($this->unique !== 'whole') {
-        if (isset($this->plugin->base) && !empty($this->plugin->base)) {
-          $base = $this->plugin->base;
-        } elseif (isset($this->plugin->dn) && !empty($this->plugin->dn) && ($this->plugin->dn != 'new')) {
-          $base = dn2base($this->plugin->dn);
-        }
-      }
-      $ldap->cd($base);
-      if (is_array($value)) {
-        $filter = '(|('.$this->getLdapName().'='.join(')('.$this->getLdapName().'=', array_map('ldap_escape_f', $value)).'))';
-      } else {
-        $filter = '('.$this->getLdapName().'='.ldap_escape_f($value).')';
-      }
-      $infos = pluglist::pluginInfos(get_class($this->plugin));
-      $filters = array_map(
-        function ($key, $ot)
-        {
-          if (!is_numeric($key)) {
-            $ot = $key;
-          }
-          try {
-            $oinfos = objects::infos($ot);
-            return $oinfos['filter'];
-          } catch (NonExistingObjectTypeException $e) {
-            return '';
-          }
-        },
-        array_keys($infos['plObjectType']),
-        array_values($infos['plObjectType'])
-      );
-      $pluginFilter = $this->plugin->getObjectClassFilter();
-      if (!empty($pluginFilter)) {
-        $filters[] = $pluginFilter;
-      }
-      $filter = '(&'.$filter.implode($filters).')';
-      $ldap->search($filter, array($this->getLdapName()));
-      $branches = array_filter(
-        array_map(
-          function ($key, $ot)
-          {
-            if (!is_numeric($key)) {
-              $ot = $key;
-            }
-            try {
-              $oinfos = objects::infos($ot);
-              return $oinfos['ou'];
-            } catch (NonExistingObjectTypeException $e) {
-              return FALSE;
-            }
-          },
-          array_keys($infos['plObjectType']),
-          array_values($infos['plObjectType'])
-        )
-      );
-      while ($attrs = $ldap->fetch()) {
-        if ($attrs['dn'] != $this->plugin->dn) {
-          $dn_base  = preg_replace('/^[^,]+,/', '', $attrs['dn']);
-          $found    = FALSE;
-          if ($this->unique === 'one') {
-            /* Check that this entry is in a concerned branch */
-            foreach ($branches as $branch) {
-              if ($branch.$base == $dn_base) {
-                $dn_base  = preg_replace('/^'.preg_quote($branch, '/').'/', '', $dn_base);
-                $found    = TRUE;
-                break;
-              }
-            }
-          } else { /* whole (or sub) */
-            /* Check that this entry is in a concerned branch */
-            foreach ($branches as $branch) {
-              if (preg_match('/^'.preg_quote($branch, '/').'/', $dn_base)) {
-                $dn_base  = preg_replace('/^'.preg_quote($branch, '/').'/', '', $dn_base);
-                $found    = TRUE;
-                break;
-              }
-            }
-            if (!in_array($dn_base, $config->departments)) {
-              continue;
-            }
-          }
-          if (!$found) {
-            continue;
-          }
-
-          return msgPool::duplicated($this->getLabel(), $attrs['dn']);
-        }
-      }
-    }
-  }
-
-  /*! \brief Render this attribute form input(s)
-   *
-   *  \param array& attributes the attributes array
-   *
-   *  \param bool readOnly should we show text or input
-   */
-  function renderAttribute(&$attributes, $readOnly)
-  {
-    if ($this->visible) {
-      if ($readOnly) {
-        $input = '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}';
-      } elseif (is_object($this->plugin) && $this->plugin->is_template) {
-        $input = $this->renderTemplateInput();
-      } else {
-        $input = $this->renderFormInput();
-      }
-      $attributes[$this->getLdapName()] = array(
-        'htmlid'      => $this->getForHtmlId(),
-        'label'       => '{literal}'.$this->getLabel().'{/literal}'.($this->isRequired()?'{$must}':''),
-        'description' => ($this->isRequired()?sprintf(_("%s (required)"), $this->getDescription()):$this->getDescription()),
-        'input'       => $input,
-      );
-    }
-  }
-
-  /*! \brief Serialize this attribute for RPC requests
-   *
-   *  \param array& attributes the attributes array
-   */
-  function serializeAttribute(&$attributes, $form = TRUE)
-  {
-    if (!$form || $this->visible) {
-      $class = get_class($this);
-      while ($class != 'Attribute') {
-        $type[] = $class;
-        $class  = get_parent_class($class);
-      }
-      $type[] = 'Attribute'; // To avoid empty array
-      $infos = array(
-        'htmlid'      => $this->getHtmlId(),
-        'label'       => $this->getLabel(),
-        'required'    => $this->isRequired(),
-        'disabled'    => $this->disabled,
-        'description' => $this->getDescription(),
-        'value'       => $this->getValue(),
-        'default'     => $this->defaultValue,
-        'type'        => $type,
-      );
-      if (!$form) {
-        $infos['inldap']   = $this->isInLdap();
-        $infos['visible']  = $this->visible;
-        $infos['htmlids']  = $this->htmlIds();
-      }
-      $attributes[$this->getLdapName()] = $infos;
-    }
-  }
-
-  /*! \brief Apply value from RPC requests
-   *
-   *  \param array values the values array
-   */
-  function deserializeValue($values)
-  {
-    if (isset($values[$this->getLdapName()])) {
-      $this->setValue($values[$this->getLdapName()]);
-    }
-  }
-
-  /*! \brief Add ACL information around display
-   *
-   *  \param string $display the display information to pass through ACL
-   */
-  function renderAcl($display)
-  {
-    return '{render acl=$'.$this->getAcl()."ACL}\n$display\n{/render}";
-  }
-
-  /*! \brief Get ACL information about the ACL we need to create
-   */
-  function getAclInfo ()
-  {
-    if (empty($this->acl)) { // If acl is not empty, we use an acl that is not ours, we have no acl to create
-      return array(
-        'name' => $this->getHtmlId(),
-        'desc' => $this->getDescription()
-      );
-    } else {
-      return FALSE;
-    }
-  }
-
-  protected function changeStateJS ()
-  {
-    return join(array_map(
-      function ($id) {
-        return 'changeState('.json_encode($id).');';
-      },
-      $this->htmlIds()
-    ));
-  }
-
-  public function htmlIds()
-  {
-    return array($this->getHtmlId());
-  }
-
-  protected function managedAttributesJS ()
-  {
-    $js = '';
-    $id = $this->getHtmlId();
-    foreach ($this->managedAttributes as $array) {
-      foreach ($array as $value => $attributes) {
-        if (isset($this->managedAttributesMultipleValues[$value])) {
-          $js .= 'disableAttributes = inArray(document.getElementById('.json_encode($id).').value,'.json_encode($this->managedAttributesMultipleValues[$value]).');';
-        } else {
-          $js .= 'disableAttributes = (document.getElementById('.json_encode($id).').value == '.json_encode($value).');'."\n";
-        }
-        foreach ($attributes as $attribute) {
-          foreach ($this->plugin->attributesAccess[$attribute]->htmlIds() as $htmlId) {
-            $js .= 'if (document.getElementById('.json_encode($htmlId).')) { document.getElementById('.json_encode($htmlId).').disabled = disableAttributes; }'."\n";
-          }
-        }
-      }
-    }
-    return $js;
-  }
-
-  function renderTemplateInput ()
-  {
-    return $this->renderFormInput();
-  }
-
-  function foreignKeyUpdate($oldvalue, $newvalue, $source)
-  {
-    if ($source['MODE'] == 'move') {
-      if ($this->getValue() == $oldvalue) {
-        $this->setValue($newvalue);
-      }
-    }
-  }
-
-  function foreignKeyCheck($value, $source)
-  {
-    return ($this->getValue() == $value);
-  }
-
-  protected function renderInputField($type, $name, $attributes = array())
-  {
-    $input  = '<input type="'.$type.'" '.
-              'name="'.$name.'" id="'.$name.'"'.
-              ($this->disabled? ' disabled="disabled"':'');
-    foreach ($attributes as $label => $value) {
-      $input .= ' '.$label.'="'.$value.'"';
-    }
-    $input .= '/>';
-    return $input;
-  }
-}
-
-/*! \brief This class allow to handle easily a Boolean LDAP attribute
- *
- */
-class BooleanAttribute extends Attribute
-{
-  public $trueValue;
-  public $falseValue;
-
-  /*! \brief The constructor of BooleanAttribute
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param mixed $defaultValue The default value for this attribute
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   *  \param mixed $trueValue The value to store in LDAP when this boolean is TRUE. (For weird schemas that uses string or integer to store a boolean)
-   *  \param mixed $falseValue The value to store in LDAP when this boolean is FALSE. (For weird schemas that uses string or integer to store a boolean)
-   */
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = FALSE, $acl = "", $trueValue = "TRUE", $falseValue = "FALSE")
-  {
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->trueValue  = $trueValue;
-    $this->falseValue = $falseValue;
-  }
-
-  function inputValue ($value)
-  {
-    return ($value == $this->trueValue);
-  }
-
-  function loadPostValue ()
-  {
-    if ($this->isVisible()) {
-      $this->setPostValue(isset($_POST[$this->getHtmlId()]));
-    }
-  }
-
-  function computeLdapValue ()
-  {
-    return ($this->value?$this->trueValue:$this->falseValue);
-  }
-
-  function renderFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $attributes = ($this->value?array('checked' => 'checked'): array());
-    if ($this->submitForm) {
-      $js       = 'document.mainform.submit();';
-      $attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
-    } elseif (!empty($this->managedAttributes)) {
-      $js       = $this->managedAttributesJS();
-      $attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
-    }
-    $display  = $this->renderInputField('checkbox', $id, $attributes);
-    return $this->renderAcl($display);
-  }
-
-  protected function managedAttributesJS ()
-  {
-    $js = '';
-    $id = $this->getHtmlId();
-    foreach ($this->managedAttributes as $array) {
-      foreach ($array as $value => $attributes) {
-        if (isset($this->managedAttributesMultipleValues[$value])) {
-          trigger_error('Multiple values are not available for boolean attributes');
-        } else {
-          $js .= 'disableAttributes = (document.getElementById('.json_encode($id).').checked == '.($value?'true':'false').');'."\n";
-        }
-        foreach ($attributes as $attribute) {
-          foreach ($this->plugin->attributesAccess[$attribute]->htmlIds() as $htmlId) {
-            $js .= 'if (document.getElementById('.json_encode($htmlId).')) { document.getElementById('.json_encode($htmlId).').disabled = disableAttributes; }'."\n";
-          }
-        }
-      }
-    }
-    return $js;
-  }
-}
-
-/*! \brief This class allow to handle easily a Boolean LDAP attribute that triggers a set of objectclasses
- *
- */
-class ObjectClassBooleanAttribute extends BooleanAttribute
-{
-  private $objectclasses;
-
-
-  /*! \brief The constructor of ObjectClassBooleanAttribute
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param mixed $objectclasses objectClass or array of objectClasses that this boolean should add/remove depending on its state
-   *  \param mixed $defaultValue The default value for this attribute
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   */
-  function __construct ($label, $description, $ldapName, $required, $objectclasses, $defaultValue = FALSE, $acl = "")
-  {
-    if (is_array($objectclasses)) {
-      $this->objectclasses = $objectclasses;
-    } else {
-      $this->objectclasses = array($objectclasses);
-    }
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->setInLdap(FALSE);
-  }
-
-  function loadValue ($attrs)
-  {
-    if (isset($attrs['objectClass'])) {
-      $missing_oc = array_udiff($this->objectclasses, $attrs['objectClass'], 'strcasecmp');
-      $this->setValue(empty($missing_oc));
-    } else {
-      $this->resetToDefault();
-    }
-    $this->initialValue = $this->value;
-  }
-
-  function fillLdapValue (&$attrs)
-  {
-    if ($this->getValue()) {
-      $attrs['objectClass'] = array_merge_unique($this->objectclasses, $attrs['objectClass']);
-    } else {
-      $attrs['objectClass'] = array_remove_entries($this->objectclasses, $attrs['objectClass']);
-    }
-  }
-}
-
-/*! \brief This class allow to handle easily a String LDAP attribute
- *
- */
-class StringAttribute extends Attribute
-{
-  protected $pattern;
-  protected $example;
-  protected $autocomplete = NULL;
-
-  /*! \brief The constructor of StringAttribute
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param mixed $defaultValue The default value for this attribute
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   *  \param string $regexp A regular expression that should be matched by the value of this attribute in order for it to be considered valid. Will be used as a PHP regexp and as an html5 input pattern.
-   */
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = "", $acl = "", $regexp = "", $example = NULL)
-  {
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->pattern = $regexp;
-    $this->example = ($example === NULL?$defaultValue:$example);
-  }
-
-  function setExample ($example)
-  {
-    $this->example = $example;
-  }
-
-  function setPattern ($pattern)
-  {
-    $this->pattern = $pattern;
-  }
-
-  function renderFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $attributes = array(
-      'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
-    );
-    if (!empty($this->managedAttributes)) {
-      $js       = $this->managedAttributesJS();
-      $attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
-    }
-    if ($this->autocomplete !== NULL) {
-      $attributes['autocomplete'] = ($this->autocomplete ? 'on' : 'off' );
-    }
-    $display  = $this->renderInputField('text', $id, $attributes);
-    return $this->renderAcl($display);
-  }
-
-  function fixPostValue ($value)
-  {
-    /* Replace CRLF by LF, to avoid non-ASCII chars in multiline values (mainly useful for textarea) */
-    return str_replace(array("\r\n", "\r"), "\n", $value);
-  }
-
-  function check ()
-  {
-    $error = parent::check();
-    if (!empty($error)) {
-      return $error;
-    } else {
-      if ($this->value !== "") {
-        return $this->validate();
-      }
-    }
-  }
-
-  function validate ()
-  {
-    if (($this->pattern !== "") && !preg_match($this->pattern, $this->value)) {
-      return msgPool::invalid($this->getLabel(), $this->value, $this->pattern, htmlentities($this->example));
-    }
-  }
-
-  function setAutocomplete ($bool)
-  {
-    $this->autocomplete = $bool;
-  }
-
-  function getAutocomplete ()
-  {
-    return $this->autocomplete;
-  }
-}
-
-class HiddenAttribute extends Attribute
-{
-  /*! \brief The constructor of HiddenAttribute
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param mixed $defaultValue The default value for this attribute
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   */
-  function __construct ($ldapName, $required = FALSE, $defaultValue = "", $acl = "", $label = NULL, $description = "hidden")
-  {
-    if ($label === NULL) {
-      $label = $ldapName;
-    }
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->setVisible(FALSE);
-  }
-}
-
-class HiddenArrayAttribute extends HiddenAttribute
-{
-  protected function loadAttrValue ($attrs)
-  {
-    if (isset($attrs[$this->getLdapName()]['count'])) {
-      $this->value = array();
-      for ($i = 0; $i < $attrs[$this->getLdapName()]['count']; $i++) {
-        $this->value[] = $attrs[$this->getLdapName()][$i];
-      }
-    } else {
-      $this->resetToDefault();
-    }
-  }
-}
-
-/* Dummy attribute class in order to give stats information to the template */
-class FakeAttribute extends Attribute
-{
-  function __construct ($ldapName)
-  {
-    parent::__construct("Fake one", "", $ldapName, FALSE, "", "noacl");
-    $this->setInLdap(FALSE);
-  }
-
-  function renderAttribute(&$attributes, $readOnly)
-  {
-    $attributes[$this->getLdapName()] = $this->getValue();
-  }
-}
-
-/*! \brief This class allow to display an attribute.
- *
- * It can be used to display an attribute value the user is never allowed to modify.
- * (But FD might edit it)
- */
-class DisplayLDAPAttribute extends Attribute
-{
-  protected $allowHTML = FALSE;
-
-  function renderFormInput ()
-  {
-    if ($this->allowHTML) {
-      return $this->getValue();
-    } else {
-      return htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8');
-    }
-  }
-
-  function setAllowHTML ($allowHTML)
-  {
-    $this->allowHTML = $allowHTML;
-  }
-}
-
-/*! \brief This class allow to display an attribute.
- *
- * It can be used to display an attribute value the user and FD are never allowed to modify.
- */
-class ReadOnlyLDAPAttribute extends DisplayLDAPAttribute
-{
-  function fillLdapValue (&$attrs)
-  {
-    /* Remove crap made by plugin */
-    unset($attrs[$this->getLdapName()]);
-  }
-}
-
-/*! \brief This class allow to display an attribute.
- *
- * It can be used to display an attribute value the user is never allowed to modify.
- */
-class DisplayLDAPArrayAttribute extends Attribute
-{
-  protected function loadAttrValue ($attrs)
-  {
-    if (isset($attrs[$this->getLdapName()]['count'])) {
-      $this->value = array();
-      for ($i = 0; $i < $attrs[$this->getLdapName()]['count']; $i++) {
-        $this->value[] = $attrs[$this->getLdapName()][$i];
-      }
-    } else {
-      $this->resetToDefault();
-    }
-  }
-
-  function renderFormInput ()
-  {
-    $value = $this->getValue();
-    if (is_array($value)) {
-      $value = join(', ', $value);
-    }
-    return htmlentities($value, ENT_COMPAT, 'UTF-8');
-  }
-}
-
-/*! \brief This class allow to display a text in front of an attribute.
- *
- * For instance, it can be used to display a link.
- */
-class DisplayAttribute extends DisplayLDAPAttribute
-{
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = "", $acl = "")
-  {
-    parent::__construct ($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->setInLdap(FALSE);
-  }
-}
-
-/*! \brief This class allow to handle easily a String LDAP attribute that appears as a text area
- *
- */
-class TextAreaAttribute extends StringAttribute
-{
-  function renderFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $display  = '<textarea name="'.$id.'" id="'.$id.'"'.
-                ($this->disabled? 'disabled="disabled"':'').'>'.
-                '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}</textarea>';
-    return $this->renderAcl($display);
-  }
-}
-
-/*! \brief This class allow to handle easily a String LDAP attribute that contains a password
- *
- */
-class PasswordAttribute extends StringAttribute
-{
-  protected $autocomplete = FALSE;
-
-  function renderFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $display  = $this->renderInputField(
-      'password', $id,
-      array(
-        'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}',
-        'autocomplete' => ($this->autocomplete?'on':'off'),
-      )
-    );
-    if ($this->autocomplete === FALSE) {
-      $display = '{literal}<input autocomplete="off" value="foolautocompleteworkaround" type="text" style="display:none;"/>{/literal}'.$display;
-    }
-    return $this->renderAcl($display);
-  }
-
-  function renderTemplateInput ()
-  {
-    return parent::renderFormInput();
-  }
-}
-
-/*! \brief This class allow to handle easily a Select LDAP attribute with a set of choices
- *
- */
-class SelectAttribute extends Attribute
-{
-  protected $choices;
-  protected $outputs  = NULL;
-  protected $size     = 1;
-
-  /*! \brief The constructor of SelectAttribute
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param array $choices The choices this select should offer. Pass array("") if you're gonna fill it later with setChoices
-   *  \param mixed $defaultValue The default value for this attribute
-   *  \param array $outputs The label corresponding to the choices, leave to NULL if you want to display the choices themselves
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   */
-  function __construct ($label, $description, $ldapName, $required = FALSE, $choices = array(), $defaultValue = "", $outputs = NULL, $acl = "")
-  {
-    if (!in_array($defaultValue, $choices, TRUE) && isset($choices[0])) {
-      $defaultValue = $choices[0];
-    }
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->setChoices($choices, $outputs);
-  }
-
-  function setChoices ($choices, $outputs = NULL)
-  {
-    $this->outputs = NULL;
-    if (!$this->isRequired() && !in_array("", $choices, TRUE)) {
-      array_unshift($choices, "");
-      if (is_array($outputs)) {
-        array_unshift($outputs, _("None"));
-      }
-    }
-    $this->choices = $choices;
-    if (!in_array($this->defaultValue, $this->choices, TRUE) && isset($this->choices[0])) {
-      $this->defaultValue = $this->choices[0];
-    }
-    if (is_array($outputs)) {
-      $this->setDisplayChoices($outputs);
-    }
-    if (!in_array($this->value, $this->choices)) {
-      $this->resetToDefault();
-    }
-  }
-
-  function setDisplayChoices ($values)
-  {
-    $this->outputs = array();
-    $i = 0;
-    foreach ($this->choices as $choice) {
-      $this->outputs[$choice] = $values[$i++];
-    }
-  }
-
-  function setRequired ($bool)
-  {
-    parent::setRequired($bool);
-    $key = array_search("", $this->choices, TRUE);
-    if ($this->isRequired() && ($key !== FALSE)) {
-      unset($this->choices[$key]);
-      unset($this->outputs[""]);
-    } elseif (!$this->isRequired() && !in_array("", $this->choices, TRUE)) {
-      $this->choices[] = "";
-      if (!isset($this->output[""])) {
-        $this->output[""] = _("None");
-      }
-    }
-  }
-
-  function displayValue ($value)
-  {
-    if ($this->outputs !== NULL) {
-      if (isset($this->outputs[$value])) {
-        return $this->outputs[$value];
-      } else {
-        trigger_error("No display value set for '$value' in ".$this->getLabel());
-        return $value;
-      }
-    } else {
-      return $value;
-    }
-  }
-
-  function check ()
-  {
-    $error = parent::check();
-    if (!empty($error)) {
-      return $error;
-    } else {
-      if (!$this->disabled && !in_array($this->value, $this->choices)) {
-        return sprintf(_('The value "%s" for field "%s" is not in the list of possible choices'), $this->value, $this->getLabel());
-      }
-    }
-  }
-
-  function renderFormInput ()
-  {
-    $smarty = get_smarty();
-    $id = $this->getHtmlId();
-    $smarty->assign($id."_choices", $this->choices);
-    if ($this->outputs !== NULL) {
-      $outputs = array_values($this->outputs);
-    } else {
-      $outputs = $this->choices;
-    }
-    $key = array_search('', $outputs, TRUE);
-    if ($key !== FALSE) {
-      $outputs[$key] = '&nbsp;';
-    }
-    $smarty->assign($id."_outputs", $outputs);
-    $smarty->assign($id."_selected", $this->getValue());
-    $display  = '<select name="'.$id.'" id="'.$id.'" ';
-    if ($this->disabled || (count($this->choices) == 0)) {
-      $display .= 'disabled="disabled" ';
-    }
-    if ($this->size > 1) {
-      $display .= 'size="'.$this->size.'" ';
-    }
-    if ($this->submitForm) {
-      $js       = 'document.mainform.submit();';
-      $display  .= 'onChange="javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8').'"';
-    } elseif (!empty($this->managedAttributes)) {
-      $js       = $this->managedAttributesJS();
-      $display  .= 'onChange="javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8').'"';
-    }
-    $display .= '>';
-    $display .= '{html_options values=$'.$id.'_choices output=$'.$id.'_outputs selected=$'.$id.'_selected}';
-    $display .= '</select>';
-    return $this->renderAcl($display);
-  }
-
-  function getChoices ()
-  {
-    return $this->choices;
-  }
-
-  function serializeAttribute(&$attributes, $form = TRUE)
-  {
-    if (!$form || $this->visible) {
-      parent::serializeAttribute($attributes, $form);
-
-      if ($this->outputs !== NULL) {
-        $outputs = array_values($this->outputs);
-      } else {
-        $outputs = $this->choices;
-      }
-      $attributes[$this->getLdapName()]['choices'] = array_combine($this->choices, $outputs);
-    }
-  }
-
-  function setSize($size)
-  {
-    $this->size = $size;
-  }
-}
-
-/*! \brief This class allows to handle a select attribute which allow to choose an object
- *
- */
-class ObjectSelectAttribute extends SelectAttribute
-{
-  protected $objectType;
-  protected $objectAttrs  = NULL;
-  protected $objectFilter = '';
-
-  function __construct ($label, $description, $ldapName, $required, $objectType, $objectAttrs = NULL, $objectFilter = '', $acl = "")
-  {
-    parent::__construct($label, $description, $ldapName, $required, array(), "", NULL, $acl);
-    $this->objectType   = $objectType;
-    $this->objectAttrs  = $objectAttrs;
-    $this->objectFilter = $objectFilter;
-  }
-
-  function setParent (&$plugin)
-  {
-    parent::setParent($plugin);
-    if (is_object($this->plugin)) {
-      $this->updateChoices();
-    }
-  }
-
-  function updateChoices()
-  {
-    $objects = objects::ls($this->objectType, $this->objectAttrs, NULL, $this->objectFilter);
-    $this->setChoices(array_keys($objects), array_values($objects));
-  }
-}
-
-/*! \brief This class allow to handle easily an Integer LDAP attribute
- *
- */
-class IntAttribute extends Attribute
-{
-  protected $min;
-  protected $max;
-  protected $step = 1;
-  protected $example;
-
-  /*! \brief The constructor of IntAttribute
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param int $min The minimum value it can take
-   *  \param int $max The maximum value it can take
-   *  \param mixed $defaultValue The default value for this attribute
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   */
-  function __construct ($label, $description, $ldapName, $required, $min, $max, $defaultValue = "", $acl = "")
-  {
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->min      = ($min === FALSE ? FALSE : $this->inputValue($min));
-    $this->max      = ($max === FALSE ? FALSE : $this->inputValue($max));
-    $this->example  = "";
-
-    if (($min !== FALSE) && ($max !== FALSE)) {
-      $this->example = sprintf(_("An integer between %d and %d"), $min, $max);
-    } elseif ($min !== FALSE) {
-      $this->example = sprintf(_("An integer larger than %d"),    $min);
-    } elseif ($max !== FALSE) {
-      $this->example = sprintf(_("An integer smaller than %d"),   $max);
-    }
-  }
-
-  function setStep ($step)
-  {
-    $this->step = $step;
-  }
-
-  function inputValue ($value)
-  {
-    if (!$this->isRequired() && empty($value) && !is_numeric($value)) {
-      // value is "" or array()
-      return "";
-    }
-    if (is_object($this->plugin) && $this->plugin->is_template) {
-      return $value;
-    } else {
-      return intval($value);
-    }
-  }
-
-  function check ()
-  {
-    $error = parent::check();
-    if (!empty($error)) {
-      return $error;
-    } else {
-      if (!is_numeric($this->value) && (!empty($this->value) || $this->isRequired())) {
-        return msgPool::invalid($this->getLabel(), $this->value, "/./", $this->example);
-      }
-      if ((($this->min !== FALSE) && ($this->value < $this->min))
-      || (($this->max !== FALSE) && ($this->value > $this->max))) {
-        return msgPool::invalid($this->getLabel(), $this->value, "/./", $this->example);
-      }
-    }
-  }
-
-  function renderFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $attributes = array(
-      'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
-    );
-    if ($this->min !== FALSE) {
-      $attributes['min'] = $this->min;
-    }
-    if ($this->max !== FALSE) {
-      $attributes['max'] = $this->max;
-    }
-    if ($this->step !== FALSE) {
-      $attributes['step'] = $this->step;
-    }
-    if (!empty($this->managedAttributes)) {
-      $js       = $this->managedAttributesJS();
-      $attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
-    }
-    $display = $this->renderInputField('number', $id, $attributes);
-    return $this->renderAcl($display);
-  }
-
-  function renderTemplateInput ()
-  {
-    $id = $this->getHtmlId();
-    $display = $this->renderInputField(
-      'text', $id,
-      array(
-        'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
-      )
-    );
-    return $this->renderAcl($display);
-  }
-}
-
-/*! \brief This class allow to handle easily an Float LDAP attribute
- *
- */
-class FloatAttribute extends IntAttribute
-{
-
-  /*! \brief The constructor of FloatAttribute
-   *
-   * By default a FloatAttribute will have a step of 0.1, use setStep in order to change it.
-   * You can use setStep(FALSE) to disable it.
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param float $min The minimum value it can take
-   *  \param float $max The maximum value it can take
-   *  \param mixed $defaultValue The default value for this attribute
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   */
-  function __construct ($label, $description, $ldapName, $required, $min, $max, $defaultValue = 0.0, $acl = "")
-  {
-    parent::__construct($label, $description, $ldapName, $required, $min, $max, $defaultValue, $acl);
-
-    $this->step = 0.01;
-
-    $this->example  = "";
-    if (($min !== FALSE) && ($max !== FALSE)) {
-      $this->example = sprintf(_("A float between %f and %f"), $min, $max);
-    } elseif ($min !== FALSE) {
-      $this->example = sprintf(_("A float larger than %f"),    $min);
-    } elseif ($max !== FALSE) {
-      $this->example = sprintf(_("A float smaller than %f"),   $max);
-    }
-  }
-
-  function inputValue ($value)
-  {
-    if (!$this->isRequired() && empty($value) && !is_numeric($value)) {
-      // value is "" or array()
-      return "";
-    }
-    if (is_object($this->plugin) && $this->plugin->is_template) {
-      return $value;
-    } else {
-      return floatval($value);
-    }
-  }
-}
-
-/*! \brief This class allow to handle easily an Date LDAP attribute
- *
- * We are using UTC timezone because we don't care about time, we just want date.
- */
-class DateAttribute extends Attribute
-{
-  protected $format;
-
-  /*! \brief The constructor of DateAttribute
-   *
-   *  \param string $label The label to show for this attribute
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param boolean $required Is this attribute mandatory or not
-   *  \param string $format The date format. It can be any format recognized by DateTime::format. see http://www.php.net/manual/fr/function.date.php
-   *  \param mixed $defaultValue The default value for this attribute
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   */
-  function __construct ($label, $description, $ldapName, $required, $format, $defaultValue = 'now', $acl = "")
-  {
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->format = $format;
-  }
-
-  function inputValue ($value)
-  {
-    if ($value === "" && !$this->isRequired()) {
-      return $value;
-    } elseif (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $value)) {
-      return $value;
-    } else {
-      return $this->ldapToDate($value);
-    }
-  }
-
-  function getValue ()
-  {
-    if ($this->value === "" && !$this->isRequired()) {
-      return $this->value;
-    } else {
-      try {
-        return $this->getDateValue()->format('d.m.Y');
-      } catch (Exception $e) {
-        if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
-          return $this->value;
-        } else {
-          return '';
-        }
-      }
-    }
-  }
-
-  protected function ldapToDate($ldapValue)
-  {
-    $date = DateTime::createFromFormat($this->format, $ldapValue, new DateTimeZone('UTC'));
-    if ($date !== FALSE) {
-      return $date;
-    } else {
-      trigger_error('LDAP value for '.$this->getLdapName().' was not in the right date format.');
-      return new DateTime($ldapValue, new DateTimeZone('UTC'));
-    }
-  }
-
-  protected function dateToLdap($dateValue)
-  {
-    return $dateValue->format($this->format);
-  }
-
-  function getDateValue()
-  {
-    $value = $this->value;
-    if (!($value instanceof DateTime)) {
-      $value = new DateTime($value, new DateTimeZone('UTC'));
-    }
-    return $value;
-  }
-
-  function computeLdapValue ()
-  {
-    if ($this->value === "" && !$this->isRequired()) {
-      return $this->value;
-    } elseif (!($this->value instanceof DateTime)) {
-      try {
-        $this->setValue($this->getDateValue());
-      } catch (Exception $e) {
-        if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
-          return $this->value;
-        } else {
-          throw $e;
-        }
-      }
-    }
-    return $this->dateToLdap($this->value);
-  }
-
-  function check ()
-  {
-    $error = parent::check();
-    if (!empty($error)) {
-      return $error;
-    } else {
-      if ($this->value instanceof DateTime) {
-        return;
-      } else {
-        try {
-          $this->getDateValue();
-        } catch (Exception $e) {
-          if (is_object($this->plugin) && $this->plugin->is_template && preg_match('/%/', $this->value)) {
-            return;
-          } else {
-            return sprintf(_('Error, incorrect date: %s'), $e->getMessage());
-          }
-        }
-      }
-    }
-  }
-
-  function renderFormInput ()
-  {
-    $smarty = get_smarty();
-    $smarty->assign('usePrototype', 'true');
-    $id = $this->getHtmlId();
-    $display = $this->renderInputField(
-      'text', $id,
-      array(
-        'value' => '{literal}'.$this->getValue().'{/literal}',
-        'class' => 'date'
-      )
-    );
-    $display  .= '{if $'.$this->getAcl().'ACL|regex_replace:"/[cdmr]/":"" == "w"}'.
-        '<script type="text/javascript">
-          {literal}
-          var datepicker  = new DatePicker({ relative : \''.$id.'\', language : \'{/literal}{$lang}{literal}\', keepFieldEmpty : true,
-                                             enableCloseEffect : false, enableShowEffect : false });
-          {/literal}
-        </script>
-        {/if}';
-    return $this->renderAcl($display);
-  }
-}
-
-class GeneralizedTimeDateAttribute extends DateAttribute
-{
-  function __construct ($label, $description, $ldapName, $required, $defaultValue = 'now', $acl = "")
-  {
-    parent::__construct($label, $description, $ldapName, $required, '', $defaultValue, $acl);
-  }
-
-  protected function ldapToDate($ldapValue)
-  {
-    try {
-      return LdapGeneralizedTime::fromString($ldapValue);
-    } catch (LdapGeneralizedTimeBadFormatException $e) {
-      trigger_error('LDAP value "'.$ldapValue.'" for '.$this->getLdapName().' is not in the right date format.');
-      return new DateTime($ldapValue, timezone::utc());
-    }
-  }
-
-  protected function dateToLdap($dateValue)
-  {
-    return LdapGeneralizedTime::toString($dateValue);
-  }
-}
-
-/*! \brief This class allow to handle easily an File LDAP attribute
- *
- */
-class FileAttribute extends Attribute
-{
-  function loadPostValue()
-  {
-    $this->postValue = $this->value;
-    if (!empty($_FILES[$this->getHtmlId()]['name']) && $this->isVisible()) {
-      if ($_FILES[$this->getHtmlId()]['size'] <= 0) {
-        msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file is empty")), ERROR_DIALOG);
-      } elseif (!file_exists($_FILES[$this->getHtmlId()]['tmp_name'])) {
-        // Is there a tmp file, which we can use ?
-        msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not found")), ERROR_DIALOG);
-      } elseif (!$handle = @fopen($_FILES[$this->getHtmlId()]['tmp_name'], "r")) {
-        // Can we open the tmp file, for reading
-        msg_dialog::display(_("Error"), sprintf(_("Cannot read uploaded file: %s"), _("file not readable")), ERROR_DIALOG);
-      } else {
-        // Everything just fine :)
-
-        // Reading content
-        $this->readFile($handle);
-      }
-      $_FILES[$this->getHtmlId()]['name'] = ""; // so that we only handle the file once
-    }
-  }
-
-  /*! \brief This function read the file from the given handle and then closes it
-   *
-   *  \param filehandle $handle The handle on the opened uploaded file
-   */
-  function readFile($handle)
-  {
-    $postValue = fread($handle, 1024);
-    while (!feof($handle)) {
-      $postValue .= fread($handle, 1024);
-    }
-    $this->setPostValue($postValue);
-    @fclose($handle);
-  }
-
-  function renderFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $display = $this->renderInputField('file', $id);
-    return $this->renderAcl($display);
-  }
-
-  function displayValue($value)
-  {
-    return sprintf(_('%s (%d bytes)'), $this->getLabel(), mb_strlen($value, '8bit'));
-  }
-}
-
-/* FileAttribue with download button */
-class FileDownloadAttribute extends FileAttribute
-{
-  protected $extension;
-  protected $upload;
-
-  function __construct ($label, $description, $ldapName, $required = FALSE, $extension = '', $upload = FALSE, $defaultValue = "", $acl = "")
-  {
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->extension  = $extension;
-    $this->upload     = $upload;
-  }
-
-  function computeFilename()
-  {
-    return $this->getLdapName().$this->extension;
-  }
-
-  function loadPostValue ()
-  {
-    if ($this->isVisible()) {
-      $this->postValue = $this->value;
-      foreach (array_keys($_POST) as $name) {
-        if (preg_match('/^download'.$this->getHtmlId().'/', $name)) {
-          session::set('binary', $this->value);
-          session::set('binarytype', 'octet-stream');
-          session::set('binaryfile', $this->computeFilename());
-          header('location: getbin.php');
-          exit();
-        }
-      }
-      if ($this->upload && isset($_POST['upload'.$this->getHtmlId()])) {
-        parent::loadPostValue();
-      }
-    }
-  }
-
-  function renderFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $display = '';
-    if ($this->upload) {
-      $display  .= $this->renderInputField('file', $id);
-      $display  .= $this->renderInputField('submit', 'upload'.$id, array('value' => _('Upload')));
-    }
-    $display  .= $this->renderInputField(
-      'image', 'download'.$id,
-      array(
-        'title' => _('Download'),
-        'alt'   => _('Download'),
-        'class' => 'center',
-        'src'   => 'geticon.php?context=actions&amp;icon=document-save&amp;size=16',
-      )
-    );
-    return $this->renderAcl($display);
-  }
-
-  public function htmlIds()
-  {
-    $id   = $this->getHtmlId();
-    $ids  = array('download'.$id);
-    if ($this->upload) {
-      $ids[] =  $id;
-      $ids[] =  'upload'.$id;
-    }
-    return $ids;
-  }
-
-  function renderAttribute(&$attributes, $readOnly)
-  {
-    if ($this->upload == FALSE) {
-      parent::renderAttribute($attributes, FALSE);
-    } else {
-      parent::renderAttribute($attributes, $readOnly);
-    }
-  }
-}
-
-class FileTextAreaAttribute extends FileDownloadAttribute
-{
-  function __construct ($label, $description, $ldapName, $required = FALSE, $extension = '.txt', $upload = TRUE, $defaultValue = "", $acl = "")
-  {
-    parent::__construct(
-      $label, $description, $ldapName, $required,
-      $extension, $upload, $defaultValue, $acl
-    );
-  }
-  /*! \brief Update this attributes postValue depending of the $_POST values
-   */
-  function loadPostValue ()
-  {
-    if ($this->isVisible()) {
-      $this->postValue = $this->value;
-      foreach (array_keys($_POST) as $name) {
-        if (preg_match('/^download'.$this->getHtmlId().'/', $name)) {
-          session::set('binary', $this->value);
-          session::set('binarytype', 'octet-stream');
-          session::set('binaryfile', $this->computeFilename());
-          header('location: getbin.php');
-          exit();
-        }
-      }
-      if ($this->upload) {
-        if (isset($_POST['upload'.$this->getHtmlId()])) {
-          parent::loadPostValue();
-        } else {
-          $id = $this->getHtmlId().'_text';
-          if (isset($_POST[$id])) {
-            $this->setPostValue($_POST[$id]);
-          }
-        }
-      }
-    }
-  }
-
-  function renderFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $display  = '<textarea name="'.$id.'_text" id="'.$id.'_text"'.
-                ($this->disabled? 'disabled="disabled"':'').'>'.
-                '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}</textarea><br/>';
-    return $this->renderAcl($display).parent::renderFormInput();
-  }
-
-  function fixPostValue ($value)
-  {
-    /* Replace CRLF by LF, to avoid non-ASCII chars */
-    return str_replace(array("\r\n", "\r"), "\n", $value);
-  }
-
-  public function htmlIds()
-  {
-    $ids    = parent::htmlIds();
-    $ids[]  = $id.'_text';
-    return $ids;
-  }
-}
-
-class ImageAttribute extends FileAttribute
-{
-  protected $width;
-  protected $height;
-  protected $format;
-  protected $forceSize;
-  protected $placeholder;
-
-  function __construct ($label, $description, $ldapName, $required = FALSE, $width = 48, $height = 48, $format = 'png', $forceSize = FALSE, $defaultValue = "", $acl = "")
-  {
-    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->width      = $width;
-    $this->height     = $height;
-    $this->format     = $format;
-    $this->forceSize  = $forceSize;
-  }
-
-  function setPlaceholder($placeholder)
-  {
-    $this->placeholder = $placeholder;
-  }
-
-  /*! \brief Update this attributes postValue depending of the $_POST values
-   */
-  function loadPostValue ()
-  {
-    $this->postValue = $this->value;
-    $id = $this->getHtmlId();
-    if (!$this->disabled && $this->isVisible()) {
-      foreach (array_keys($_POST) as $name) {
-        if (!$this->isRequired()) {
-          if (preg_match('/^'.$id.'_remove_/', $name)) {
-            $this->setPostValue('');
-            break;
-          }
-        }
-        if (preg_match('/^'.$id.'_upload_/', $name)) {
-          parent::loadPostValue();
-          break;
-        }
-      }
-    }
-  }
-
-  function setValue ($value)
-  {
-    if ($value == "") {
-      $this->value = "";
-      return;
-    }
-    if (class_exists('Imagick')) {
-      $im     = new Imagick();
-      $modify = FALSE;
-      $im->readImageBlob($value);
-
-      $size = $im->getImageGeometry();
-
-      if (
-          ($size['width'] > 0 && $size['height'] > 0) &&
-          (
-            ($size['width'] < $this->width && $size['height'] < $this->height) ||
-            ($size['width'] > $this->width) ||
-            ($size['height'] > $this->height)
-          )
-        ) {
-        $modify = TRUE;
-        $im->resizeImage($this->width, $this->height, Imagick::FILTER_GAUSSIAN, 1, !$this->forceSize);
-      }
-
-      if ($modify || !preg_match('/^'.$this->format.'$/i', $im->getImageFormat())) {
-        if ($this->format == 'jpeg') {
-          $im->setImageCompression(Imagick::COMPRESSION_JPEG);
-          $im->setImageCompressionQuality(90);
-        }
-        $im->setImageFormat($this->format);
-
-        /* Save attribute */
-        $this->value = $im->getImageBlob();
-      } else {
-        $this->value = $value;
-      }
-    } else {
-      msg_dialog::display(
-        _('Error'),
-        _('Cannot save user picture, FusionDirectory requires the PHP module "imagick" to be installed!'),
-        ERROR_DIALOG
-      );
-    }
-  }
-
-  function renderFormInput ()
-  {
-    $this->setValue($this->inputValue($this->getValue()));
-    $id = $this->getHtmlId();
-    srand((double)microtime() * 1000000); // Just to be sure the image is not cached
-    $display  = '<img id="'.$id.'_img"'.
-                ($this->disabled? 'disabled="disabled"':'').
-                ' src="getbin.php?rand='.rand(0, 10000).'"'.
-                ' style="border:1px solid black;"'.
-                ' alt="'.$this->getDescription().'"'.
-                ' title="'.$this->getDescription().'"'.
-                ' /><br/>';
-    $display  .= $this->renderInputField('file', $id);
-    $display .= $this->renderInputField(
-      'image', $id.'_upload',
-      array(
-        'class' => 'center',
-        'src'   => 'geticon.php?context=actions&amp;icon=upload&amp;size=16',
-        'title' => _('Upload'),
-        'alt'   => _('Upload')
-      )
-    );
-    if (!$this->isRequired()) {
-      $display .= $this->renderInputField(
-        'image', $id.'_remove',
-        array(
-          'class' => 'center',
-          'src'   => 'geticon.php?context=actions&amp;icon=remove&amp;size=16',
-          'title' => _('Remove'),
-          'alt'   => _('Remove')
-        )
-      );
-    }
-    if (($this->getValue() == '') && ($this->placeholder != '')) {
-      session::set('binary', $this->placeholder);
-    } else {
-      session::set('binary', $this->getValue());
-    }
-    session::set('binarytype', 'image/'.$this->format);
-    return $this->renderAcl($display);
-  }
-
-  public function htmlIds()
-  {
-    $id = $this->getHtmlId();
-    return array($id.'_img',$id,'upload'.$id);
-  }
-}
-
-/*! \brief This class allow to handle easily an Base selector attribute
- *
- */
-class BaseSelectorAttribute extends Attribute
-{
-  private $baseSelector = NULL;
-  private $orig_dn      = NULL;
-  private $ou           = NULL;
-
-  /*! \brief The constructor of BaseSelectorAttribute
-   *
-   *  \param string $ou The ou your objects are into. It will be used in order to detect the base they are in.
-   */
-  function __construct ($ou, $label = NULL, $desc = NULL)
-  {
-    if ($label === NULL) {
-      $label = _('Base');
-    }
-    if ($desc === NULL) {
-      $desc = _('Object base');
-    }
-    parent::__construct($label, $desc, 'base', FALSE, '', 'base');
-    $this->setInLdap(FALSE);
-    $this->ou = $ou;
-  }
-
-  function setManagedAttributes ($dontcare)
-  {
-    trigger_error('method setManagedAttributes is not supported for BaseSelectorAttribute');
-  }
-
-  function setParent (&$plugin)
-  {
-    parent::setParent($plugin);
-    if (is_object($this->plugin)) {
-      /* Do base conversation */
-      if ($this->plugin->is_template) {
-        $this->ou = 'ou=templates,'.$this->ou;
-      }
-      if ($this->plugin->dn == "new") {
-        $ui = get_userinfo();
-        $this->setValue(dn2base(session::global_is_set("CurrentMainBase")?"cn=dummy,".session::global_get("CurrentMainBase"):$ui->dn));
-      } else {
-        $this->setValue(dn2base($this->plugin->dn, $this->ou));
-      }
-      $this->orig_dn = $this->plugin->dn;
-      /* Instanciate base selector */
-      $this->initialValue = $this->value;
-      $this->baseSelector = new baseSelector($this->plugin->get_allowed_bases(), $this->value);
-      $this->baseSelector->setSubmitButton(FALSE);
-      $this->baseSelector->setHeight(300);
-      $this->baseSelector->update(TRUE);
-    }
-  }
-
-  function loadPostValue ()
-  {
-  }
-
-  function applyPostValue ()
-  {
-    if (!$this->disabled && $this->isVisible()) {
-      /* Refresh base */
-      if  ($this->plugin->acl_is_moveable($this->value) || ($this->plugin->dn == 'new')) {
-        if (!$this->baseSelector->update()) {
-          if ($this->plugin->dn == 'new') {
-            msg_dialog::display(_('Error'), msgPool::permCreate(), ERROR_DIALOG);
-          } else {
-            msg_dialog::display(_('Error'), msgPool::permMove($this->plugin->dn), ERROR_DIALOG);
-          }
-        }
-        if ($this->value != $this->baseSelector->getBase()) {
-          $this->setValue($this->baseSelector->getBase());
-          $this->plugin->is_modified = TRUE;
-        }
-      }
-    }
-  }
-
-  function check ()
-  {
-    $error = parent::check();
-    if (!empty($error)) {
-      return $error;
-    } else {
-      /* Check if we are allowed to create/move this user */
-      if (($this->orig_dn == 'new') && !$this->plugin->acl_is_createable($this->value)) {
-        return msgPool::permCreate();
-      } elseif (
-        ($this->orig_dn != 'new') &&
-        ($this->plugin->dn != $this->orig_dn) &&
-        !$this->plugin->acl_is_moveable($this->value)) {
-        return msgPool::permMove($this->plugin->dn);
-      }
-      // Check if a wrong base was supplied
-      if (!$this->baseSelector->checkLastBaseUpdate()) {
-        return msgPool::check_base();
-      }
-    }
-  }
-
-  function setValue ($value)
-  {
-    parent::setValue($value);
-    if (is_object($this->plugin)) {
-      /* Set the new acl base */
-      if ($this->plugin->dn == 'new') {
-        $this->plugin->set_acl_base($this->value);
-        $this->plugin->parent->set_acl_base();
-      }
-
-      if (($this->baseSelector !== NULL) && ($this->baseSelector->getBase() !== $this->value)) {
-        $this->baseSelector->setBase($this->value);
-      }
-    }
-  }
-
-  function getValue ()
-  {
-    return $this->value;
-  }
-
-  function renderFormInput ()
-  {
-    $smarty = get_smarty();
-    $smarty->assign('usePrototype', 'true');
-    if ($this->disabled) {
-      $display = $this->renderInputField(
-        'text', '',
-        array(
-          'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
-        )
-      );
-    } else {
-      $display = '{literal}'.$this->baseSelector->render().'{/literal}';
-    }
-    return $this->renderAcl($display);
-  }
-
-  function getHtmlId()
-  {
-    if (isset($this->baseSelector)) {
-      return $this->baseSelector->getInputHtmlId();
-    } else {
-      return '';
-    }
-  }
-
-  function serializeAttribute(&$attributes, $form = TRUE)
-  {
-    if (!$form || $this->visible) {
-      parent::serializeAttribute($attributes, $form);
-
-      $attributes[$this->getLdapName()]['choices'] = $this->baseSelector->getBases();
-    }
-  }
-}
-
-/*! \brief This class allow to handle easily a multi-valuated attribute
- *
- */
-class SetAttribute extends Attribute
-{
-  public $attribute;
-  protected $valueUnicity     = TRUE;
-  protected $editingValue     = FALSE;
-  protected $linearRendering  = TRUE;
-  protected $size = 4;
-
-  /*! \brief The constructor of SetAttribute
-   *
-   *  \param Attribute $attribute The attribute you want to see multi-valuated
-   *  \param array $values The default values
-   *  \param boolean $valueUnicity Should the value unicity be checked
-   */
-  function __construct ($attribute, $values = array(), $valueUnicity = TRUE)
-  {
-    parent::__construct(
-      $attribute->getLabel(),     $attribute->getDescription(),
-      $attribute->getLdapName(),  $attribute->isRequired(),
-      $values
-    );
-    $this->attribute = $attribute;
-    $this->attribute->setRequired(TRUE);
-    $this->valueUnicity = $valueUnicity;
-  }
-
-  function setManagedAttributes ($dontcare)
-  {
-    trigger_error('method setManagedAttributes is not supported for SetAttributes');
-  }
-
-  function setLinearRendering ($bool)
-  {
-    $this->linearRendering = $bool;
-  }
-
-  protected function loadAttrValue ($attrs)
-  {
-    if (isset($attrs[$this->getLdapName()]["count"])) {
-      $this->value = array();
-      for ($i = 0; $i < $attrs[$this->getLdapName()]["count"]; $i++) {
-        $this->value[] = $attrs[$this->getLdapName()][$i];
-      }
-    } else {
-      $this->resetToDefault();
-    }
-  }
-
-  function getAcl ()
-  {
-    if ($this->attribute === FALSE) {
-      return parent::getAcl();
-    }
-    return $this->attribute->getAcl();
-  }
-
-  function setAcl ($acl)
-  {
-    if ($this->attribute === FALSE) {
-      return parent::setAcl($acl);
-    }
-    $this->attribute->setAcl($acl);
-  }
-
-  function addPostValue ($value)
-  {
-    if ($value === '') {
-      return FALSE;
-    }
-    if ($this->valueUnicity && in_array($value, $this->postValue, TRUE)) {
-      return FALSE;
-    }
-    $this->postValue[] = $value;
-    return TRUE;
-  }
-
-  function delPostValue ($key)
-  {
-    unset($this->postValue[$key]);
-  }
-
-  function loadPostValue ()
-  {
-    $this->editingValue = FALSE;
-    $id = $this->getHtmlId();
-    if ($this->isVisible()) {
-      $this->postValue = $this->value;
-      if (isset($_POST["add".$id])) {
-        if ($this->attribute !== FALSE) {
-          $this->attribute->loadPostValue();
-          $this->attribute->applyPostValue();
-          $this->addPostValue($this->attribute->getValue());
-        }
-      } elseif (isset($_POST["del".$id]) && isset($_POST["row".$id])) {
-        foreach ($_POST["row".$id] as $key) {
-          $this->delPostValue($key);
-        }
-      } elseif ($this->attribute !== FALSE) {
-        $this->attribute->loadPostValue();
-        $this->attribute->applyPostValue();
-        $this->editingValue = $this->attribute->getValue();
-      }
-    }
-  }
-
-  function check ()
-  {
-    $error = parent::check();
-    if (!empty($error) || ($this->attribute === FALSE)) {
-      return $error;
-    } else {
-      foreach ($this->value as $value) {
-        $this->attribute->setValue($value);
-        $error = $this->attribute->check();
-        if (!empty($error)) {
-          return $error;
-        }
-      }
-    }
-  }
-
-  function renderFormInput ()
-  {
-    $display      = $this->renderOnlyFormInput();
-    $attr_display = $this->renderAttributeInput(FALSE);
-    $buttons      = $this->renderButtons();
-    return $this->renderAcl($display).$attr_display.$this->renderAcl($buttons);
-  }
-
-  function renderTemplateInput ()
-  {
-    $display      = $this->renderOnlyFormInput();
-    $attr_display = $this->renderAttributeInput(TRUE);
-    $buttons      = $this->renderButtons();
-    return $this->renderAcl($display).$attr_display.$this->renderAcl($buttons);
-  }
-
-  function renderOnlyFormInput()
-  {
-    if (($this->size < 15) && ($this->size < count($this->value))) {
-      $this->size = min(15, count($this->value));
-    }
-    $id = $this->getHtmlId();
-    $smarty = get_smarty();
-    $smarty->assign($id.'_values', $this->getDisplayValues());
-    $display = '<select multiple="multiple"  name="row'.$id.'[]" id="row'.$id.'" size="'.$this->size.'"'.
-                ($this->disabled? ' disabled="disabled"':'').
-                ' >'."\n";
-    $display .= '{html_options options=$'.$id.'_values}';
-    $display .= '</select><br/>'."\n";
-    return $display;
-  }
-
-  function getDisplayValues ()
-  {
-    if ($this->attribute === FALSE) {
-      return $this->value;
-    }
-    $attribute = $this->attribute;
-    return array_map(
-      function ($value) use($attribute)
-      {
-        return $attribute->displayValue($value);
-      },
-      $this->value
-    );
-  }
-
-  function handleEditingValue()
-  {
-    if ($this->editingValue === FALSE) {
-      $this->attribute->resetToDefault();
-    } else {
-      $this->attribute->setValue($this->editingValue);
-    }
-  }
-
-  function renderAttributeInput ($template = FALSE)
-  {
-    if ($this->attribute === FALSE) {
-      return;
-    }
-    $this->handleEditingValue();
-    if ($template) {
-      return $this->attribute->renderTemplateInput();
-    } else {
-      return $this->attribute->renderFormInput();
-    }
-  }
-
-  function renderAttribute(&$attributes, $readOnly)
-  {
-    if ($this->attribute === FALSE) {
-      return parent::renderAttribute($attributes, $readOnly);
-    }
-    if ($this->visible) {
-      $this->attribute->setDisabled($this->disabled);
-      if ($this->linearRendering || $readOnly) {
-        parent::renderAttribute($attributes, $readOnly);
-      } else {
-        $attributes[$this->getLdapName()] = array(
-          'htmlid'      => $this->getForHtmlId(),
-          'label'       => '{literal}'.$this->getLabel().'{/literal}'.($this->isRequired()?'{$must}':''),
-          'description' => ($this->isRequired()?sprintf(_("%s (required)"), $this->getDescription()):$this->getDescription()),
-          'input'       => $this->renderOnlyFormInput(),
-        );
-        $this->handleEditingValue();
-        $this->attribute->renderAttribute($attributes, $readOnly);
-        $attributes[$this->getLdapName().'_buttons'] = array(
-          'htmlid'      => 'add'.$this->getHtmlId(),
-          'label'       => '{literal}'.$this->getLabel().'{/literal}'.($this->isRequired()?'{$must}':''),
-          'description' => '',
-          'input'       => $this->renderButtons(),
-        );
-      }
-    }
-  }
-
-  function getForHtmlId()
-  {
-    // Label should point to the attribute
-    if (is_object($this->attribute)) {
-      return $this->attribute->getForHtmlId();
-    } else {
-      return '';
-    }
-  }
-
-  function renderButtons ()
-  {
-    $id = $this->getHtmlId();
-    $buttons  = $this->renderInputField('submit', 'add'.$id, array('value' => '{msgPool type=addButton}'));
-    $buttons .= $this->renderInputField('submit', 'del'.$id, array('value' => '{msgPool type=delButton}'));
-    return $buttons;
-  }
-
-  function computeLdapValue ()
-  {
-    return array_values($this->value);
-  }
-
-  public function htmlIds()
-  {
-    $id = $this->getHtmlId();
-    return array_merge(array('add'.$id,'del'.$id,'row'.$id), $this->attribute->htmlIds());
-  }
-
-  /*! \brief Set the parent plugin for this attribute
-   *
-   *  \param simplePlugin &$plugin The parent plugin
-   */
-  function setParent (&$plugin)
-  {
-    parent::setParent($plugin);
-    if ($this->attribute !== FALSE) {
-      $this->attribute->setParent($plugin);
-    }
-  }
-
-  function getArrayValues()
-  {
-    $result = array();
-    foreach ($this->value as $value) {
-      $this->attribute->setValue($value);
-      $row = array();
-      foreach ($this->attribute->getArrayValue() as $val) {
-        $row[] = $val;
-      }
-      $result[] = $row;
-    }
-    return $result;
-  }
-
-  function foreignKeyUpdate($oldvalue, $newvalue, $source)
-  {
-    foreach ($this->value as $key => &$value) {
-      if ($value == $oldvalue) {
-        if ($newvalue === NULL) {
-          unset($this->value[$key]);
-        } elseif ($source['MODE'] == 'copy') {
-          $this->value[] = $newvalue;
-        } elseif ($source['MODE'] == 'move') {
-          $value = $newvalue;
-        }
-      }
-    }
-    unset($value);
-  }
-
-  function foreignKeyCheck($value, $source)
-  {
-    return in_array($value, $this->value);
-  }
-
-  function setSize($size)
-  {
-    $this->size = $size;
-  }
-}
-
-/*! \brief This class allow to handle easily a composite attribute
- *
- * That means this is only one attribute in the LDAP, but it is shown as several in the form.
- * If you need something else than scanf and printf for reading and writing the values (for instance if you want to do a addition of several int attributes),
- * you should inherit this class and write your own readValues and writeValues method
- *
- */
-class CompositeAttribute extends Attribute
-{
-  public $attributes;
-  protected $readFormat;
-  protected $writeFormat;
-  protected $linearRendering = FALSE;
-
-  /*! \brief The constructor of CompositeAttribute
-   *
-   *  \param string $description A more detailed description for the attribute
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param array $attributes The attributes that are parts of this composite attribute
-   *  \param string $readFormat the preg_match format that's gonna be used in order to read values from LDAP
-   *  \param string $writeFormat the printf format that's gonna be used in order to write values into LDAP
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   *  \param string $label The label to show for this attribute. Only useful if you put this attribute inside a SetAttribute, or if you use a specific template that needs it.
-   */
-  function __construct ($description, $ldapName, $attributes, $readFormat, $writeFormat, $acl = "", $label = NULL)
-  {
-    if ($label === NULL) {
-      $label = $ldapName;
-    }
-    parent::__construct($label, $description, $ldapName, FALSE, "", $acl);
-    $this->readFormat   = $readFormat;
-    $this->writeFormat  = $writeFormat;
-    $this->setAttributes($attributes);
-  }
-
-  function setAttributes ($attributes)
-  {
-    $this->attributes   = $attributes;
-    foreach ($this->attributes as &$attribute) {
-      $attribute->setAcl($this->getAcl());
-    }
-    unset($attribute);
-  }
-
-  function setAcl ($acl)
-  {
-    parent::setAcl($acl);
-    foreach ($this->attributes as &$attribute) {
-      $attribute->setAcl($this->getAcl());
-    }
-    unset($attribute);
-  }
-
-  function setParent (&$plugin)
-  {
-    parent::setParent($plugin);
-    foreach ($this->attributes as &$attribute) {
-      $attribute->setParent($plugin);
-    }
-    unset($attribute);
-  }
-
-  function setManagedAttributes ($dontcare)
-  {
-    trigger_error('method setManagedAttributes is not supported for CompositeAttribute');
-  }
-
-  function setLinearRendering ($bool)
-  {
-    $this->linearRendering = $bool;
-  }
-
-  function readValues($value)
-  {
-    $res = preg_match($this->readFormat, $value, $m);
-    if ($res === 1) {
-      $m = array_slice($m, 1);
-      $values = array();
-      foreach (array_keys($this->attributes) as $name) {
-        if (isset($m[$name])) {
-          $values[] = $m[$name];
-        } else {
-          $values[] = '';
-        }
-      }
-      return $values;
-    } elseif ($res === FALSE) {
-      trigger_error('Error in preg_match : '.preg_last_error());
-    } elseif ($value !== "") { /* If an empty value does not match, we don't trigger an error */
-      trigger_error('String passed "'.$value.'"to Composite did not match format "'.$this->readFormat.'"');
-    }
-    return array_fill(0, count($this->attributes), '');
-  }
-
-  function writeValues($values)
-  {
-    if ($this->writeFormat === FALSE) {
-      return $values;
-    } else {
-      return vsprintf($this->writeFormat, $values);
-    }
-  }
-
-  function resetToDefault ()
-  {
-    foreach ($this->attributes as &$attribute) {
-      $attribute->resetToDefault();
-    }
-    unset($attribute);
-  }
-
-  function inputValue ($value)
-  {
-    $values = $this->readValues($value);
-    $i = 0;
-    foreach ($this->attributes as &$attribute) {
-      $values[$i] = $attribute->inputValue($values[$i]);
-      $i++;
-    }
-    unset($attribute);
-    return $values;
-  }
-
-  function loadPostValue ()
-  {
-    foreach ($this->attributes as &$attribute) {
-      $attribute->loadPostValue();
-    }
-    unset($attribute);
-  }
-
-  function applyPostValue ()
-  {
-    foreach ($this->attributes as &$attribute) {
-      $attribute->applyPostValue();
-    }
-    unset($attribute);
-  }
-
-  function setValue ($values)
-  {
-    if (!is_array($values)) {
-      $values = $this->inputValue($values);
-    }
-    $i = 0;
-    reset($values);
-    foreach ($this->attributes as &$attribute) {
-      $attribute->setValue(current($values));
-      next($values);
-    }
-    unset($attribute);
-    reset($values);
-  }
-
-  /* We always return the LDAP value as the composite attribute has nothing else */
-  function getValue ()
-  {
-    $values = array_map(
-      function ($a)
-      {
-        return $a->computeLdapValue();
-      },
-      $this->attributes
-    );
-    return $this->writeValues($values);
-  }
-
-  function getArrayValue ()
-  {
-    $values = array_map(
-      function ($a)
-      {
-        return $a->displayValue($a->getValue());
-      },
-      $this->attributes
-    );
-    return $values;
-  }
-
-  function check ()
-  {
-    $error = parent::check();
-    if (!empty($error)) {
-      return $error;
-    }
-    foreach ($this->attributes as &$attribute) {
-      $error = $attribute->check();
-      if (!empty($error)) {
-        return $error;
-      }
-    }
-    unset($attribute);
-  }
-
-  function renderAttribute(&$attributes, $readOnly)
-  {
-    if ($this->visible) {
-      if ($this->linearRendering) {
-        parent::renderAttribute($attributes, $readOnly);
-      } else {
-        foreach ($this->attributes as &$attribute) {
-          $attribute->setDisabled($this->disabled);
-          $attribute->renderAttribute($attributes, $readOnly);
-        }
-        unset($attribute);
-      }
-    }
-  }
-
-  function getForHtmlId()
-  {
-    // Label (if any) should point to the first attribute
-    if (isset($this->attributes[0])) {
-      return $this->attributes[0]->getForHtmlId();
-    } else {
-      return '';
-    }
-  }
-
-  function serializeAttribute(&$attributes, $form = TRUE)
-  {
-    if ($form) {
-      if ($this->visible) {
-        foreach ($this->attributes as &$attribute) {
-          $attribute->setDisabled($this->disabled);
-          $attribute->serializeAttribute($attributes, $form);
-        }
-        unset($attribute);
-      }
-    } else {
-      parent::serializeAttribute($attributes, $form);
-      $subattributes = array();
-      foreach ($this->attributes as &$attribute) {
-        $attribute->setDisabled($this->disabled);
-        $attribute->serializeAttribute($subattributes, $form);
-      }
-      unset($attribute);
-      $attributes[$this->getLdapName()]['attributes'] = $subattributes;
-    }
-  }
-
-  function deserializeValue($values)
-  {
-    if ($this->visible) {
-      foreach ($this->attributes as &$attribute) {
-        $attribute->setDisabled($this->disabled);
-        $attribute->deserializeValue($values);
-      }
-      unset($attribute);
-    }
-  }
-
-  function renderFormInput()
-  {
-    $display = "";
-    foreach ($this->attributes as &$attribute) {
-      $attribute->setDisabled($this->disabled);
-      if ($attribute->isVisible()) {
-        $display .= '<label for="'.$attribute->getForHtmlId().'">'.$attribute->getLabel().'</label>'." ".$attribute->renderFormInput()." ";
-      }
-    }
-    unset($attribute);
-    return $display;
-  }
-
-  public function htmlIds()
-  {
-    $ret = array();
-    foreach ($this->attributes as &$attribute) {
-      $ret = array_merge($ret, $attribute->htmlIds());
-    }
-    unset($attribute);
-    return $ret;
-  }
-}
-
-class OrderedArrayAttribute extends SetAttribute
-{
-  protected $order;
-  protected $edit_enabled;
-  protected $height   = 90;
-  protected $headers  = FALSE;
-
-  /*! \brief The constructor of OrderedArrayAttribute
-   *
-   *  \param Attribute $attribute The composite attribute you want to see multi-valuated
-   *  \param array $values The default values
-   */
-  function __construct ($attribute, $order = TRUE, $values = array(), $edit_enabled = FALSE)
-  {
-    parent::__construct($attribute, $values);
-    $this->order        = $order;
-    $this->edit_enabled = $edit_enabled;
-  }
-
-  function setHeight($h)
-  {
-    $this->height = $h;
-  }
-
-  function setHeaders($h)
-  {
-    $this->headers = $h;
-  }
-
-  function readValue($value)
-  {
-    if ($this->order) {
-      return preg_split('/:/', $value, 2);
-    } else {
-      return $value;
-    }
-  }
-
-  function writeValue($key, $value)
-  {
-    if ($this->order) {
-      return $key.":".$value;
-    } else {
-      return $value;
-    }
-  }
-
-  function computeLdapValue ()
-  {
-    $ldapValue = array();
-    foreach ($this->value as $key => $value) {
-      $ldapValue[] = $this->writeValue($key, $value);
-    }
-    return $ldapValue;
-  }
-
-  protected function loadAttrValue ($attrs)
-  {
-    if (isset($attrs[$this->getLdapName()]["count"])) {
-      $this->value = array();
-      for ($i = 0; $i < $attrs[$this->getLdapName()]["count"]; $i++) {
-        $value = $this->readValue($attrs[$this->getLdapName()][$i]);
-        if (is_array($value)) {
-          $this->value[$value[0]] = $value[1];
-        } else {
-          $this->value[] = $value;
-        }
-      }
-    } else {
-      $this->resetToDefault();
-    }
-    if ($this->order) {
-      $this->reIndexValues();
-    }
-  }
-
-  function renderOnlyFormInput ()
-  {
-    $id = $this->getHtmlId();
-    $div = new divSelectBox('rows'.$id);
-    $smarty = get_smarty();
-    $div->SetHeight($this->height);
-    $div->SetHeaders($this->headers);
-    foreach ($this->value as $key => $value) {
-      $fields = array();
-      foreach ($this->getAttributeArrayValue($key, $value) as $field) {
-        if (is_array($field)) {
-          $fields[] = $field;
-        } else {
-          $fields[] = array('string' => $field);
-        }
-      }
-      if (empty($fields)) {
-        continue;
-      }
-
-      list ($img, $width) = $this->genRowIcons($key, $value);
-
-      $fields[] = array("html" => $img, "attach" => 'style="border:0px;width:'.$width.'px;"');
-      $div->AddEntry($fields);
-    }
-    $smarty->assign("div_$id", $div->DrawList());
-    return '{$div_'.$id.'}'."\n";
-  }
-
-  protected function genRowIcons($key, $value)
-  {
-    $id = $this->getHtmlId();
-
-    $img = '';
-    $width = 25;
-
-    if ($this->order) {
-      $width += 20;
-      if ($key != 0) {
-        $img .= $this->renderInputField(
-          'image', $id.'_up_'.$key,
-          array(
-            'src'   => 'geticon.php?context=actions&amp;icon=view-sort-descending&amp;size=16',
-            'title' => _('Sort up'),
-            'alt'   => _('Sort up'),
-            'class' => 'center'
-          )
-        ).'&nbsp;';
-      } else {
-        $img .= '<img src="images/empty.png" alt="" style="width:10px;"/>';
-      }
-      if (($key + 1) < count($this->value)) {
-        $img .= $this->renderInputField(
-          'image', $id.'_down_'.$key,
-          array(
-            'src'   => 'geticon.php?context=actions&amp;icon=view-sort-ascending&amp;size=16',
-            'title' => _('Sort down'),
-            'alt'   => _('Sort down'),
-            'class' => 'center'
-          )
-        ).'&nbsp;';
-      } else {
-        $img .= '<img src="images/empty.png" alt="" style="width:10px;"/>';
-      }
-    }
-    if ($this->edit_enabled) {
-      $width += 15;
-      $img .= $this->renderInputField(
-        'image', $id.'_edit_'.$key,
-        array(
-          'src'   => 'geticon.php?context=actions&amp;icon=document-edit&amp;size=16',
-          'title' => _('Edit'),
-          'alt'   => _('Edit'),
-          'class' => 'center'
-        )
-      ).'&nbsp;';
-    }
-    $img .= $this->renderInputField(
-      'image', $id.'_del_'.$key,
-      array(
-        'src'   => 'geticon.php?context=actions&amp;icon=edit-delete&amp;size=16',
-        'title' => _('Delete'),
-        'alt'   => _('Delete'),
-        'class' => 'center'
-      )
-    ).'&nbsp;';
-
-    return array ($img, $width);
-  }
-
-  protected function getAttributeArrayValue($key, $value)
-  {
-    $this->attribute->setValue($value);
-    return $this->attribute->getArrayValue();
-  }
-
-  protected function reIndexValues ()
-  {
-    $this->value = array_values($this->value);
-  }
-
-  function loadPostValue ()
-  {
-    $this->editingValue = FALSE;
-    if ($this->isVisible()) {
-      $this->postValue = $this->value;
-      $id = $this->getHtmlId();
-      foreach (array_keys($_POST) as $name) {
-        if ($this->handlePostValueActions($id, $name)) {
-          break;
-        }
-      }
-      $this->handleAddAndEditValue();
-    }
-  }
-
-  protected function handlePostValueActions($id, $postValue)
-  {
-    if ($this->order) {
-      if (preg_match('/^'.$id.'_up_/', $postValue)) {
-        $key = preg_replace('/^'.$id.'_up_/', '', $postValue);
-        $key = preg_replace('/_[xy]$/', '', $key);
-
-        $tmp                        = $this->postValue[$key];
-        $this->postValue[$key]      = $this->postValue[$key - 1];
-        $this->postValue[$key - 1]  = $tmp;
-        return TRUE;
-      }
-      if (preg_match('/^'.$id.'_down_/', $postValue)) {
-        $key = preg_replace('/^'.$id.'_down_/', '', $postValue);
-        $key = preg_replace('/_[xy]$/', '', $key);
-
-        $tmp                        = $this->postValue[$key];
-        $this->postValue[$key]      = $this->postValue[$key + 1];
-        $this->postValue[$key + 1]  = $tmp;
-        return TRUE;
-      }
-    }
-    if ($this->edit_enabled) {
-      if (preg_match('/^'.$id.'_edit_/', $postValue)) {
-        $key = preg_replace('/^'.$id.'_edit_/', '', $postValue);
-        $key = preg_replace('/_[xy]$/', '', $key);
-        $this->handleEdit($key);
-        return TRUE;
-      }
-    }
-    if (preg_match('/^'.$id.'_del_/', $postValue)) {
-      $key = preg_replace('/^'.$id.'_del_/', '', $postValue);
-      $key = preg_replace('/_[xy]$/', '', $key);
-      $this->delPostValue($key);
-      return TRUE;
-    }
-    return FALSE;
-  }
-
-  protected function handleAddAndEditValue()
-  {
-    $id = $this->getHtmlId();
-    if ($this->attribute === FALSE) {
-      return;
-    }
-    if (isset($_POST["add$id"])) {
-      $this->attribute->loadPostValue();
-      $this->attribute->applyPostValue();
-      if ($error = $this->attribute->check()) {
-        msg_dialog::display(sprintf(_('Invalid value for %s'), $this->getLabel()), $error);
-      } else {
-        $this->addPostValue($this->attribute->getValue());
-      }
-    } elseif ($this->editingValue === FALSE) {
-      $this->attribute->loadPostValue();
-      $this->attribute->applyPostValue();
-      $this->editingValue = $this->attribute->getValue();
-    }
-  }
-
-  protected function handleEdit($key)
-  {
-    $this->editingValue = $this->value[$key];
-    $this->delPostValue($key);
-    $this->plugin->focusedField = $this->getHtmlId();
-  }
-
-  function applyPostValue ()
-  {
-    parent::applyPostValue();
-    if ($this->order) {
-      $this->reIndexValues();
-    }
-  }
-
-  public function htmlIds()
-  {
-    $id   = $this->getHtmlId();
-    $ids  = array('add'.$id);
-    if ($this->attribute !== FALSE) {
-      $ids  = array_merge($ids, $this->attribute->htmlIds());
-    }
-    $nb_values = count($this->value);
-    for ($i = 0; $i < $nb_values; ++$i) {
-      if ($this->order) {
-        if ($i > 0) {
-          $ids[] = $id.'_up_'.$i;
-        }
-        if (($i + 1) < $nb_values) {
-          $ids[] = $id.'_down_'.$i;
-        }
-      }
-      $ids[] = $id.'_del_'.$i;
-    }
-    return $ids;
-  }
-
-  function renderButtons ()
-  {
-    $id = $this->getHtmlId();
-    $buttons = $this->renderInputField('submit', 'add'.$id, array('value' => '{msgPool type=addButton}'));
-    return $buttons;
-  }
-}
-
-class SubNodesAttribute extends OrderedArrayAttribute
-{
-  protected $objectClass;
-  protected $objectClasses;
-
-  function __construct ($label, $description, $ldapName, $objectClass, $attributes, $order = FALSE, $values = array(), $edit_enabled = FALSE, $acl = "")
-  {
-    $attributes_keys = array();
-    foreach ($attributes as $attribute) {
-      $attributes_keys[$attribute->getLdapName()] = $attribute;
-      $attributes_keys[$attribute->getLdapName()]->htmlid_prefix = $ldapName.'_';
-    }
-    $composite = new CompositeAttribute(
-      $description, $ldapName,
-      $attributes_keys,
-      FALSE, FALSE,
-      $acl, $label
-    );
-    parent::__construct($composite, $order, $values, $edit_enabled);
-    if (is_array($objectClass)) {
-      $this->objectClass    = $objectClass[0];
-      $this->objectClasses  = $objectClass;
-    } else {
-      $this->objectClass    = $objectClass;
-      $this->objectClasses  = array($objectClass);
-    }
-  }
-
-  protected function loadAttrValue ($attrs)
-  {
-    global $config;
-    /* Should we take dn from attrs or plugin? */
-    if (isset($attrs['dn'])) {
-      $ldap = $config->get_ldap_link();
-      $ldap->ls('objectClass='.$this->objectClass, $attrs['dn']);
-      $this->value = array();
-      while ($subattrs = $ldap->fetch()) {
-        $this->attribute->resetToDefault();
-        foreach ($this->attribute->attributes as &$attribute) {
-          $attribute->loadAttrValue($subattrs);
-        }
-        unset($attribute);
-        $this->value[] = $this->attribute->getValue();
-      }
-    } else {
-      $this->resetToDefault();
-    }
-  }
-
-  /* Not saving anything into base node */
-  function fillLdapValue (&$attrs)
-  {
-    /* Remove crap made by plugin */
-    unset ($attrs[$this->getLdapName()]);
-  }
-
-  /* Special LDAP treatment that this attribute does after plugin ldap save */
-  function postLdapSave ($ldap)
-  {
-    /* First delete all old nodes */
-    $ldap->ls('objectClass='.$this->objectClass, $this->plugin->dn, array('dn'));
-    $delete = array();
-    while ($attrs = $ldap->fetch()) {
-      $delete[] = $attrs['dn'];
-    }
-    foreach ($delete as $dn) {
-      $ldap->rmdir($dn);
-    }
-    /* Then add our values */
-    foreach ($this->value as $val) {
-      $attrs = array('objectClass' => $this->objectClasses);
-      $this->attribute->setValue($val);
-      foreach ($this->attribute->attributes as &$attribute) {
-        $attribute->fillLdapValue($attrs);
-      }
-      unset($attribute);
-      $dn = $this->compute_attribute_dn();
-      $ldap->cd($dn);
-      foreach (array_keys($attrs) as $index) {
-        if (is_array($attrs[$index]) && (count($attrs[$index]) == 0)) {
-          unset($attrs[$index]);
-        }
-      }
-      $ldap->add($attrs);
-      if (!$ldap->success()) {
-        msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_ADD, get_class()), LDAP_ERROR);
-      }
-    }
-  }
-
-  function compute_attribute_dn ()
-  {
-    /* Later we might want to be able to choose which attribute to use in the dn */
-    reset($this->attribute->attributes);
-    $attribute = key($this->attribute->attributes);
-    return $attribute.'='.$this->attribute->attributes[$attribute]->computeLdapValue().','.$this->plugin->dn;
-  }
-}
-
-
-/*! \brief This class allow to handle an attribute that stores flags based on other BooleanAttributes
- *
- */
-class FlagsAttribute extends StringAttribute
-{
-  protected $flags;
-
-  /*! \brief The constructor of IntAttribute
-   *
-   *  \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
-   *  \param array  $flags The ids of the BooleanAttributes to use as flags
-   *  \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
-   */
-  function __construct ($ldapName, $flags, $acl = "")
-  {
-    parent::__construct('', '', $ldapName, FALSE, '', $acl);
-    $this->setVisible(FALSE);
-    $this->flags = $flags;
-  }
-
-  function setParent (&$plugin)
-  {
-    parent::setParent($plugin);
-    if (is_object($this->plugin)) {
-      foreach ($this->flags as $attr) {
-        $this->plugin->attributesAccess[$attr]->setInLdap(FALSE);
-      }
-    }
-  }
-
-  function setValue ($value)
-  {
-    parent::setValue($value);
-    if (is_object($this->plugin)) {
-      foreach ($this->flags as $attr) {
-        $trueValue = $this->plugin->attributesAccess[$attr]->trueValue;
-        $this->plugin->attributesAccess[$attr]->setValue(preg_match("/$trueValue/", $this->value));
-      }
-    }
-  }
-
-  function getValue()
-  {
-    $value = '[';
-    if (is_object($this->plugin)) {
-      foreach ($this->flags as $attr) {
-        $value .= $this->plugin->attributesAccess[$attr]->computeLdapValue();
-      }
-    }
-    $value .= ']';
-    return $value;
-  }
-}
-
-?>
diff --git a/include/simpleplugin/class_simpleManagement.inc b/include/simpleplugin/class_simpleManagement.inc
index e35e00221e1f5ec7a1ba7ec69e60358a6ebb28b4..f10ea6c6d1b26bc6ac356b92c836a448d108d0b2 100644
--- a/include/simpleplugin/class_simpleManagement.inc
+++ b/include/simpleplugin/class_simpleManagement.inc
@@ -66,7 +66,8 @@ class templateDialog
         trigger_error('redefining template object');
       }
       $this->template = new template($this->type, $_POST['template']);
-      unset($_POST['template']); // This method can loop if there are several targets
+      /* This method can loop if there are several targets */
+      unset($_POST['template']);
     }
     if (is_object($this->template)) {
       if ($this->target !== NULL) {
@@ -206,13 +207,13 @@ class simpleManagement extends management
         $this->headpage->xmlData['actionmenu']['action'][0]['action'] = array(
           array(
             'type'    => 'sub',
-            'image'   => 'geticon.php?context=actions&amp;icon=document-new&amp;size=16',
+            'image'   => 'geticon.php?context=actions&icon=document-new&size=16',
             'label'   => _('Template'),
             'action'  => array(),
           ),
           array(
             'type'    => 'sub',
-            'image'   => 'geticon.php?context=actions&amp;icon=document-new&amp;size=16',
+            'image'   => 'geticon.php?context=actions&icon=document-new&size=16',
             'label'   => _('From template'),
             'action'  => array(),
           ),
@@ -294,7 +295,6 @@ class simpleManagement extends management
         }
       }
     }
-    $this->headpage->registerElementFilter('filterRowLink', 'simpleManagement::filterRowLink');
     $this->headpage->refreshBasesList();
   }
 
@@ -865,21 +865,6 @@ class simpleManagement extends management
     return "";
   }
 
-  static function filterRowLink()
-  {
-    $pid    = func_get_arg(0);
-    $row    = func_get_arg(1);
-    $dn     = func_get_arg(2);
-    $trans  = func_get_arg(3);
-    unset($trans['count']);
-    $trans  = join("<br/>\n", $trans);
-    if ($trans != "") {
-      return '<a href="?plug='.$_GET['plug'].'&amp;PID='.$pid.'&amp;act=listing_edit_'.$row.'" title="'.$dn.'">'.$trans.'</a>';
-    }
-
-    return '';
-  }
-
   static function mainInc ($classname)
   {
     global $remove_lock, $cleanup, $display, $config, $ui;
diff --git a/include/simpleplugin/class_simplePlugin.inc b/include/simpleplugin/class_simplePlugin.inc
index 888b865ec483fa3096378f57fd55b1f1ab5f8f59..d320e9ed0fb877e507534c1880e1b9c96a229e7a 100644
--- a/include/simpleplugin/class_simplePlugin.inc
+++ b/include/simpleplugin/class_simplePlugin.inc
@@ -202,7 +202,8 @@ class simplePlugin extends plugin
     foreach ($this->attributesInfo as &$sectionInfo) {
       foreach ($sectionInfo['attrs'] as $name => &$attr) {
         if (in_array($name, $this->preInitAttributes)) {
-          continue; // skip the preInit ones
+          /* skip the preInit ones */
+          continue;
         }
         $attr->setParent($this);
         $attr->loadValue($this->attrs);
diff --git a/include/simpleplugin/class_simpleTabs.inc b/include/simpleplugin/class_simpleTabs.inc
index 5b8d71c38cd887dc08acbf8609721cbdfd79955e..1cd9c4aaa327e87143a5fad819a5edd2b52a8dd3 100644
--- a/include/simpleplugin/class_simpleTabs.inc
+++ b/include/simpleplugin/class_simpleTabs.inc
@@ -43,9 +43,11 @@ class simpleTabs
   var $by_object  = array();
   var $acl_category;
 
-  var $parent = NULL; // A parent object if available, e.g. a management class.
+  /* A parent object if available, e.g. a management class. */
+  var $parent = NULL;
 
-  var $read_only = FALSE; // Used when the entry is opened as "readonly" due to locks.
+  /* Used when the entry is opened as "readonly" due to locks. */
+  var $read_only = FALSE;
 
   var $baseclass = "";
 
@@ -173,7 +175,8 @@ class simpleTabs
       } else {
         $baseobject->base = dn2base(get_userinfo()->dn);
       }
-      if (!($baseobject instanceOf simplePlugin) && is_object($baseobject->baseSelector)) { // For some plugins not yet migrated to simple plugin.
+      /* For some plugins not yet migrated to simple plugin. */
+      if (!($baseobject instanceOf simplePlugin) && is_object($baseobject->baseSelector)) {
         $baseobject->baseSelector->setBase($baseobject->base);
       }
       @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $baseobject->base, 'Fixed base');
@@ -202,7 +205,7 @@ class simpleTabs
     unset($obj);
 
     /* Show object */
-    $display = '<div class="tab_content">'."\n";
+    $display = '<div class="tab-content">'."\n";
 
     $display .= $this->by_object[$this->current]->execute();
 
@@ -249,16 +252,16 @@ class simpleTabs
     if (!$disabled) {
       $display .= '<input type="hidden" name="arg" value=""/>';
     }
-    $display  .= '<table class="tabs_header"><tbody><tr>';
+    $display  .= '<table class="tabs-header"><tbody><tr>';
     $index    = 0;
-    $style    = array('tab_left', 'tab_active', 'tab_right');
+    $style    = array('tab-left', 'tab-active', 'tab-right');
     foreach ($this->by_name as $class => $name) {
 
-      /* Activate right tabs with style "tab_right" */
+      /* Activate right tabs with style "tab-right" */
       if ($index == 1) {
         $index++;
       } elseif ($class == $this->current) {
-        /* Activate current tab with style "tab_active " */
+        /* Activate current tab with style "tab-active " */
         $index++;
       }
 
@@ -279,13 +282,13 @@ class simpleTabs
       /* Take care about notifications */
       $obj = $this->by_object[$class];
       if ($this->by_object[$class]->pl_notify && ($obj->is_account || $obj->ignore_account)) {
-        $cssClasses .= ' tab_notify';
+        $cssClasses .= ' tab-notify';
       }
       if ($disabled) {
-        $cssClasses .= ' tab_disabled';
+        $cssClasses .= ' tab-disabled';
       }
       if (!$obj->is_account && !$obj->ignore_account) {
-        $cssClasses .= ' tab_inactive';
+        $cssClasses .= ' tab-inactive';
       }
 
 
@@ -302,7 +305,7 @@ class simpleTabs
     }
 
     $display .= "<td>\n";
-    $display .= '<div class="tab_border">&nbsp;</div></td></tr></tbody></table>';
+    $display .= '<div class="tab-border">&nbsp;</div></td></tr></tbody></table>';
 
     return $display;
   }
@@ -385,6 +388,8 @@ class simpleTabs
    */
   function save()
   {
+    global $ui;
+
     $baseobject = $this->getBaseObject();
     $new_dn     = $baseobject->compute_dn();
     @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $new_dn, "Saving");
@@ -424,6 +429,11 @@ class simpleTabs
     }
     unset($obj);
 
+    if ($this->dn == $ui->dn) {
+      /* If the logged in user was edited, update his information */
+      $ui->loadLDAPInfo();
+    }
+
     return 0;
   }
 
diff --git a/include/simpleplugin/simple-list.xml b/include/simpleplugin/simple-list.xml
index 54a985efca52b941520aa93ee655b654adaf8f0e..84c2fb784a68eb6b17103e38d0ab5caaf7dd01ed 100644
--- a/include/simpleplugin/simple-list.xml
+++ b/include/simpleplugin/simple-list.xml
@@ -16,7 +16,7 @@
     <layout>|20px;c|||150px;r|</layout>
 
     <department>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:departmentType(row,dn)}</value>
     </department>
 
     <department>
@@ -25,7 +25,7 @@
     </department>
 
     <column>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:objectType(row,dn)}</value>
     </column>
 
     <column>
@@ -54,10 +54,10 @@
   <actionmenu>
 
     <action>
-     <type>sub</type>
-     <image>geticon.php?context=actions&amp;icon=document-new&amp;size=16</image>
-     <label>Create</label>
-     <acl>[c]</acl>
+      <type>sub</type>
+      <image>geticon.php?context=actions&amp;icon=document-new&amp;size=16</image>
+      <label>Create</label>
+      <acl>[c]</acl>
     </action>
 
     <action>
@@ -68,7 +68,7 @@
       <acl>[r]</acl>
     </action>
 
-     <action>
+    <action>
       <name>remove</name>
       <type>entry</type>
       <image>geticon.php?context=actions&amp;icon=edit-delete&amp;size=16</image>
diff --git a/include/simpleplugin/simple-select-list.xml b/include/simpleplugin/simple-select-list.xml
index ac49d55e43627aa20b1a88b6204c2c926aace446..788cd2103af553fafd444ce387a69cbf968b87af 100644
--- a/include/simpleplugin/simple-select-list.xml
+++ b/include/simpleplugin/simple-select-list.xml
@@ -16,7 +16,7 @@
     <layout>|20px;c|||</layout>
 
     <department>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:departmentType(row,dn)}</value>
     </department>
 
     <department>
@@ -25,7 +25,7 @@
     </department>
 
     <column>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:objectType(row,dn)}</value>
     </column>
 
     <column>
diff --git a/include/variables_common.inc b/include/variables_common.inc
index b7d81447a98054a1df95003c72f5bcd279180770..fbeefcd6665df01d2f9a0e93cfc9f3609bfd44cb 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.16"); /*! Define FusionDirectory version */
+define ("FD_VERSION", "1.0.17"); /*! Define FusionDirectory version */
 
 /*!
  * \brief FusionDirectory config object RDN
diff --git a/locale/ar/fusiondirectory.po b/locale/ar/fusiondirectory.po
index d90a8ecc0a91b454ff29a5c606c6d4c65ee1f766..b6affbafe44eb74e8f9a93d1901c69c477922466 100644
--- a/locale/ar/fusiondirectory.po
+++ b/locale/ar/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n"
@@ -17,4876 +17,4757 @@ msgstr ""
 "Language: ar\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "الإسم"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "الوصف"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "رقم الفاكس"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "مجموعة"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "الخواص"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "تحذير"
-
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "إزالة"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "القسم"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "البلد"
-
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "العنوان"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "الهاتف"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "الفاكس"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "خطأ"
+
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "تحذير"
+
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "خطأ"
+
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1084
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "ACL for these objects: %s"
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Delete"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "خطأ داخلي"
+
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "الإسم العائلي"
-
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "الإسم الأول"
-
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "الهاتف المحمول"
-
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "رقم المنزل"
-
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:678
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:1132
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2641
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
+#: include/functions.inc:2645
 msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "تلقائي"
-
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:3321
 #, php-format
-msgid "Group of user %s"
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
-
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "الرجوع"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
+#: include/class_msgPool.inc:806
+#, php-format
 msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr ""
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "النوع"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:970
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:972
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_ldap.inc:1134
 #, php-format
-msgid "Body (%s is login)"
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:1139
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:1170
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "الإسم"
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "الوصف"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "إزالة"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "خطأ"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_management.inc:679
-#, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_config.inc:156
-#, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
+#, php-format
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "خطأ داخلي"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
+#, php-format
+msgid "A float smaller than %f"
+msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr ""
+
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:994
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_ldap.inc:996
-#, php-format
-msgid "while operating on LDAP server %s"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: include/class_acl.inc:118
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/class_acl.inc:170
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: include/class_acl.inc:173
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "All users"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+msgstr ""
+
+#: html/index.php:62
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_msgPool.inc:43
+#: html/index.php:150
 #, php-format
-msgid "Select to list objects of type '%s'."
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_msgPool.inc:47
+#: html/index.php:173
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:214
+#, php-format
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:69
-#, php-format
-msgid "This '%s' object will be deleted!"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:74
-#, php-format
-msgid "This object will be deleted: %s"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:76
-#, php-format
-msgid "This '%s' object will be deleted: %s"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:83
-#, php-format
-msgid "This '%s' object will be deleted:"
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:87
-#, php-format
-msgid "These objects will be deleted: %s"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:89
-#, php-format
-msgid "These '%s' objects will be deleted: %s"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/index.php:454
+#, php-format
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/index.php:475
+#, php-format
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/index.php:485
+#, php-format
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr ""
+
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/class_passwordRecovery.inc:498
+#, php-format
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/class_passwordRecovery.inc:506
+#, php-format
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:313
+#: html/main.php:290
 #, php-format
-msgid "'%s' command is invalid!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:319
+#: html/main.php:306
 #, php-format
-msgid "'%s' command (%s) is invalid!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:321
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "الرجوع"
-
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "تلقائي"
+
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "الإسم العائلي"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "الإسم الأول"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "العنوان"
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "الهاتف"
+
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "الهاتف المحمول"
+
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "الفاكس"
+
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "رقم المنزل"
+
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:859
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "القسم"
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:2117
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2119
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sMiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:3345
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "النوع"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: 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 ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "الخواص"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "البلد"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "خطأ"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "رقم الفاكس"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: 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:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "مجموعة"
+
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr ""
+
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr ""
+
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr ""
+
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4961,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4999,72 +4869,106 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:2
-msgid "Assigned ACL for current entry"
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:5
-msgid "New ACL"
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:8
-msgid "ACL type"
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
-msgid "Select an acl type"
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:17
-msgid "Additional filter options"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:20
-msgid "Use members from"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:23
-msgid "Available members"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
-msgid "List message possible targets"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
-msgid "List message recipients"
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:44
-msgid "ACL for this object"
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:47
-msgid "Available roles"
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
 msgstr ""
 
 #: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
@@ -5092,182 +4996,277 @@ msgstr ""
 msgid "Operation complete"
 msgstr ""
 
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
 #: ihtml/themes/breezy/msg_dialog.tpl.c:8
 msgid "Information"
 msgstr "معلومات"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: ihtml/themes/breezy/acl.tpl.c:2
+msgid "Assigned ACL for current entry"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:5
+msgid "New ACL"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:8
+msgid "ACL type"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
+msgid "Select an acl type"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:17
+msgid "Additional filter options"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:20
+msgid "Use members from"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:23
+msgid "Available members"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
+msgid "List message possible targets"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
+msgid "List message recipients"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: ihtml/themes/breezy/acl.tpl.c:44
+msgid "ACL for this object"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: ihtml/themes/breezy/acl.tpl.c:47
+msgid "Available roles"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/generic/references/contents.tpl.c:5
+msgid ""
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:2
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/ca/fusiondirectory.po b/locale/ca/fusiondirectory.po
index 926e3d7fa1f84b99289634d55c502ba4419c0511..0d5dd784b63f1b921253414d5d573f49c38a7ef3 100644
--- a/locale/ca/fusiondirectory.po
+++ b/locale/ca/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n"
@@ -17,4848 +17,4757 @@ msgstr ""
 "Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Llengua preferida"
 
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nom"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Número de telèfon"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Número de fax"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Avís"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:191
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "D'acord"
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Departament"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Error"
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Departaments"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Name of %s"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Error d'LDAP"
+
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "A name for this %s"
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
+#: setup/class_setupStep_Migrate.inc:511
 #, php-format
-msgid "Short description of this %s"
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Categoria"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Avís"
 
-#: plugins/admin/departments/class_department.inc:76
+#: setup/class_setupStep_Migrate.inc:574
 #, php-format
-msgid "Category of this %s"
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Responsable"
-
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "Manager of this %s"
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Localització"
-
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Província"
-
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Estat"
-
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Adreça"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Migrate.inc:860
 #, php-format
-msgid "A postal address for this %s"
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Telèfon"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Localitat"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Error"
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organització"
-
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Entrada"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
+
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
-#, php-format
+#: setup/class_setupStep_Ldap.inc:59
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr ""
+
+#: setup/class_setupStep_Ldap.inc:174
 #, php-format
-msgid "Edit ACL for \"%s\""
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objecte"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Finalitza"
+
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr ""
+
+#: include/class_logging.inc:80
 #, php-format
-msgid "Contains settings for these objects: %s"
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Error fatal"
+
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Mètode de contrasenya"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Error de la configuració"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Contrasenya"
-
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Informació personal"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Cognoms"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Canceŀla-ho tot"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Nom"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Entrada"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr ""
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Nom de la plantilla"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Núm de sala"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Número de sala"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Error d'autenticació."
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Mòbil"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Buscapersones"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Pàgina principal"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Llengua preferida"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Adreça postal personal"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Telèfon privat"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Número de telèfon personal"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Núm de department"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Número de departament"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Núm d'empleat"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Número d'empleat"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Categoria professional"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Contrasenya nova"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "La contrasenya nova i l'actual són massa similars."
-
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "La contrasenya nova és massa curta."
-
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Directori personal"
-
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Intèrpret d'ordres"
-
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Compte"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
+#: include/class_config.inc:280
+#, php-format
 msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/class_config.inc:899
+#, php-format
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr ""
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "El meu compte"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
-
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_msgPool.inc:89
 #, php-format
-msgid "Group of user %s"
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Paràmetres de la contrasenya"
-
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr ""
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Canceŀla"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr ""
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Aplica"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr ""
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Desa"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Edita…"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Edita %s…"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Enrere"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Aquest compte no té extensions de %s vàlides!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Aquest compte té paràmetres de %s habilitats. Podeu inhabilitar-los fent clic a sota."
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr ""
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Feu clic al botó «Edita» a sota per canviar la informació d'aquest diàleg"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "gener"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "febrer"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "març"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "abril"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "maig"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "juny"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "juliol"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "agost"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "setembre"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "octubre"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "novembre"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "desembre"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "diumenge"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "dilluns"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "dimarts"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "dimecres"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "dijous"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "divendres"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "dissabte"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objecte"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Marca de temps"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/php_setup.inc:132
+msgid "Type"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
+#: include/class_ldap.inc:846
+#, php-format
 msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nom"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr ""
-
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr ""
-
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Grup de l'usuari"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/simpleplugin/class_simpleTabs.inc:401
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
-#, php-format
-msgid "Body (%s is login)"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
-#, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Error"
-
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
+#, php-format
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
+#, php-format
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
+#, php-format
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
+#, php-format
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
+#, php-format
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
+#, php-format
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/class_plugin.inc:795
+#, php-format
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
-#, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr ""
+
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr ""
+
+#: include/class_acl.inc:118
 #, php-format
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/class_acl.inc:170
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Error de la configuració"
-
-#: include/class_config.inc:280
+#: include/class_acl.inc:173
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "All users"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Error d'LDAP"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_config.inc:357
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_config.inc:885
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_config.inc:898
-#, php-format
+#: html/index.php:62
 msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: html/index.php:150
+#, php-format
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "El meu compte"
-
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: html/index.php:173
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "La vostra sessió del FusionDirectori ha caducat!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:846
+#: html/index.php:214
 #, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_ldap.inc:994
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_ldap.inc:996
-#, php-format
-msgid "while operating on LDAP server %s"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Especifiqueu un nom d'usuari vàlid."
+
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Especifiqueu la vostra contrasenya."
+
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "El compte és blocat. Contacteu el vostre administrador de sistemes."
+
+#: html/index.php:454
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: html/index.php:475
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: html/index.php:485
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: html/index.php:547
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: html/index.php:557
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_ldap.inc:1194
-#, php-format
+#: html/index.php:596
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "El vostre navegador té les galetes inhabilitades. Habiliteu les galetes i torneu a carregar aquesta pàgina abans d'entrar."
 
-#: include/class_msgPool.inc:43
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr ""
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "La configuració %s/%s del FusionDirectori no és llegible. S'està avortant."
 
-#: include/class_msgPool.inc:45
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "Select to list objects containig '%s'."
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:47
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr ""
-
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr ""
-
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
 msgstr ""
 
-#: include/class_msgPool.inc:69
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "This '%s' object will be deleted!"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "This '%s' object will be deleted: %s"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:83
-#, php-format
-msgid "This '%s' object will be deleted:"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:87
-#, php-format
-msgid "These objects will be deleted: %s"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:89
-#, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr ""
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Configuració del PHP"
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr ""
+#: html/main.php:142
+msgid "Password change"
+msgstr "Canvi de contrasenya"
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr ""
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "S'està exhaurint la memòria!"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr ""
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "S'han inhabilitat les comprovacions de les ACL dels usuaris"
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr ""
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Connector"
 
-#: include/class_msgPool.inc:151
+#: html/main.php:290
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/main.php:306
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
-msgstr ""
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: plugins/generic/welcome/main.inc:25
+#, php-format
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Directori personal"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Intèrpret d'ordres"
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Compte"
+
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Canceŀla"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "D'acord"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Aplica"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Desa"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Edita…"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Edita %s…"
-
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Enrere"
-
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Aquest compte no té extensions de %s vàlides!"
-
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Aquest compte té paràmetres de %s habilitats. Podeu inhabilitar-los fent clic a sota."
-
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#: plugins/personal/posix/class_posixAccount.inc:538
 #, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Feu clic al botó «Edita» a sota per canviar la informació d'aquest diàleg"
-
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "gener"
-
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "febrer"
-
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "març"
-
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "abril"
-
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "maig"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "juny"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "juliol"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Mètode de contrasenya"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "agost"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "setembre"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Contrasenya"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "octubre"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "novembre"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "desembre"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "diumenge"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "dilluns"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "dimarts"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "dimecres"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Informació personal"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "dijous"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Cognoms"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "divendres"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "dissabte"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Nom"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Localització"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Província"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Adreça"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Núm de sala"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Número de sala"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Telèfon"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Mòbil"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Buscapersones"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Pàgina principal"
+
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Adreça postal personal"
+
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Telèfon privat"
+
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Número de telèfon personal"
+
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Error fatal"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organització"
+
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Departament"
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Núm de department"
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Error d'autenticació."
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Número de departament"
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Núm d'empleat"
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Número d'empleat"
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Categoria professional"
 
-#: include/functions.inc:678
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Responsable"
+
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "LDAP server returned: %s"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:1130
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "The size limit of %d entries is exceed!"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Contrasenya nova"
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "La contrasenya nova i l'actual són massa similars."
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "La contrasenya nova és massa curta."
+
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:2669
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
 msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/functions.inc:2672
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
 msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/functions.inc:3175
+#: plugins/config/class_recoveryConfig.inc:109
 #, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr ""
-
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr ""
-
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr ""
-
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/functions.inc:3345
+#: plugins/config/class_recoveryConfig.inc:113
 #, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Nom de la plantilla"
-
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: 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 ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Paràmetres de la contrasenya"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Marca de temps"
-
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Canceŀla-ho tot"
-
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Grup de l'usuari"
-
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
-
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "La vostra sessió del FusionDirectori ha caducat!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
+msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Especifiqueu un nom d'usuari vàlid."
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Especifiqueu la vostra contrasenya."
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "El compte és blocat. Contacteu el vostre administrador de sistemes."
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "El vostre navegador té les galetes inhabilitades. Habiliteu les galetes i torneu a carregar aquesta pàgina abans d'entrar."
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Configuració del PHP"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Canvi de contrasenya"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "S'està exhaurint la memòria!"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "S'han inhabilitat les comprovacions de les ACL dels usuaris"
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
+msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Connector"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:463
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "La configuració %s/%s del FusionDirectori no és llegible. S'està avortant."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
+#: plugins/config/class_dashBoardConfig.inc:62
 msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Departaments"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Categoria"
+
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Estat"
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Finalitza"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Localitat"
+
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
 msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Error"
-
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Número de telèfon"
+
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Número de fax"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
+#: setup/setup_welcome.tpl.c:32
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Paràmetres de l'usuari"
-
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Neteja la contrasenya"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Estableix una contrasenya nova"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Imatge personal"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Imatge de l'usuari"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Suprimeix la imatge"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Només lectura"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Continua"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Pantalla d'entrada"
@@ -4971,72 +4869,106 @@ msgstr "Entra"
 msgid "Click here to log in"
 msgstr "Feu clic ací per entrar"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:2
-msgid "Assigned ACL for current entry"
-msgstr ""
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Principal"
 
-#: ihtml/themes/breezy/acl.tpl.c:5
-msgid "New ACL"
-msgstr "ACL nou"
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Surt"
 
-#: ihtml/themes/breezy/acl.tpl.c:8
-msgid "ACL type"
-msgstr "Tipus d'ACL"
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Identificat com a:"
 
-#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
-msgid "Select an acl type"
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:17
-msgid "Additional filter options"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:20
-msgid "Use members from"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:23
-msgid "Available members"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
-msgid "List message possible targets"
-msgstr ""
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Continua"
 
-#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
-msgid "List message recipients"
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:44
-msgid "ACL for this object"
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:47
-msgid "Available roles"
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Només lectura"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
 msgstr ""
 
 #: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
@@ -5064,182 +4996,249 @@ msgstr ""
 msgid "Operation complete"
 msgstr "S'ha completat l'operació"
 
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
 #: ihtml/themes/breezy/msg_dialog.tpl.c:8
 msgid "Information"
 msgstr "Informació"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Principal"
-
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Surt"
+#: ihtml/themes/breezy/acl.tpl.c:2
+msgid "Assigned ACL for current entry"
+msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Identificat com a:"
+#: ihtml/themes/breezy/acl.tpl.c:5
+msgid "New ACL"
+msgstr "ACL nou"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: ihtml/themes/breezy/acl.tpl.c:8
+msgid "ACL type"
+msgstr "Tipus d'ACL"
+
+#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
+msgid "Select an acl type"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: ihtml/themes/breezy/acl.tpl.c:17
+msgid "Additional filter options"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: ihtml/themes/breezy/acl.tpl.c:20
+msgid "Use members from"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: ihtml/themes/breezy/acl.tpl.c:23
+msgid "Available members"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
+msgid "List message possible targets"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
+msgid "List message recipients"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
+#: ihtml/themes/breezy/acl.tpl.c:44
+msgid "ACL for this object"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
+#: ihtml/themes/breezy/acl.tpl.c:47
+msgid "Available roles"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Paràmetres de l'usuari"
+
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Neteja la contrasenya"
+
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Estableix una contrasenya nova"
+
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Imatge personal"
+
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Imatge de l'usuari"
+
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Suprimeix la imatge"
+
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:2
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr ""
+
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/cs_CZ/fusiondirectory.po b/locale/cs_CZ/fusiondirectory.po
index 9f139df3126be3fc164afbc05df5146af97ac7aa..dbbcecaf76541a0df656699d88bf3b4701bd2c67 100644
--- a/locale/cs_CZ/fusiondirectory.po
+++ b/locale/cs_CZ/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n"
@@ -17,4856 +17,4758 @@ msgstr ""
 "Language: cs_CZ\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Vítejte, %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Odkazy"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Role"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr "Informace o roli"
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr "Organizační role"
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Informace"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Název"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr "Název této skupiny"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Popis"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Popis role"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Telefonní číslo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Faxové číslo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Přidat uživatele pro tuto roli"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Skupina"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr "Informace o POSIX skupinÄ›"
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr "POSIX skupina"
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr "POSIX skupina uživatelů"
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "vlastnosti"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr "Stručný popis této skupiny"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Vynutit konkrétní GID identifikátor"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr "Vynutit konkrétní identifikátor pro tuto skupinu"
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr "GID identifikátor pro tuto skupinu"
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Členové skupiny"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "důvěryhodnost systémů"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Upřednostňovaný jazyk"
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "režim důvěryhodnosti"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Nastavení jazyka"
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr "Typ ověřování pro tyto počítače"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "V tomto kroku vyberete Vámi upřednostňovaný jazyk."
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "vypnuto"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
+msgstr "V tomto okamžiku je možné zvolit výchozí jazyk pro celý systém. Volba samočinně použije jazyk požadovaný přistupujícím webovým prohlížečem. Toto nastavení může být přebito."
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "plný přístup"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Samočinné"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "umožnit přístup k těmto strojům"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "Kontroly PHP a rozšiřujících komponent"
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-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"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
+msgstr "Nastavení PHP (<a href=\"?info\" target=\"_blank\">zobrazit informace)</a>)"
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Varování"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Kontrola instalace"
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Vypršel časový limit při čekání na zámek – zámek bude proto nebude brán v potaz!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Základní kontrola toho, zda je PHP a rozšířující moduly ve vyhovujících verzích"
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr "Neznámý typ: %s"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Kontrola verze PHP…"
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr "Neexistující rozlišený název: %s"
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "skupina objektu"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr "Informace o skupinÄ› objektu"
+msgid "PHP must be of version %s or above."
+msgstr "Je třeba, aby PHP bylo ve verzi %s a vyšší."
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "členské objekty"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Přejděte na verzi, která je podporována."
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr "Objekty spadající do této skupiny"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory potřebuje tento modul pro komunikaci s LDAP serverem."
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 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"
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Seznam skupin"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Akce"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Vytvořit"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Upravit"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Odstranit"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr "Skupiny a role"
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory potřebuje tento modul pro přizpůsobení uživatelského rozhraní místním odlišnostem (formát data a času, měrné jednotky, atp.)."
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr "Spravovat skupiny a role"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory potřebuje tento modul pro komunikaci různými protokoly s různými typy serverů."
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory potřebuje tento modul pro začlenění Samby."
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr "Upravit vlastnosti role"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "Aby bylo možné ve FusionDirectory využívat SSHA šifrování, musí být nainstalován jeden z těchto modulů: 'mhash', nebo 'sha1'."
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "POSIX"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory potřebuje tento modul pro komunikaci s IMAP serverem."
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Upravit POSIXové vlastnosti"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "vícebajtový řetězec (mbstring)"
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr "Zobrazit skupiny uživatele"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory potřebuje tento modul pro práci se znaky v univerzálním kódování (unicode)."
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Zobrazit hlavní skupiny"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "ImageMagick"
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr "Zobrazit organizační role"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory jej potřebuje pro práci s obrázky."
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr "Zobrazit skupiny aplikací"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "kompresní modul"
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory toto rozšíření potřebuje pro práci se snímky."
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Zobrazit e-mailové skupiny"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "„register_globals“ je mechanizmus v PHP pro registraci všech globálních proměnných, které jsou tak dostupné ze skriptů aniž by bylo třeba měnit jejich rozsah. Jenže to může rizikové z hlediska zabezpečení."
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Zobrazit skupiny Samby"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Vyhledejte ve svém souboru php.ini parametr register_globals a nastavte jej na hodnotu off . "
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP tuto hodnotu používá pro „úklid“ (garbage collector) při odstraňování starých relací."
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr "Zobrazit skupiny serverů"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Nastavení této hodnoty na jeden den zabrání ztrátě relace a cookies dříve, než skutečně vyprší nastavený časový limit."
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr "Zobrazit skupiny počítačů"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Vyhledejte ve svém php.ini parametr 'session.gc_maxlifetime' a nastavte jej na hodnotu '86400' a vyšší."
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr "Zobrazit skupiny počítačů s MS Windows"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Vypnuto"
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr "Zobrazit skupiny terminálů"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "Abyste se vyhnuli potížím při používání FusionDirectory, vyhledejte ve svém php.ini parametr session.auto_start a nastavte jej na hodnotu off ."
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr "Zobrazit skupiny tiskáren"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Vyhledejte ve svém souboru php.ini parametr session.auto_start a nastavte jej na hodnotu off ."
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr "Zobrazit skupiny telefonů"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr "Pro svůj běh FusionDirectory potřebuje, aby mu bylo vyhrazeno alespoň 128MB  operační paměti. Provozování pod touto hranicí může způsobovat nevyzpytatelné chyby! Pro rozsáhlá nasazení je třeba tuto hodnotu ještě dále navýšit."
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "část (prvek) názvu domény"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr "V souboru s nastaveními php.ini na svém serveru vyhledejte volbu memory_limit a nastavte ji na hodnotu 128M a vyšší."
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr "Doménová část"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Tato volba ovlivňuje to, jak PHP zachází s výstupem. Pro zvýšení výkonu nastavte na hodnotu off ."
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Oddělení"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Vyhledejte ve svém souboru php.ini parametr implicit_flush a nastavte jej na hodnotu off."
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Oddělení"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "PHP skripty by měly dostat čas alespoň 30 vteřin na to, aby proběhly."
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "oddělení"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Vyhledejte ve svém php.ini parametr 'max_execution_time' a nastavte jej na hodnotu '30' a vyšší."
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr "Název %s"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Pro zlepšení zabezpečení nastavte PHP tak, aby neposkytovalo jakékoli informace o serveru, na kterém běží."
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr "Název pro toto %s"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Vyhledejte ve svém php.ini parametr 'expose_php' a nastavte jej na 'off'."
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
-msgstr "Stručný popis tohoto %s"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Výkonnost serveru můžete zlepšit nastavením parametru magic_quotes_gpc na hodnotu off ."
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Kategorie"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Vyhledejte ve svém souboru php.ini parametr zend.ze1_compatibility_mode a nastavte jej na hodnotu off ."
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
-msgstr "Kategorie tohoto %s"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Vítejte"
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Vítejte v průvodci nastavením FusionDirectory"
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Uvítací zpráva"
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Nadřízený"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "OK"
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
-msgstr "Nadřízený tohoto %s"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Přemístit"
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Umístění"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Prohlídka LDAP"
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Stav"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Zjistit, zda je vaše stávající LDAP databáze slučitelná s FusionDirectory"
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "ZemÄ›"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr "Udělit veškerá práva na uživatelích v dané větvi"
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Adresa"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr "Umožnit uživatelům upravovat své vlastní údaje (panely Hlavní a Posix použijte jen na základu)"
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
-msgstr "Poštovní adresa pro toto %s"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr "Umožnit uživatelům upravovat jejich vlastní hesla (použijte pouze na základu)"
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Telefon"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "kontrolují se třídy objektů v kořenovém objektu"
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Telefonní číslo"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "kontrolují se oprávnění na LDAP databázi"
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "kontroluje se, zda neexistují „neviditelní“ uživatelé"
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr "Telefonní číslo faxu"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "kontroluji, zda již existuje účet správce FusionDirectory/GOsa"
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Spravovat oddělení"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr "Kontrola výchozích ACL úloh a skupin"
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "kontroluje se, zda neexistují účty uživatelů mimo příslušný podstrom"
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Uživatelé a skupiny"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Kontroluje se, zda neexistují účty skupin mimo příslušný podstrom"
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Místo"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "kontroluje se, zda neexistují „neviditelná“ oddělení"
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr "místo"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "kontroluje se, zda neexistují duplicity v číselných identifikátorech uživatelů (UID)"
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr "zemÄ›"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Doména"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "Dotaz do LDAP nebyl úspěšný"
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr "doména"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
+msgstr "Možná chybí kořenový objekt."
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Seznam oddělení"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Nezdařilo se"
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organizace"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "Chybí třída objektů FusionDirectory %s!"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr "organizace"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Zkontrolujte svou instalaci."
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Seznam uživatelů"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "Nedaří se manipulace s typem struktury kořenového objektu. Prosím pokuste se přidat třídu objektů '%s' ručním zásahem."
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Příjmení"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Chyba LDAP"
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Jméno"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
+msgstr "Zvolený uživatel %s nemá plný přístup do LDAP databáze."
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Přihlašovací jméno"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
+msgstr "Zvolený uživatel %s nemá plný přístup do LDAP databáze."
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Uživatel"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Varování"
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
-msgstr "Ze šablony"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "Nalezeno %s uživatelů, kteří nebudou dostupní z FusionDirectory nebo jsou jejich účty neúplné."
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Å ablona"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr "Přemístění uživatele"
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Zamknout uživatele"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Chyba přemisťování"
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Odemknout uživatele"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
+msgstr "Položku %s nelze přemístit:"
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Použít šablonu"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr "Nalezeny správcovské účty z F.D. 1.0.7: %s"
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Vytvořit nového uživatele pomocí šablony"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr "Nalezeny správcovské skupiny z F.D. 1.0.7: %s"
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Upravit uživatele"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr "Na konci nastavení je možné spustit <i>fusiondirectory-setup --migrate-acls</i> a přemístit ho.<br/>"
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr "Ve vaší LDAP databázi se nenachází žádný použitelný účet správce FusionDirectory 1.0.8."
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Odebrat uživatele"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Vytvořit"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
 msgid "Users"
 msgstr "Uživatelé"
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Spravovat uživatele"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Skupiny"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "Ve vaší LDAP databázi se nenachází žádný účet správce FusionDirectory."
+
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr "Uděluje veškerá práva na veškerých objektech"
+
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Chyba"
+
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr "Výchozí ACL úlohy nebyly vloženy"
+
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr "Chybí některé výchozí ACL úlohy"
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Oprávnění"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr "Výchozí ACL úlohy byly vloženy"
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Zamykání účtu"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr "Nelze přidat ACL úlohu %s:"
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1084
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
-msgstr "Způsob ukládání hesel %s neumožňuje uzamykání účtů. Účet %s proto nebyl uzamčen!"
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr "Nalezeno %s uživatelů, nacházejících se mimo nastavený strom %s."
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Odemknout účet"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Přesunout uživatele do příslušného stromu"
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Uzamknout účet"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
+msgstr "Položky nelze přesunout do požadovaného oddělení!"
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
-msgstr "Uživatelský účet"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr "Položka bude přesunuta z"
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
-msgstr "Informace o uživatelském účtu"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "do"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "pro tuto kategorii není nastaven žádný ACL"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Tyto odkazy budou aktualizovány"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL pro tyto objekty: %s"
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Bylo nalezeno %s účtů skupin, nacházejících se mimo příslušný strom '%s'."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "upravit ACL kategorie"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr "Přesunout skupiny do příslušného stromu"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Delete"
-msgstr "Smazat"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "resetovat ACL kategorie"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "seznam dostupných katergorií ACL"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Bylo nalezeno %s oddělení, která nebudou viditelná z FusionDirectory."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "všechny objekty v současném podstromu"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr "Přemístění oddělení"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#: setup/class_setupStep_Migrate.inc:1378
 #, php-format
-msgid "Edit ACL for \"%s\""
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "číst"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "Zápis"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objekt"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Zobrazit/skrýt pokročilá nastavení"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Vytvářet objekty"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Přesunout objekty"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Název umístění"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Odstranit objekty"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
+msgstr "Název tohoto připojení, který bude zobrazován v seznamu serverů v LDAP"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Udělit oprávnění vlastníkovi"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "připojovací URI (adresa)"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Celý objekt"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr "URI adresa, na které kontaktovat LDAP server. Obvykle začíná na ldap://"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "ACL role"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "TLS (šifrované) spojení"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr "Správa úloh ACL"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr "Šifrovat komunikaci s LDAP serverem (pomocí TLS)?"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Základ"
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Obsahuje nastavení pro tyto objekty: %s"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr "Základ LDAP adresáře"
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "role řízení přístupu"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Ověření"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "Role ACL"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
+msgstr "Rozlišený název účtu správce, použitého pro spojování do LDAP. Základ je připojen samočinně."
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr "Název této role"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "Rozlišený název účtu správce"
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr "Stručný popis této role"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Heslo správce"
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr "Seznamy pro řízení přístupu"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr "Heslo k účtu správce, použitého pro spojování do LDAP"
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr "ACL seznamy, které jsou součástí této skupiny"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Stav"
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Stávající stav"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr "Výsledek posledního pokusu kontroly LDAP spojení a základních schémat"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Nastavení LDAP"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Nastavení připojení k LDAP"
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "V tomto dialogu budou provedena základní nastavení pro komunikaci FusionDirectory s LDAPem."
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr "Přiřazení ACL"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "Anonymní spojení se serverem %s se nezdařilo!"
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "Spojení jako uživatel %s se nezdařilo!"
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Znovu"
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "přiřazení ACL"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "Anonymní spojení se serverem %s proběhlo úspěšně."
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
-msgstr "Dialog přiřazení ACL"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Znovunačíst"
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr "Dialog přiřazení úloh řízení přístupu"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Zadejte uživatelské jména a heslo!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Režim"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "Přihlášení se jako uživatel '%s' k serveru '%s' proběhlo úspěšně!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr "Týká se toto celého podstromu nebo jen základu?"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr "Podstrom"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Dokončit"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr "Pouze základ"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Dokončit – zapsat nastavení do souboru"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr "Role, kterou použít"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Zapsat nastavení do souboru"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr "Pro všechny uživatele"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Váš soubor s nastaveními je v tuto chvíli čitelný úplně pro všechny. Upravte nastavení oprávnění pro přístup k němu!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr "Použít tento ACL seznam pro všechny uživatele LDAP"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Soubor s nastaveními není v tuto chvíli čitelný, nebo zcela chybí."
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Členové"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Po stažení a umístění souboru do %s se ujistěte, že %s je oprávněn číst pouze uživatelský účet, pod kterým běží webový server a nikdo jiný."
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr "Uživatelé či skupiny, kterým má být přiřazena tato role"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Chyba instalátoru"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr "Přiřazení ACL"
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Hotovo"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr "Přiřazení úlohy řízení přístupu"
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Další"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr "Přiřazení"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Vnitřní chyba"
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr "Přiřazení ACL úlohy pro tento základ"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Přihlášení se nezdařilo: %s"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: include/class_logging.inc:102
 #, php-format
-msgid "Assignments on object or subtree %s"
-msgstr "Přiřazení na objektu či podstromu %s"
+msgid "Invalid option \"%s\" specified!"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr "Přehled"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "Jako objectType (typ objektu) buď nebylo zadáno nic, nebo nesprávná hodnota."
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr "Statistiky a různé další údaje"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "nenastavené"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr "Hlášení"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Chyba filtru"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr "Statistiky"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "Filtr je neúplný!"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr "Statistiky o uživatelích"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Oprávnění"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr "Statistiky uživatelů"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Chyba oprávnění"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr "Statistiky skupin"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Nejste oprávněn(a) vytvořit snímek %s."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr "Účty, jejichž platnost skončila"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Nejste oprávněni obnovit zachycený stav %s."
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Metoda uložení hesla"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "Deklarace panelu pro %s není uvedena v souboru s nastaveními. Nelze proto vytvořit instanci zásuvného modulu!"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Metoda otisku hesla"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Kořen"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Heslo"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Odeslat"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Heslo (Pokud si nepřejete změnit, ponechte prázdné)"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Nahoru"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Zopakování hesla"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Dolů"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr "Stejné heslo jako výše, pro vyloučení chybného zadání"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
+msgstr "Seřadit vzestupně"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Osobní údaje"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
+msgstr "Seřadit sestupně"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Příjmení"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Vybrat vše"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr "Příjmení tohoto uživatele"
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "vytvořili"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Jméno"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "přejít do kořene všech oddělení"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr "Křestní jméno tohoto uživatele"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Přejít o oddělení výše"
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
-msgstr "Stručný popis uživatele"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
+msgstr "Přejít do oddělení uživatele"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr "Fotografie"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "domovské"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr "Obrázek pro tohoto uživatele"
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Znovunačíst seznam"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr "Organizační kontaktní údaje"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Akce"
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr "Firemní poštovní adresa"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "zkopírovat"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Číslo místnosti"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Vyjmout"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Číslo místnosti"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Vložit"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr "Služební telefoní číslo"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Vyjmout tuto položku"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Mobilní"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Zkopírovat tuto položku"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr "Číslo služebního mobilního telefonu"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Obnovit zachycené stavy"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Pager"
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Exportovat seznam"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr "Číslo na pracovní pager"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Obnovit zachycený stav"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr "Číslo služebního faxu"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Pořídit zachycený stav"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Webové stránky"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "vytvořit nový snímek tohoto objektu"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr "Osobní webové stránky"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Fatální chyba"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr "Informace o účtu"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "v"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr "Přihlašovací jméno tohoto uživatele"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "připojeno"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Upřednostňovaný jazyk"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Chyba v XML"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr "Uživatelovo heslo"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "Heslo nelze změnit, neznámý uživatel %s"
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr "Osobní kontaktní údaje"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
+msgstr "Aby bylo možné používat SASL, je třeba vyplnit kolonky saslRealm nebo saslExop na obrazovce s nastaveními"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Zobrazovaný název"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Chyba v nastavení"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr "Jméno, pod kterým má být tento uživatel zobrazován. Používáno MS Exchange."
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Stránka"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr "Adresa bydliště"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "Není možné exportovat do formátu PDF: není nainstalována potřebná softwarová knihovna."
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Soukromá poštovní adresa"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Soukromý telefon"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Telefonní číslo domů"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "Požadovaný kanál neexistuje! Prosím kontaktujte svého správce systémů."
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Organizační údaje"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Zrušit vše"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Titul"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Nelze vložit"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr "Titul osoby v kontextu organizace. Každý z titulů je hodnota tohoto vícehodnotového atributu"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Přihlašovací jméno"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Å ablona"
+
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Číslo oddělení"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Název šablony"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Číslo oddělení"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "fatální chyba: není určeno umístění třídy – pro nápravu prosím spusťe '%s'"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Číslo zaměstnance"
+#: include/functions.inc:142
+#, php-format
+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č"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Číslo zaměstnance"
+#: include/functions.inc:512
+#, 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'."
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Typ zaměstnaneckého poměru"
+#: include/functions.inc:583
+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ů."
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr "Ppolicy %s nebyla nalezena v LDAP!"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Chyba ověření"
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr "Nejste oprávněni ke změně svého hesla"
+#: include/functions.inc:617
+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>."
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:668 include/functions.inc:791
+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:678
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr "Je třeba, abyste počkali %d sekund než budete moci znovu měnit své heslo"
+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ů!"
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
-msgstr "Toto heslo už bylo nedávno použito"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "LDAP server odpověděl: %s"
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
-msgstr "Bylo zadáno naprosto stejné heslo, jako je to stávající"
+#: include/functions.inc:859
+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í."
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Pro pokračování je třeba zadat své stávající heslo."
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Limit velikosti položek %d je překročen!"
 
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:1132
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr "Zadání v kolonkách Nové heslo a Zopakování nového hesla se neshodují."
+"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"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nové heslo"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Nastavit"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Nové a staré heslo jsou si příliš podobné."
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "neúplné"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Nové heslo nelze použít – je příliš krátké (není bezpečné)."
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Přesto pokračovat"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "Heslo obsahuje znaky, které mohou být problematické (např. se nenacházejí přímo na klávesnici)."
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Přesto upravit"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr "chystáte se upravit položky LDAPu %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "upravit POSIXová nastavení uživatele"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Položek na stránku"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Domovská složka"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Použít filtr"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "Umístění domovské složky tohoto uživatele"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr "%sB"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "shell"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr "%sKiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr "Který shell by měl být použit, když se uživatel přihlásí"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr "%sMiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Hlavní skupina"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr "%sGiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
-msgstr "Hlavní skupina tohoto uživatele"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr "%sTiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Stav"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
+msgstr "%sPiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
-msgstr "Stav tohoto unixového uživatelského účtu"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
+msgstr "%sEiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
-msgstr "Vynutit konkrétní identifikátor uživatele/skupiny"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
+msgstr "%sZiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
-msgstr "Pro tohoto uživatele vynutit konkrétní identifikátory uživatele a jeho hlavní skupiny"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
+msgstr "%sYiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
-msgstr "Identifikátor uživatele"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
-msgstr "Hodnota identifikátoru účtu tohoto uživatele"
+#: include/functions.inc:2267
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr "Idenifikátor skupiny"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Nelze zapsat do souboru s revizemi!"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr "Hodnota identifikátoru hlavní skupiny tohoto uživatele"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "Nelze číst ze souboru s revizemi!"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Členství ve skupinách"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr "nextIdHook není k dispozici. Bude použit výchozí základ!"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Účet"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Varování LDAP"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "Uživatel musí při prvním přihlášení změnit heslo."
+#: include/functions.inc:2559
+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!"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr "Při prvním přihlášení musí uživatel změnit heslo (vyžaduje nastavenou hodnotu u Prodleva před vynucením změny hesla)"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr "Prodleva před vynucením změny hesla (dny)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
-msgstr "Po tomto počtu dnů bude uživatel přiměn ke změně hesla (nevyplnění funkce vypíná)"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr "Datum skončení platnosti hesla"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr "Datum po kterém skončí platnost hesla uživatele (nevyplnění tuto funkci vypíná)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr "Délka nečinnosti uživatele, po které bude účet uživatele vypnut (dny)"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Dostupné třídy"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2641
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr "Po skončení platnosti hesla, jak dlouho nanejvýš může být účet nepoužíván, než dojde k jeho vypnutí (zůstane ovšem zachován). Nevyplnění tuto funkci vypíná"
-
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr "Prodleva varování uživatele před skončením platnosti hesla (dny)"
+"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."
 
-#: plugins/personal/posix/class_posixAccount.inc:184
+#: include/functions.inc:2642
 msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr "Uživatel bude varován nastavený počet dnů předem před skončením platnosti hesla (nevyplnění tuto funkci vypíná)"
-
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Tomuto uživateli povolit připojení pouze na počítače z tohoto seznamu"
-
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "nenastavené"
-
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "samočinné"
-
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "platnost skončila"
-
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "běží čas odkladu"
+"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É"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "aktivní"
+#: include/functions.inc:2645
+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."
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "platnost hesla skončila"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+msgstr "Je třeba, aby ObjectClass posixGroup bylo STRUKTURÁLNÍ"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "heslo nelze změnit"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "Není k dispozici volné ID:"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "Neznámá metoda idAllocation (přiřazování ID)!"
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:3151
 #, php-format
-msgid "Group of user %s"
-msgstr "Skupina uživatele %s"
-
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr "Upravit skupiny a role uživatele"
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr "Členství ve skupinách"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "Identifikátor sambaUnixIdPool není jedinečný!"
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr "Členství v rolích"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "Není k dispozici ID!"
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr "Nastavení zásuvných modulů"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "Překročen nejvyšší přijatelný počet neúspěšných pokusů!"
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr "Nastavení zásuvných modulů pro FusionDirectory"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Není k dispozici volné ID – není co přidělit!"
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "skupiny objektů"
+#: include/functions.inc:3321
+#, 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)"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr "Relativní rozlišený název OGroup"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Všechny objekty v této kategorii"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr "Větev, ve které budou ukládány objekty skupin"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Opravte výše uvedenou chybu a znovunačtěte tuto stránku."
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr "Nastavení časové zóny %s ve vašem nastavení není platné."
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr "Vynutit dotázání se na heslo"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Chyba XML ve fusiondirectory.conf: %s na řádku %d"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
+#: include/class_config.inc:280
+#, php-format
 msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr "Hodí se pro přidání háčku, používajícího hodnotu hesla když jsou upravována SASL uživatelská hesla"
-
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Nastavení"
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr "Nastavení FusionDirectory"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Nedaří se přihlášení do LDAPu. Kontaktujte prosím správce systémů."
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Vzhled a chování"
-
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Jazyk"
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/config/class_configInLdap.inc:91
+#: include/class_config.inc:899
+#, php-format
 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 "Jazyk aplikace. V případě nastavení na samočinný výběr nebo když nebude k dispozici, bude použit jazyk, požadovaný prohlížečem. Toto nastavení je možné změnit pro jednotlivé uživatele."
+"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'."
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Vzhled"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Všechny kategorie"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr "Vzhled, který má být použit"
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Můj účet"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Časová zóna"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Vyberte pro vypsání objektů typu %s."
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr "Časová zóna, která má být použita"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Vyberte pro vypsání objektů obsahujících '%s'."
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr "Nastavení schématu"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Vyberte pro vypsání objektů, které mají zapnuto '%s'."
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr "Ověření schématu"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Zvolte pro vyhledávání i v podstromech"
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr "Zapíná kontrolu schématu při přihlašování."
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Hledat v podstromech"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Nastavení hesel"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Tento objekt bude smazán!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr "Výchozí otisk hesla"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Tento %s objekt bude smazán!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr "Výchozí otisk, který bude použit"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Tento objekt bude smazán: %s"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr "Vynutit výchozí otisk"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Tento %s objekt bude smazán: %s"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr "Vynutit použití výchozího otisku hesla"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Tento objekt bude smazán:"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "minimální délka hesla"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Tento %s objekt bude smazán:"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr "Minimální délka hesel uživatelů"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Tyto objekty budou smazány: %s"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr "O kolik je třeba, aby se hesla lišila"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Tyto %s objekty budou smazány: %s"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr "Nejnižší umožněný počet rozdílných znaků oproti předchozímu heslu"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Nejste oprávněni ke smazání tohoto objektu!"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "omezovat platnost uživatelský účtů na základě platnosti jejich hesel"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Nejste oprávněni ke smazání objektu:"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr "Zapíná test stínového atributy během přihlašování k FusionDirectory a vynucuje obnovu hesla nebo uzamčení účtu"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Nejste oprávněni ke smazání těchto objektů!"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr "SASL oblast"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Nejste oprávněni k vytvoření tohoto objektu!"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr "SASL Exop"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Nejste oprávněni k vytvoření objektu:"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr "Atribut, který ukládat v atributu userPassword"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Nejste oprávněni k vytvoření těchto objektů:"
+
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Nejste oprávněni k úpravám tohoto objektu!"
+
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr "Základní nastavení"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Ve výpisech zobrazovat souhrn"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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 "Určuje, zda bude na konci seznamů zobrazována stavová lišta, ve které bude uveden krátký souhrn typu a počtu prvků na seznamu."
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Nejste oprávněni k zobrazení tohoto objektu!"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr "Upravit zamykání"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Nejste oprávněni k zobrazení objektu:"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr "Kontrolovat, zda aktuálně upravovaná položka nebyla mezitím změněna mimo FusionDirectory."
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Nejste oprávněni k zobrazení těchto objektů:"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr "Zapnout protokolování"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Nejste oprávněni k přesunutí tohoto objektu!"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr "Protokolování událostí na straně FusionDirectory."
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Nejste oprávněni k přesunutí tohoto objektu:"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr "Nejvyšší umožněná velikost LDAP"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Nejste oprávněni k přesunutí těchto objektů:"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr "Určuje počet položek, které budou ve výchozím nastavení získávány z LDAP."
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Informace o spojení"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Přihlašování a sezení"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Nelze se připojit k databázi %s!"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "atribut použitý pro přihlašování"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Nelze vybrat databázi %s!"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr "Který LDAP atribut by měl být použit jako přihlašovací jméno při přihlašování."
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Není určen server %s!"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Vynutit šifrované spojení"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Nedaří se dotazovat do databáze %s!"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr "Zapnout kontroly zabezpečení PHP z důvodu vynucení šifrovaného přístupu (https) na webové rozhraní."
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Pole %s obsahuje vyhrazené klíčové slovo (použijte něco jiného)!"
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Varovat, pokud relace není šifrována"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "Příkaz určený jako háček %s pro zásuvný modul '%s' neexistuje!"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr "zobrazí uživateli varování, když použije protokol http namísto https."
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "Příkaz %s není platný!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Doba nečinnosti, po jejímž uplynutí bude relace automaticky ukončena."
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "%s příkaz pro zásuvný modul %s není platný!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "%s příkaz (%s) není platný!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "%s příkaz (%s) pro zásuvný modul %s není platný!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Nedaří se spustit příkaz %s!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Nedaří se spustit příkaz '%s' pro zásuvný modul %s!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "Nedaří se spustit příkaz '%s' (%s)!"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Nedaří se spustit příkaz '%s' (%s) pro zásuvný modul %s!"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Hodnota %s je příliš vysoká!"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr "Zachycené stavy"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "Je třeba, aby %s bylo menší než %s!"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Zapnout pořizování zachycených stavů"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Hodnota %s je příliš nízká!"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr "Toto umožňuje uložit určité stavy položek a později je zase obnovit."
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "Je třeba, aby %s bylo větší nebo rovno %d!"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Základ zachyceného stavu"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "%s závisí na %s – zadejte obě hodnoty!"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr "Základ, ve kterém by měly být zachycené stavy ukládány v LDAP."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "V systému již existuje položka s atributem %s!"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr "SSL"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
+msgstr "Položka %s již používá tento %s atribut!"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr "Umístění klíče"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Pole %s nemůže být prázdné!"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr "Umístění soukromé části klíče FusionDirectory. V tuto chvíli není používáno."
+#: include/class_msgPool.inc:435
+msgid "Example:"
+msgstr "Ukázka:"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr "Umístění certifikátu"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
+msgstr "Políčko %s obsahuje neplatné znaky"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr "Umístění certifikátu FusionDirectory. V tuto chvíli není používáno."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "%s není dovoleno:"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr "Umístění certifikátu cert. autority"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "%s nejsou dovolené!"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr "Umístění certifikátu cert. autority. Slouží k ověření stroje s Argonaut serverem."
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Chybějící rozšíření PHP %s!"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr "Ústřední ověřovací služba (CAS)"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Zrušit"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr "Zapnout CAS"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Použít"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr "Bude použito CAS namísto LDAP přihlášení"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Uložit"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr "Umístění certifikátu cert. autority na CAS serveru"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Přidat"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Stroj"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Přidat %s"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr "Stroj, na kterém je provozován CAS server"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Smazat"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Port"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Smazat %s"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr "Port na kterém CAS server očekává spojení"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Upravit…"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr "Kontext CAS"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Upravit %s…"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr "Kontext CAS, který použít"
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Zpět"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Úložiště účtů uživatelů a skupin"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Tento účet nemá platná rozšíření %s!"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "atribut účtu uživatele použitý jako DN"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Tento účet má zapnuta nastavení %s. Vypnout je můžete kliknutím níže."
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr "Atribut, který bude použit na začátku rozlišených jmen uživatelů"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Tento účet má vytvořena nastavení pro %s. Pokud je chcete odebrat, musíte ale nejprve odebrat nastavení pro %s!"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr "Vzor CN"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Tento účet má deaktivována nastavení pro %s. Zapnout je můžete kliknutím níže."
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr "Vzor který použít pro vytváření kolonky běžný název"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Tento účet má deaktivována nastavení pro %s. Zapnout je ale můžete teprve poté, co přidáte nastavení pro %s!"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr "Přísná pravidla pro pojmenovávání"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Přidat nastavení pro %s"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr "Zapíná přísnou kontrolu uživatelských jmen a názvů skupin"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Odebrat nastavení pro %s"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr "Nejnižší identifikátor skupiny/uživatele"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Pro změnu údajů v tomto dialogu klikněte na Upravit"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr "Nejnižší umožněný přiřaditelný identifikátor uživatele či skupiny pro vyloučení bezpečnostních průniků s účty s identifikátorem 0 (root)."
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "leden"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr "Háček příštího identifikátoru"
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "únor"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr "Skript, který má být volán pro nalezení dalšího volného identifikátoru pro uživatele nebo skupiny."
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "březen"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr "Od jakého čísla začít přidělovat identifikátory uživatelů"
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "duben"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr "Kde začít s hledáním volných identifikátorů pro nové uživatele."
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "květen"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr "Od jakého čísla začít přidělovat identifikátory skupin"
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "červen"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr "Kde začít s hledáním volných identifikátorů pro nové skupiny."
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "červenec"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr "Relativní rozlišený název uživatelů"
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "srpen"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr "Větev, ve které jsou uloženi uživatelé."
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "září"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr "Relativní rozlišený název skupin"
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "říjen"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr "Větev, ve které jsou uloženy skupiny."
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "listopad"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr "Relativní rozlišený název ACL úlohy"
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "prosinec"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr "Větev, ve které jsou uloženy ACL úlohy."
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "neděle"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Metoda přiřazování identifikátorů"
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "pondělí"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr "Způsob přiřazování identifikátorů uživatelů/skupin"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "úterý"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Tradiční"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "středa"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr "Rozsah unixových identifikátorů pro Samba"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "čtvrtek"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr "Nejnižší identifikátor uživatele"
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "pátek"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr "Nejnižší umožněná hodnota pro identifikátor uživatele při použití způsobu rozsahu"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Sobota"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr "Nejvyšší identifikátor uživatele"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "Operace v databázi se nezdařila!"
+
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "Operace čtení"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr "Nejvyšší umožněná hodnota pro identifikátor uživatele při použití způsobu rozsahu"
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "Operace přidání"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr "Nejnižší identifikátor skupiny"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "Operace upravování"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr "Nejnižší umožněná hodnota pro identifikátor skupiny při použití způsobu rozsahu"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "Operace mazání"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr "Nejvyšší identifikátor skupiny"
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "Operace hledání"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr "Nejvyšší umožněná hodnota pro identifikátor skupiny při použití způsobu rozsahu"
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "Ověření"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "LDAP %s se nezdařilo!"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr ""
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "Operace v LDAP databázi se nezdařila!"
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Diagnostika"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objekt"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr "Zobrazit chyby"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "Nahrání se nezdařilo!"
 
-#: plugins/config/class_configInLdap.inc:387
-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 "V horní části obrazovky vypisuje chyby, ke kterým došlo v PHP. V produkčním nasazení by toto mělo být vypnuto, protože se zde mohou objevovat hesla."
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Nahrání se nezdařilo: %s"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "maximální prodleva odpovědi LDAPu"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "Výpadek komunikace se službou infrastruktury!"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr "Zastavit LDAP akce pokud není obdržena odpověď v rámci zadaného počtu sekund."
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Selhání komunikace se službou infrastruktury: %s"
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Zaznamenávat statistiky LDAP"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "Toto %s je stále používáno objektem: %s"
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr "Sledovat statistiky časování LDAP do systémového protokolu. Může pomoci s hledáním problémů s indexováním či chybnými filtry hledání."
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "Toto %s je stále používáno."
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Úroveň podrobností diagnostických informací"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "Toto %s je stále používáno následujícími objekty: %s"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr "Zobrazit určité údaje při každém načtení stránky."
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Soubor %s neexistuje!"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Různé"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Soubor %s nelze číst!"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr "Háčky, které jsou volány pokud nastane konkrétní událost"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "Do souboru %s nelze zapisovat!"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr "panel"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "Hodnota %s v tuto chvíli buď není nastavena, nebo je neplatná – překontrolujte svůj soubor s nastaveními!"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr "Panel, kterého se týká tento háček"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "Soubor %s nelze smazat!"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "režim"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "Složku %s se nedaří vytvořit!"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr "Kdy spouštět tento příkaz"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "Složku %s nelze smazat!"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr "příkaz"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Ověřování, zda je podporováno %s"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr "Příkaz, který bude spouštěn"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
+msgstr "Nainstalovat a zapnout modul PHP %s."
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "háčky"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
+msgstr "Nainstalovat a zapnout Pear modul %s"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr "Zobrazit výstup háčku"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "Nelze připravit třídu '%s'! Možná ve Vaší instalaci FusionDirectory chybí příslušný zásuvný modul?"
 
-#: plugins/config/class_configInLdap.inc:450
+#: include/class_msgPool.inc:884
 msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr "Pokud je zapnuto, je úspěšné vykonání háčku zobrazeno uživateli prostřednictvím dialogu."
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr "Nově zadaná hodnota základu není platná a proto je stále používána předchozí!"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr "Dostupné shelly"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
+msgstr "Pořizování zachyceného stavu objektu"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr "POSIX shelly, dostupné pro uživatele F.D."
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
+msgstr "DN objektu, ze kterého pořizujete zachycený stav"
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr "Zobrazit panel ACL u všech objektů"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Časová značka"
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr "Pro velmi specifická nastavení ACL práv, kde je zapotřebí udělit právo na jediném objektu."
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
+msgstr "Kdy byl tento zachycený stav pořízen"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
+msgstr "Důvod"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
+msgstr "Důvod pořízení tohoto zachyceného stavu"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Samočinné"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "R-m-d, H:m:s"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Obnova zapomenutého hesla"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr "Obnovit"
+
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
+msgstr "Obnovení zachycených stavů"
+
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
+msgstr "Zachycené stavy"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Nastavení funkce obnovení zapomenutého hesla"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
+msgstr "Zachycené stavy, které jsou pro tento objekt k dispozici"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Nastavení obnovy zapomenutého hesla"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Soubor"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Zapnout funkci pro obnovu zapomenutého hesla"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Řádek"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr "Zda zapnout funkci pro obnovování zapomenutých hesel"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "chyba v PHP"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "E-mailová adresa odesilatele"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "třída"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "E-mailová adresa, ze které budou zprávy posílány"
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "funkce"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Doba platnosti odkazu (minuty)"
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "neměnné"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr "Počet minut, po jejichž uplynutí skončí platnost obnovovacího odkazu"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "metoda"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr "Kryptografická „sůl“ pro tokeny"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "stopa"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Pouze bezpečnostní opatření, můžete zde zadat cokoli, třeba i nahodile zvolené znaky"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Typ"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Umožnit používání alternativních adres"
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argumenty"
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Uživatelé budou moci pro obnovení svých hesel použít jednu ze svých alternativních adres"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "Během vytváření této stránky ohlásil interpret PHP několik chyb!"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "První e-mail"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "zaslat hlášení o chybě vývojářům FusionDirectory"
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Předmět"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Zaslat hlášení o chybě"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Předmět prvního e-mailu"
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "přepnout informace"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Odkaz pro obnovu hesla"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Varování ohledně výkonu"
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
 #, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr "Tělo zprávy (první %s je přihlašovací jméno, druhé je odkaz)"
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr "Výkonnost LDAPu je špatná: poslední dotaz trval celých %.2fs!"
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:846
 #, php-format
 msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
-msgstr "Obsah první e-mailové zprávy, poslané uživateli, když požádá o nové heslo. Pro přihlašovací jméno a obnovovací odkaz použijte %s."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr "Podstromy s RDN %s se nedaří automaticky vytvářet: nebyla nalezena žádná třída objektu!"
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:882
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Dobrý den,\n\nZde jsou Vaše přihlašovací údaje:\n- přihlašovací jméno: %s\n- odkaz pro obnovu hesla: %s\n\nVýše uvedený odkaz je platný pouze 10 minut!"
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgstr "Nedaří se automaticky vytvořit podstromy s RDN %s: nepodporováno"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Druhý e-mail"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "při operaci na %s na LDAP serveru %s"
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Předmět druhého e-mailu"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "při operaci na LDAP serveru %s"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Obnova ztraceného hesla proběhla úspěšně"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
+msgstr "proc_open se nezdařilo vykonat ldapsearch"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_ldap.inc:1109
 #, php-format
-msgid "Body (%s is login)"
-msgstr "Tělo zprávy (%s je přihlašovací jméno)"
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:1127
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr "Obsah druhé e-mailové zprávy, poslané pro potvrzení toho, že heslo bylo změněno. Na místě přihlašovacího jména uživatele použijte %s – bude dosazeno"
+msgid "Error line %s, references to an external file are not supported"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:1130
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Dobrý den,\n\nVaše heslo bylo změněno.\nUživatelské jméno je samozřejmě pořád stejné – %s"
-
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
-msgstr "Nastavení Přehledu"
-
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr "Nastavení zásuvného modulu Přehled pro FusionDirectory"
-
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr "Schéma názvů Přehledu"
-
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr "Počet číslic"
-
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr "Počet číslic, které umístit za předponu"
-
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr "Předpony"
-
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr "Předpony pro identifikátory počítačů"
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
-msgstr "Přehled uživatelů, jejichž účtům skončila platnost"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
-msgstr "Počet dnů"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
+#: include/class_ldap.inc:1170
+#, php-format
 msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
-msgstr "Počet dnů před skončením platnosti účtu, kdy se tento začne zobrazovat v přehledu účtů, kterým končí platnost"
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Došlo k chybě během importu dn: '%s', zkontrolujte prosím Váš LDIF soubor od řádku %s dále!"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Zásuvné moduly"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Vyberte požadované položky"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr "Nastavení zásuvných modulů"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Název"
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Nahoru"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Popis"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Dolů"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
+msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
-msgstr "Seřadit vzestupně"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
+msgstr "Role %s"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
-msgstr "Seřadit sestupně"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
+msgstr "Skupina %s"
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Vybrat vše"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Skupina uživatele"
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Chyba"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "žádné"
 
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "vytvořili"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "neznámé"
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "přejít do kořene všech oddělení"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Upravit"
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Kořen"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Odstranit"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Přejít o oddělení výše"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "Nebylo nalezeno žádné určení zásuvného modulu pro inicializaci %s – zkontrolujte svůj soubor s nastaveními."
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
-msgstr "Přejít do oddělení uživatele"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+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/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "domovské"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Znovunačíst seznam"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Odeslat"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
+msgstr "KiB"
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "zkopírovat"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
+msgstr "MiB"
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Vyjmout"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr "GiB"
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Vložit"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
+msgstr "TiB"
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Vyjmout tuto položku"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "sekundy"
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Zkopírovat tuto položku"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "minuty"
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Obnovit zachycené stavy"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "hodiny"
 
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Exportovat seznam"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "dny"
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Obnovit zachycený stav"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr "Ze šablony"
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Pořídit zachycený stav"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
+msgstr "%s šablona"
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "vytvořit nový snímek tohoto objektu"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
+msgstr "Zobrazit %s"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Chyba filtru"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr "BEZ POPISKU"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "Filtr je neúplný!"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr "Nastavení šablony"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Chyba oprávnění"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr "Toto je název šablony"
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
-#, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Nejste oprávněn(a) vytvořit snímek %s."
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr "Pouze hlavní panel může vypočítat rozlišený název"
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Nejste oprávněni obnovit zachycený stav %s."
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr "Nedaří se spočítat rozlišený název: žádná nadřazená třída panelu pro %s"
 
-#: include/class_management.inc:679
+#: include/simpleplugin/class_simplePlugin.inc:290
 #, php-format
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "Deklarace panelu pro %s není uvedena v souboru s nastaveními. Nelze proto vytvořit instanci zásuvného modulu!"
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr "Nedaří se spočítat dn: nedaří se nalézt objectType informace z panelu třídy %s"
 
-#: include/class_config.inc:156
-#, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "Chyba XML ve fusiondirectory.conf: %s na řádku %d"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Chyba při ukládání"
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Chyba v nastavení"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
+msgstr "Položka s takovým rozlišeným názvem již existuje: %s"
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
+msgid "The entry %s is not existing"
+msgstr "Položka %s neexistuje"
+
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
 msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+"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 ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Chyba LDAP"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Nedaří se přihlášení do LDAPu. Kontaktujte prosím správce systémů."
-
-#: include/class_config.inc:357
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_config.inc:885
-#, 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:898
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, 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:1005
-msgid "All categories"
-msgstr "Všechny kategorie"
+msgid "%s (required)"
+msgstr "%s (vyžadováno)"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Můj účet"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr "Základ objektu"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Varování ohledně výkonu"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr "Výkonnost LDAPu je špatná: poslední dotaz trval celých %.2fs!"
+msgid "Cannot read uploaded file: %s"
+msgstr "Nelze přečíst nahraný soubor: %s"
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Vnitřní chyba"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "soubor je prázdný"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "soubor nebyl nenalezen"
 
-#: include/class_ldap.inc:846
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "soubor není čitelný"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
+msgid "%s (%d bytes)"
+msgstr "%s (%d bajtů)"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Nahrát"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "stažení"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
-msgstr "Podstromy s RDN %s se nedaří automaticky vytvářet: nebyla nalezena žádná třída objektu!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
-msgstr "Nedaří se automaticky vytvořit podstromy s RDN %s: nepodporováno"
+msgid "Invalid value for %s"
+msgstr "Neplatná hodnota pro %s"
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "při operaci na %s na LDAP serveru %s"
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "při operaci na LDAP serveru %s"
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
-msgstr "proc_open se nezdařilo vykonat ldapsearch"
+msgid "An integer between %d and %d"
+msgstr "Celé kladné číslo z rozmezí %d až %d"
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
-msgstr ""
+msgid "An integer larger than %d"
+msgstr "Celé kladné číslo větší než %d"
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
-msgstr ""
+msgid "An integer smaller than %d"
+msgstr "Celé kladné číslo menší než %d"
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
-msgstr ""
+msgid "A float between %f and %f"
+msgstr "Desetinné číslo z rozsahu %f až %f"
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
-msgstr ""
+msgid "A float larger than %f"
+msgstr "Desetinné číslo větší než %f"
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
-msgstr ""
+msgid "A float smaller than %f"
+msgstr "Desetinné číslo menší než %f"
+
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr "Došlo k problému s rozbalováním dat zachyceného stavu"
 
-#: include/class_ldap.inc:1194
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Došlo k chybě během importu dn: '%s', zkontrolujte prosím Váš LDIF soubor od řádku %s dále!"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr ""
 
-#: include/class_msgPool.inc:43
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Vyberte pro vypsání objektů typu %s."
+msgid "Tab \"%s\""
+msgstr "Panel %s"
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Vyberte pro vypsání objektů obsahujících '%s'."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "přístupová práva (ACL)"
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Vyberte pro vypsání objektů, které mají zapnuto '%s'."
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "správa seznamů pro řízení přístupu (ACL)"
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Zvolte pro vyhledávání i v podstromech"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "ACL role"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Hledat v podstromech"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr "Neznámý typ ACL %s!\nPro převod acl do nového formátu spusťte fusiondirectory-setup --migrate-acls."
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Tento objekt bude smazán!"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Neznámá položka %s!"
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Tento %s objekt bude smazán!"
+msgid "All users"
+msgstr "Všichni uživatelé"
 
-#: include/class_msgPool.inc:74
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
+
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Tento objekt bude smazán: %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Složka %s, nastavená jako místo pro provedení sestavení, není přístupná!"
 
-#: include/class_msgPool.inc:76
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Tento %s objekt bude smazán: %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Tento objekt bude smazán:"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
+msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:150
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Tento %s objekt bude smazán:"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"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 ."
 
-#: include/class_msgPool.inc:87
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Chyba ve Smarty"
+
+#: html/index.php:173
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Tyto objekty budou smazány: %s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
+msgstr "Složka %s, zadaná jako kompilační, není přístupná!"
 
-#: include/class_msgPool.inc:89
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Platnost vašeho sezení ve FusionDirectory skončila!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr "Vaše IP adresa byla změněna!"
+
+#: html/index.php:214
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Tyto %s objekty budou smazány: %s"
+msgid "Invalid plugin parameter \"%s\"!"
+msgstr "Neplatný parametr %s pro zásuvný modul!"
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Nejste oprávněni ke smazání tohoto objektu!"
+#: html/index.php:217
+msgid "No session found!"
+msgstr "Nebyla nalezena žádná relace!"
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Nejste oprávněni ke smazání objektu:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr "Chyby nahlášené při kontrole LDAP schématu:"
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Nejste oprávněni ke smazání těchto objektů!"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Nejste oprávněni k vytvoření tohoto objektu!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Zadejte platné uživatelské jméno!"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Nejste oprávněni k vytvoření objektu:"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Zadejte své heslo!"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Nejste oprávněni k vytvoření těchto objektů:"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Zkontrolujte prosím správnost kombinace zadaného uživatelského jména a hesla."
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Nejste oprávněni k úpravám tohoto objektu!"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Účet je uzamčen. Kontaktujte svého správce systémů!"
 
-#: include/class_msgPool.inc:151
+#: html/index.php:454
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:475
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:485
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Nejste oprávněni k zobrazení tohoto objektu!"
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Nejste oprávněni k zobrazení objektu:"
-
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Nejste oprávněni k zobrazení těchto objektů:"
-
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Nejste oprávněni k přesunutí tohoto objektu!"
-
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Nejste oprávněni k přesunutí tohoto objektu:"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Nejste oprávněni k přesunutí těchto objektů:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Informace o spojení"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Váš webový prohlížeč má zakázané cookies. Prosím povolte je a před dalším pokusem o přihlášení stránku nechejte tuto stránku načíst znovu!"
 
-#: include/class_msgPool.inc:225
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Nelze se připojit k databázi %s!"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "Nastavení %s/%s FusionDirectory není čitelné. Akce byla zrušena."
 
-#: include/class_msgPool.inc:245
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "Cannot select %s database!"
-msgstr "Nelze vybrat databázi %s!"
+msgid "Did not find an account with login \"%s\""
+msgstr "Účet s uživatelským jménem %s nebyl nalezen"
 
-#: include/class_msgPool.inc:255
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "No %s server defined!"
-msgstr "Není určen server %s!"
+msgid "Found multiple accounts with login \"%s\""
+msgstr "Bylo nalezeno hned několik účtů s uživatelským jménem %s"
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
-msgstr "Nedaří se dotazovat do databáze %s!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "E-mailová adresa"
 
-#: include/class_msgPool.inc:285
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Pole %s obsahuje vyhrazené klíčové slovo (použijte něco jiného)!"
+msgid "There is no account using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:297
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "Příkaz určený jako háček %s pro zásuvný modul '%s' neexistuje!"
+msgid "There are several accounts using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:313
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "Příkaz %s není platný!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "%s příkaz pro zásuvný modul %s není platný!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Nastal problém s poštovním serverem – obraťte se na svého správce systémů."
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "%s příkaz (%s) není platný!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr "tato poukázka (token) je neplatná"
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "%s příkaz (%s) pro zásuvný modul %s není platný!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr "Vyskytl se problém s poštovním serverem, potvrzovací e-mail proto nebyl odeslán"
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Nedaří se spustit příkaz %s!"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Nastavení PHP"
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Nedaří se spustit příkaz '%s' pro zásuvný modul %s!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Fatální chyba: v PHP je zapnuto 'register globals'. Dokud to Váš správce systémů neopraví, nebude možné se přihlásit do FusionDirectory."
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "Nedaří se spustit příkaz '%s' (%s)!"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Změna hesla"
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Nedaří se spustit příkaz '%s' (%s) pro zásuvný modul %s!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Platnost vašeho hesla již brzy skončí – změňte ho prosím!"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Hodnota %s je příliš vysoká!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "Je třeba, aby %s bylo menší než %s!"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "Dochází volná kapacita operační paměti!"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Hodnota %s je příliš nízká!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "kontrola dle ACL je vypnuta"
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "Je třeba, aby %s bylo větší nebo rovno %d!"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Zásuvný modul"
 
-#: include/class_msgPool.inc:393
+#: html/main.php:290
 #, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "%s závisí na %s – zadejte obě hodnoty!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr "Fatální chyba: Nelze nalézt jakékoli definice zásuvného modulu pro modul %s (%s není soubor)!"
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "V systému již existuje položka s atributem %s!"
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Chyba v nastavení"
 
-#: include/class_msgPool.inc:406
+#: html/main.php:306
 #, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
-msgstr "Položka %s již používá tento %s atribut!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Fatální chyba: ne všechny proměnné POST byly PHP přeneseny – sdělte to prosím svému správci systémů!"
 
-#: include/class_msgPool.inc:417
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Pole %s nemůže být prázdné!"
+msgid "Welcome %s!"
+msgstr "Vítejte, %s!"
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
-msgstr "Ukázka:"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Odkazy"
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
-msgstr "Políčko %s obsahuje neplatné znaky"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "%s není dovoleno:"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "upravit POSIXová nastavení uživatele"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "%s nejsou dovolené!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Domovská složka"
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Chybějící rozšíření PHP %s!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "Umístění domovské složky tohoto uživatele"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Zrušit"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "shell"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "OK"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr "Který shell by měl být použit, když se uživatel přihlásí"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Použít"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Hlavní skupina"
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Uložit"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr "Hlavní skupina tohoto uživatele"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Přidat"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr "Stav tohoto unixového uživatelského účtu"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Přidat %s"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr "Vynutit konkrétní identifikátor uživatele/skupiny"
+
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr "Pro tohoto uživatele vynutit konkrétní identifikátory uživatele a jeho hlavní skupiny"
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr "Identifikátor uživatele"
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr "Hodnota identifikátoru účtu tohoto uživatele"
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr "Idenifikátor skupiny"
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr "Hodnota identifikátoru hlavní skupiny tohoto uživatele"
+
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Členství ve skupinách"
+
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Účet"
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Smazat %s"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "Uživatel musí při prvním přihlášení změnit heslo."
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Upravit…"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr "Při prvním přihlášení musí uživatel změnit heslo (vyžaduje nastavenou hodnotu u Prodleva před vynucením změny hesla)"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Upravit %s…"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Zpět"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Tento účet nemá platná rozšíření %s!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr "Prodleva před vynucením změny hesla (dny)"
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Tento účet má zapnuta nastavení %s. Vypnout je můžete kliknutím níže."
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr "Po tomto počtu dnů bude uživatel přiměn ke změně hesla (nevyplnění funkce vypíná)"
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr "Datum skončení platnosti hesla"
+
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Tento účet má vytvořena nastavení pro %s. Pokud je chcete odebrat, musíte ale nejprve odebrat nastavení pro %s!"
+"Date after which this user password will expire (leave empty to disable)"
+msgstr "Datum po kterém skončí platnost hesla uživatele (nevyplnění tuto funkci vypíná)"
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr "Délka nečinnosti uživatele, po které bude účet uživatele vypnut (dny)"
+
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Tento účet má deaktivována nastavení pro %s. Zapnout je můžete kliknutím níže."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr "Po skončení platnosti hesla, jak dlouho nanejvýš může být účet nepoužíván, než dojde k jeho vypnutí (zůstane ovšem zachován). Nevyplnění tuto funkci vypíná"
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr "Prodleva varování uživatele před skončením platnosti hesla (dny)"
+
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Tento účet má deaktivována nastavení pro %s. Zapnout je ale můžete teprve poté, co přidáte nastavení pro %s!"
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr "Uživatel bude varován nastavený počet dnů předem před skončením platnosti hesla (nevyplnění tuto funkci vypíná)"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Přidat nastavení pro %s"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "důvěryhodnost systémů"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "Odebrat nastavení pro %s"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "režim důvěryhodnosti"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Pro změnu údajů v tomto dialogu klikněte na Upravit"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr "Typ ověřování pro tyto počítače"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "leden"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "vypnuto"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "únor"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "plný přístup"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "březen"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "umožnit přístup k těmto strojům"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "duben"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Tomuto uživateli povolit připojení pouze na počítače z tohoto seznamu"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "květen"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "samočinné"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "červen"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "platnost skončila"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "červenec"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "běží čas odkladu"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "srpen"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "aktivní"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "září"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "platnost hesla skončila"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "říjen"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "heslo nelze změnit"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "listopad"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "prosinec"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "neděle"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Vypršel časový limit při čekání na zámek – zámek bude proto nebude brán v potaz!"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "pondělí"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr "Skupina uživatele %s"
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "úterý"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr "Skupiny a role"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "středa"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr "Upravit skupiny a role uživatele"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "čtvrtek"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr "Členství ve skupinách"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "pátek"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr "Členství v rolích"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Sobota"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Metoda uložení hesla"
+
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Metoda otisku hesla"
+
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Heslo"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "Operace v databázi se nezdařila!"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Heslo (Pokud si nepřejete změnit, ponechte prázdné)"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "Operace čtení"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Zopakování hesla"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "Operace přidání"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr "Stejné heslo jako výše, pro vyloučení chybného zadání"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "Operace upravování"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Uživatel"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "Operace mazání"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr "Informace o uživatelském účtu"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "Operace hledání"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr "Uživatelský účet"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "Ověření"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Osobní údaje"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "LDAP %s se nezdařilo!"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Příjmení"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "Operace v LDAP databázi se nezdařila!"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr "Příjmení tohoto uživatele"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "Nahrání se nezdařilo!"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Jméno"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Nahrání se nezdařilo: %s"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr "Křestní jméno tohoto uživatele"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "Výpadek komunikace se službou infrastruktury!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr "Stručný popis uživatele"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Selhání komunikace se službou infrastruktury: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr "Fotografie"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "Toto %s je stále používáno objektem: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr "Obrázek pro tohoto uživatele"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "Toto %s je stále používáno."
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr "Organizační kontaktní údaje"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "Toto %s je stále používáno následujícími objekty: %s"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Umístění"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Soubor %s neexistuje!"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Stav"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Soubor %s nelze číst!"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Adresa"
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Do souboru %s nelze zapisovat!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr "Firemní poštovní adresa"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "Hodnota %s v tuto chvíli buď není nastavena, nebo je neplatná – překontrolujte svůj soubor s nastaveními!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Číslo místnosti"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Soubor %s nelze smazat!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Číslo místnosti"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "Složku %s se nedaří vytvořit!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Telefon"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "Složku %s nelze smazat!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr "Služební telefoní číslo"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Ověřování, zda je podporováno %s"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Mobilní"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Nainstalovat a zapnout modul PHP %s."
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr "Číslo služebního mobilního telefonu"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr "Nainstalovat a zapnout Pear modul %s"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Pager"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "Nelze připravit třídu '%s'! Možná ve Vaší instalaci FusionDirectory chybí příslušný zásuvný modul?"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr "Číslo na pracovní pager"
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr "Nově zadaná hodnota základu není platná a proto je stále používána předchozí!"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "fatální chyba: není určeno umístění třídy – pro nápravu prosím spusťe '%s'"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr "Číslo služebního faxu"
 
-#: include/functions.inc:142
-#, php-format
-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č"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Webové stránky"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Fatální chyba"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr "Osobní webové stránky"
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr "Informace o účtu"
 
-#: include/functions.inc:583
-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ů."
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr "Přihlašovací jméno tohoto uživatele"
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Chyba ověření"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr "Uživatelovo heslo"
 
-#: include/functions.inc:617
-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>."
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr "Osobní kontaktní údaje"
+
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Zobrazovaný název"
 
-#: include/functions.inc:668 include/functions.inc:791
-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!"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr "Jméno, pod kterým má být tento uživatel zobrazován. Používáno MS Exchange."
 
-#: include/functions.inc:678
-#, 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ů!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr "Adresa bydliště"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "LDAP server odpověděl: %s"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Soukromá poštovní adresa"
 
-#: include/functions.inc:859
-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í."
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Soukromý telefon"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Limit velikosti položek %d je překročen!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Telefonní číslo domů"
 
-#: include/functions.inc:1132
-#, 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"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Organizační údaje"
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Nastavit"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Titul"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "neúplné"
+#: plugins/personal/generic/class_user.inc:415
+msgid ""
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr "Titul osoby v kontextu organizace. Každý z titulů je hodnota tohoto vícehodnotového atributu"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Přesto pokračovat"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organizace"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Přesto upravit"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Oddělení"
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr "chystáte se upravit položky LDAPu %s"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
+msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Položek na stránku"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Číslo oddělení"
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Použít filtr"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Číslo oddělení"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr "%sB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Číslo zaměstnance"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr "%sKiB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Číslo zaměstnance"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr "%sMiB"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Typ zaměstnaneckého poměru"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
-msgstr "%sGiB"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Nadřízený"
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sTiB"
-msgstr "%sTiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgstr "Ppolicy %s nebyla nalezena v LDAP!"
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
-msgstr "%sPiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr "Nejste oprávněni ke změně svého hesla"
 
-#: include/functions.inc:2123
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sEiB"
-msgstr "%sEiB"
+msgid "You must wait %d seconds before changing your password again"
+msgstr "Je třeba, abyste počkali %d sekund než budete moci znovu měnit své heslo"
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
-msgstr "%sZiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr "Toto heslo už bylo nedávno použito"
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
-msgstr "%sYiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr "Bylo zadáno naprosto stejné heslo, jako je to stávající"
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Pro pokračování je třeba zadat své stávající heslo."
 
-#: include/functions.inc:2294
-#, php-format
+#: plugins/personal/generic/class_user.inc:653
 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:2336
-msgid "Cannot write to revision file!"
-msgstr "Nelze zapsat do souboru s revizemi!"
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr "Zadání v kolonkách Nové heslo a Zopakování nového hesla se neshodují."
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "Nelze číst ze souboru s revizemi!"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nové heslo"
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr "nextIdHook není k dispozici. Bude použit výchozí základ!"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Nové a staré heslo jsou si příliš podobné."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Varování LDAP"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Nové heslo nelze použít – je příliš krátké (není bezpečné)."
 
-#: include/functions.inc:2586
-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!"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "Heslo obsahuje znaky, které mohou být problematické (např. se nenacházejí přímo na klávesnici)."
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr "Statistiky o uživatelích"
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
+msgstr "Statistiky uživatelů"
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
+msgstr "Statistiky skupin"
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
+msgstr "Účty, jejichž platnost skončila"
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
+msgstr "Přehled"
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr "Statistiky a různé další údaje"
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
+msgstr "Hlášení"
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Dostupné třídy"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr "Statistiky"
 
-#: include/functions.inc:2668
-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."
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Obnova zapomenutého hesla"
 
-#: include/functions.inc:2669
-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É"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Nastavení funkce obnovení zapomenutého hesla"
 
-#: include/functions.inc:2672
-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."
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Nastavení obnovy zapomenutého hesla"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
-msgstr "Je třeba, aby ObjectClass posixGroup bylo STRUKTURÁLNÍ"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Zapnout funkci pro obnovu zapomenutého hesla"
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "Není k dispozici volné ID:"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
+msgstr "Zda zapnout funkci pro obnovování zapomenutých hesel"
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "Neznámá metoda idAllocation (přiřazování ID)!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "E-mailová adresa odesilatele"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "E-mailová adresa, ze které budou zprávy posílány"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "Identifikátor sambaUnixIdPool není jedinečný!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Doba platnosti odkazu (minuty)"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "Není k dispozici ID!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr "Počet minut, po jejichž uplynutí skončí platnost obnovovacího odkazu"
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "Překročen nejvyšší přijatelný počet neúspěšných pokusů!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr "Kryptografická „sůl“ pro tokeny"
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Není k dispozici volné ID – není co přidělit!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Pouze bezpečnostní opatření, můžete zde zadat cokoli, třeba i nahodile zvolené znaky"
 
-#: include/functions.inc:3345
-#, 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)"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Umožnit používání alternativních adres"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "Požadovaný kanál neexistuje! Prosím kontaktujte svého správce systémů."
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Uživatelé budou moci pro obnovení svých hesel použít jednu ze svých alternativních adres"
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "První e-mail"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Název šablony"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Předmět"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Všechny objekty v této kategorii"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Předmět prvního e-mailu"
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Soubor"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Odkaz pro obnovu hesla"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Řádek"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr "Tělo zprávy (první %s je přihlašovací jméno, druhé je odkaz)"
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "chyba v PHP"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr "Obsah první e-mailové zprávy, poslané uživateli, když požádá o nové heslo. Pro přihlašovací jméno a obnovovací odkaz použijte %s."
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "třída"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Dobrý den,\n\nZde jsou Vaše přihlašovací údaje:\n- přihlašovací jméno: %s\n- odkaz pro obnovu hesla: %s\n\nVýše uvedený odkaz je platný pouze 10 minut!"
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "funkce"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Druhý e-mail"
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "neměnné"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Předmět druhého e-mailu"
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "metoda"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Obnova ztraceného hesla proběhla úspěšně"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "stopa"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr "Tělo zprávy (%s je přihlašovací jméno)"
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Typ"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr "Obsah druhé e-mailové zprávy, poslané pro potvrzení toho, že heslo bylo změněno. Na místě přihlašovacího jména uživatele použijte %s – bude dosazeno"
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argumenty"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Dobrý den,\n\nVaše heslo bylo změněno.\nUživatelské jméno je samozřejmě pořád stejné – %s"
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "Během vytváření této stránky ohlásil interpret PHP několik chyb!"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Nastavení"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "zaslat hlášení o chybě vývojářům FusionDirectory"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr "Nastavení FusionDirectory"
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Zaslat hlášení o chybě"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "přepnout informace"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Vzhled a chování"
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Opravte výše uvedenou chybu a znovunačtěte tuto stránku."
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Jazyk"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
-msgstr "Pořizování zachyceného stavu objektu"
+#: 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 "Jazyk aplikace. V případě nastavení na samočinný výběr nebo když nebude k dispozici, bude použit jazyk, požadovaný prohlížečem. Toto nastavení je možné změnit pro jednotlivé uživatele."
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
-msgstr "DN objektu, ze kterého pořizujete zachycený stav"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Vzhled"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Časová značka"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr "Vzhled, který má být použit"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
-msgstr "Kdy byl tento zachycený stav pořízen"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Časová zóna"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
-msgstr "Důvod"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr "Časová zóna, která má být použita"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
-msgstr "Důvod pořízení tohoto zachyceného stavu"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr "Nastavení schématu"
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "R-m-d, H:m:s"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
+msgstr "Ověření schématu"
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr "Obnovit"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr "Zapíná kontrolu schématu při přihlašování."
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
-msgstr "Obnovení zachycených stavů"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Nastavení hesel"
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
-msgstr "Zachycené stavy, které jsou pro tento objekt k dispozici"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr "Výchozí otisk hesla"
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Stránka"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr "Výchozí otisk, který bude použit"
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr "Vynutit výchozí otisk"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "Není možné exportovat do formátu PDF: není nainstalována potřebná softwarová knihovna."
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr "Vynutit použití výchozího otisku hesla"
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "minimální délka hesla"
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "v"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr "Minimální délka hesel uživatelů"
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "připojeno"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr "O kolik je třeba, aby se hesla lišila"
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Chyba v XML"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr "Nejnižší umožněný počet rozdílných znaků oproti předchozímu heslu"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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 ""
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "omezovat platnost uživatelský účtů na základě platnosti jejich hesel"
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:144
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
+msgstr "Zapíná test stínového atributy během přihlašování k FusionDirectory a vynucuje obnovu hesla nebo uzamčení účtu"
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
-msgstr "Panel %s"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
+msgstr "SASL oblast"
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Zrušit vše"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr "SASL Exop"
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Nelze vložit"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
+msgstr "Atribut, který ukládat v atributu userPassword"
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
-msgstr "Nastavení šablony"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
+msgstr "Základní nastavení"
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
-msgstr "Toto je název šablony"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Ve výpisech zobrazovat souhrn"
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
-msgstr "Pouze hlavní panel může vypočítat rozlišený název"
+#: plugins/config/class_configInLdap.inc:162
+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 "Určuje, zda bude na konci seznamů zobrazována stavová lišta, ve které bude uveden krátký souhrn typu a počtu prvků na seznamu."
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
-msgstr "Nedaří se spočítat rozlišený název: žádná nadřazená třída panelu pro %s"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr "Upravit zamykání"
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
-msgstr "Nedaří se spočítat dn: nedaří se nalézt objectType informace z panelu třídy %s"
-
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Chyba při ukládání"
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr "Kontrolovat, zda aktuálně upravovaná položka nebyla mezitím změněna mimo FusionDirectory."
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "Položka s takovým rozlišeným názvem již existuje: %s"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr "Zapnout protokolování"
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "Položka %s neexistuje"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr "Protokolování událostí na straně FusionDirectory."
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr "Nejvyšší umožněná velikost LDAP"
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Vyberte požadované položky"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr "Určuje počet položek, které budou ve výchozím nastavení získávány z LDAP."
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr "%s šablona"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Přihlašování a sezení"
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
-msgstr "Zobrazit %s"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "atribut použitý pro přihlašování"
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
+msgstr "Který LDAP atribut by měl být použit jako přihlašovací jméno při přihlašování."
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
-msgstr "Role %s"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Vynutit šifrované spojení"
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
-msgstr "Skupina %s"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
+msgstr "Zapnout kontroly zabezpečení PHP z důvodu vynucení šifrovaného přístupu (https) na webové rozhraní."
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Skupina uživatele"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Varovat, pokud relace není šifrována"
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "žádné"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr "zobrazí uživateli varování, když použije protokol http namísto https."
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "neznámé"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Doba nečinnosti, po jejímž uplynutí bude relace automaticky ukončena."
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
-msgstr "KiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
-msgstr "MiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
-msgstr "GiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
-msgstr "TiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "sekundy"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "minuty"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "hodiny"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Zapnout pořizování zachycených stavů"
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "dny"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr "Toto umožňuje uložit určité stavy položek a později je zase obnovit."
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (vyžadováno)"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Základ zachyceného stavu"
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr "Základ, ve kterém by měly být zachycené stavy ukládány v LDAP."
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "Celé kladné číslo z rozmezí %d až %d"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
+msgstr "SSL"
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "Celé kladné číslo větší než %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
+msgstr "Umístění klíče"
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "Celé kladné číslo menší než %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
+msgstr "Umístění soukromé části klíče FusionDirectory. V tuto chvíli není používáno."
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Desetinné číslo z rozsahu %f až %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
+msgstr "Umístění certifikátu"
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr "Desetinné číslo větší než %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
+msgstr "Umístění certifikátu FusionDirectory. V tuto chvíli není používáno."
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
-msgstr "Desetinné číslo menší než %f"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
+msgstr "Umístění certifikátu cert. autority"
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+msgstr "Umístění certifikátu cert. autority. Slouží k ověření stroje s Argonaut serverem."
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "Nelze přečíst nahraný soubor: %s"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
+msgstr "Ústřední ověřovací služba (CAS)"
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "soubor je prázdný"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
+msgstr "Zapnout CAS"
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "soubor nebyl nenalezen"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr "Bude použito CAS namísto LDAP přihlášení"
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "soubor není čitelný"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr "Umístění certifikátu cert. autority na CAS serveru"
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
-msgstr "%s (%d bajtů)"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Stroj"
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Nahrát"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
+msgstr "Stroj, na kterém je provozován CAS server"
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "stažení"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Port"
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
+msgstr "Port na kterém CAS server očekává spojení"
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Základ"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr "Kontext CAS"
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
-msgstr "Základ objektu"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr "Kontext CAS, který použít"
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
-msgstr "Neplatná hodnota pro %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Úložiště účtů uživatelů a skupin"
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr "BEZ POPISKU"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "atribut účtu uživatele použitý jako DN"
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "Nebylo nalezeno žádné určení zásuvného modulu pro inicializaci %s – zkontrolujte svůj soubor s nastaveními."
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr "Atribut, který bude použit na začátku rozlišených jmen uživatelů"
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-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"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr "Vzor CN"
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
+msgstr "Vzor který použít pro vytváření kolonky běžný název"
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
-msgstr "Nastavení časové zóny %s ve vašem nastavení není platné."
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr "Přísná pravidla pro pojmenovávání"
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "přístupová práva (ACL)"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr "Zapíná přísnou kontrolu uživatelských jmen a názvů skupin"
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "správa seznamů pro řízení přístupu (ACL)"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr "Nejnižší identifikátor skupiny/uživatele"
 
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
-msgstr "Neznámý typ ACL %s!\nPro převod acl do nového formátu spusťte fusiondirectory-setup --migrate-acls."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
+msgstr "Nejnižší umožněný přiřaditelný identifikátor uživatele či skupiny pro vyloučení bezpečnostních průniků s účty s identifikátorem 0 (root)."
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Neznámá položka %s!"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr "Háček příštího identifikátoru"
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Všichni uživatelé"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr "Skript, který má být volán pro nalezení dalšího volného identifikátoru pro uživatele nebo skupiny."
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "Heslo nelze změnit, neznámý uživatel %s"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr "Od jakého čísla začít přidělovat identifikátory uživatelů"
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
-msgstr "Aby bylo možné používat SASL, je třeba vyplnit kolonky saslRealm nebo saslExop na obrazovce s nastaveními"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr "Kde začít s hledáním volných identifikátorů pro nové uživatele."
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
-msgstr "Došlo k problému s rozbalováním dat zachyceného stavu"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr "Od jakého čísla začít přidělovat identifikátory skupin"
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Přihlášení se nezdařilo: %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr "Kde začít s hledáním volných identifikátorů pro nové skupiny."
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
+msgstr "Relativní rozlišený název uživatelů"
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "Jako objectType (typ objektu) buď nebylo zadáno nic, nebo nesprávná hodnota."
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
+msgstr "Větev, ve které jsou uloženi uživatelé."
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
+msgstr "Relativní rozlišený název skupin"
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr "Větev, ve které jsou uloženy skupiny."
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"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 ."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
+msgstr "Relativní rozlišený název ACL úlohy"
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Chyba ve Smarty"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr "Větev, ve které jsou uloženy ACL úlohy."
 
-#: 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á!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Metoda přiřazování identifikátorů"
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Platnost vašeho sezení ve FusionDirectory skončila!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
+msgstr "Způsob přiřazování identifikátorů uživatelů/skupin"
 
-#: html/index.php:211
-msgid "Your IP has changed!"
-msgstr "Vaše IP adresa byla změněna!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Tradiční"
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
-msgstr "Neplatný parametr %s pro zásuvný modul!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr "Rozsah unixových identifikátorů pro Samba"
 
-#: html/index.php:217
-msgid "No session found!"
-msgstr "Nebyla nalezena žádná relace!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
+msgstr "Nejnižší identifikátor uživatele"
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
-msgstr "Chyby nahlášené při kontrole LDAP schématu:"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
+msgstr "Nejnižší umožněná hodnota pro identifikátor uživatele při použití způsobu rozsahu"
 
-#: html/index.php:255
-msgid "LDAP schema error"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
+msgstr "Nejvyšší identifikátor uživatele"
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Zadejte platné uživatelské jméno!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr "Nejvyšší umožněná hodnota pro identifikátor uživatele při použití způsobu rozsahu"
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Zadejte své heslo!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr "Nejnižší identifikátor skupiny"
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Zkontrolujte prosím správnost kombinace zadaného uživatelského jména a hesla."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr "Nejnižší umožněná hodnota pro identifikátor skupiny při použití způsobu rozsahu"
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Účet je uzamčen. Kontaktujte svého správce systémů!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
+msgstr "Nejvyšší identifikátor skupiny"
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
+msgstr "Nejvyšší umožněná hodnota pro identifikátor skupiny při použití způsobu rozsahu"
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Diagnostika"
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr "Zobrazit chyby"
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:387
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Váš webový prohlížeč má zakázané cookies. Prosím povolte je a před dalším pokusem o přihlášení stránku nechejte tuto stránku načíst znovu!"
+"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 "V horní části obrazovky vypisuje chyby, ke kterým došlo v PHP. V produkčním nasazení by toto mělo být vypnuto, protože se zde mohou objevovat hesla."
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Nastavení PHP"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "maximální prodleva odpovědi LDAPu"
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Fatální chyba: v PHP je zapnuto 'register globals'. Dokud to Váš správce systémů neopraví, nebude možné se přihlásit do FusionDirectory."
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr "Zastavit LDAP akce pokud není obdržena odpověď v rámci zadaného počtu sekund."
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Změna hesla"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Zaznamenávat statistiky LDAP"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Platnost vašeho hesla již brzy skončí – změňte ho prosím!"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr "Sledovat statistiky časování LDAP do systémového protokolu. Může pomoci s hledáním problémů s indexováním či chybnými filtry hledání."
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Úroveň podrobností diagnostických informací"
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "Dochází volná kapacita operační paměti!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr "Zobrazit určité údaje při každém načtení stránky."
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "kontrola dle ACL je vypnuta"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Různé"
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Zásuvný modul"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
+msgstr "Háčky, které jsou volány pokud nastane konkrétní událost"
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
-msgstr "Fatální chyba: Nelze nalézt jakékoli definice zásuvného modulu pro modul %s (%s není soubor)!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr "panel"
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Chyba v nastavení"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr "Panel, kterého se týká tento háček"
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Fatální chyba: ne všechny proměnné POST byly PHP přeneseny – sdělte to prosím svému správci systémů!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "režim"
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "Nastavení %s/%s FusionDirectory není čitelné. Akce byla zrušena."
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr "Kdy spouštět tento příkaz"
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Složka %s, nastavená jako místo pro provedení sestavení, není přístupná!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr "příkaz"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
-msgstr "Účet s uživatelským jménem %s nebyl nalezen"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr "Příkaz, který bude spouštěn"
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
-msgstr "Bylo nalezeno hned několik účtů s uživatelským jménem %s"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "háčky"
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "E-mailová adresa"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr "Zobrazit výstup háčku"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
+msgstr "Pokud je zapnuto, je úspěšné vykonání háčku zobrazeno uživateli prostřednictvím dialogu."
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr "Dostupné shelly"
+
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr "POSIX shelly, dostupné pro uživatele F.D."
+
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr "Zobrazit panel ACL u všech objektů"
+
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
+msgstr "Pro velmi specifická nastavení ACL práv, kde je zapotřebí udělit právo na jediném objektu."
+
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Nastal problém s poštovním serverem – obraťte se na svého správce systémů."
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Zásuvné moduly"
+
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr "Nastavení zásuvných modulů"
+
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr "Nastavení zásuvných modulů"
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
-msgstr "tato poukázka (token) je neplatná"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr "Nastavení zásuvných modulů pro FusionDirectory"
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
-msgstr "Vyskytl se problém s poštovním serverem, potvrzovací e-mail proto nebyl odeslán"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "skupiny objektů"
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
+msgstr "Relativní rozlišený název OGroup"
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
+msgstr "Větev, ve které budou ukládány objekty skupin"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Název umístění"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
-msgstr "Název tohoto připojení, který bude zobrazován v seznamu serverů v LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
+msgstr "Vynutit dotázání se na heslo"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "připojovací URI (adresa)"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
+msgstr "Hodí se pro přidání háčku, používajícího hodnotu hesla když jsou upravována SASL uživatelská hesla"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
-msgstr "URI adresa, na které kontaktovat LDAP server. Obvykle začíná na ldap://"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr "Nastavení Přehledu"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "TLS (šifrované) spojení"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr "Nastavení zásuvného modulu Přehled pro FusionDirectory"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
-msgstr "Šifrovat komunikaci s LDAP serverem (pomocí TLS)?"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr "Schéma názvů Přehledu"
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
-msgstr "Základ LDAP adresáře"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr "Počet číslic"
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Ověření"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr "Počet číslic, které umístit za předponu"
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
-msgstr "Rozlišený název účtu správce, použitého pro spojování do LDAP. Základ je připojen samočinně."
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr "Předpony"
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "Rozlišený název účtu správce"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr "Předpony pro identifikátory počítačů"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Heslo správce"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
+msgstr "Přehled uživatelů, jejichž účtům skončila platnost"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
-msgstr "Heslo k účtu správce, použitého pro spojování do LDAP"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr "Počet dnů"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Stávající stav"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
+msgstr "Počet dnů před skončením platnosti účtu, kdy se tento začne zobrazovat v přehledu účtů, kterým končí platnost"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
-msgstr "Výsledek posledního pokusu kontroly LDAP spojení a základních schémat"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Oddělení"
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Nastavení LDAP"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "oddělení"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Nastavení připojení k LDAP"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "vlastnosti"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "V tomto dialogu budou provedena základní nastavení pro komunikaci FusionDirectory s LDAPem."
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
+msgstr "Název %s"
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "Anonymní spojení se serverem %s se nezdařilo!"
+msgid "A name for this %s"
+msgstr "Název pro toto %s"
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Spojení jako uživatel %s se nezdařilo!"
+msgid "Short description of this %s"
+msgstr "Stručný popis tohoto %s"
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Znovu"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Kategorie"
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "Anonymní spojení se serverem %s proběhlo úspěšně."
+msgid "Category of this %s"
+msgstr "Kategorie tohoto %s"
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Znovunačíst"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Zadejte uživatelské jména a heslo!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "Přihlášení se jako uživatel '%s' k serveru '%s' proběhlo úspěšně!"
+msgid "Manager of this %s"
+msgstr "Nadřízený tohoto %s"
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "ZemÄ›"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
-msgstr ""
+msgid "A postal address for this %s"
+msgstr "Poštovní adresa pro toto %s"
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Vítejte"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Telefonní číslo"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Dokončit"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr "Telefonní číslo faxu"
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Dokončit – zapsat nastavení do souboru"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr "organizace"
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Zapsat nastavení do souboru"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Doména"
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Váš soubor s nastaveními je v tuto chvíli čitelný úplně pro všechny. Upravte nastavení oprávnění pro přístup k němu!"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr "doména"
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Soubor s nastaveními není v tuto chvíli čitelný, nebo zcela chybí."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Spravovat oddělení"
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Po stažení a umístění souboru do %s se ujistěte, že %s je oprávněn číst pouze uživatelský účet, pod kterým běží webový server a nikdo jiný."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Přemístit"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Uživatelé a skupiny"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "Kontroly PHP a rozšiřujících komponent"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "část (prvek) názvu domény"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Prohlídka LDAP"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr "Doménová část"
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Zjistit, zda je vaše stávající LDAP databáze slučitelná s FusionDirectory"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Místo"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
-msgstr "Udělit veškerá práva na uživatelích v dané větvi"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
+msgstr "místo"
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr "Umožnit uživatelům upravovat své vlastní údaje (panely Hlavní a Posix použijte jen na základu)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Seznam oddělení"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
-msgstr "Umožnit uživatelům upravovat jejich vlastní hesla (použijte pouze na základu)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr "zemÄ›"
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "kontrolují se třídy objektů v kořenovém objektu"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Spravovat uživatele"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "kontrolují se oprávnění na LDAP databázi"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "kontroluje se, zda neexistují „neviditelní“ uživatelé"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Zamykání účtu"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "kontroluji, zda již existuje účet správce FusionDirectory/GOsa"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr "Způsob ukládání hesel %s neumožňuje uzamykání účtů. Účet %s proto nebyl uzamčen!"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr "Kontrola výchozích ACL úloh a skupin"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Odemknout účet"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "kontroluje se, zda neexistují účty uživatelů mimo příslušný podstrom"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Uzamknout účet"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Kontroluje se, zda neexistují účty skupin mimo příslušný podstrom"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Seznam uživatelů"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "kontroluje se, zda neexistují „neviditelná“ oddělení"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Příjmení"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "kontroluje se, zda neexistují duplicity v číselných identifikátorech uživatelů (UID)"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Jméno"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Zamknout uživatele"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "Dotaz do LDAP nebyl úspěšný"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Odemknout uživatele"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr "Možná chybí kořenový objekt."
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Použít šablonu"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Nezdařilo se"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Vytvořit nového uživatele pomocí šablony"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "Chybí třída objektů FusionDirectory %s!"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Upravit uživatele"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Zkontrolujte svou instalaci."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "Nedaří se manipulace s typem struktury kořenového objektu. Prosím pokuste se přidat třídu objektů '%s' ručním zásahem."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Odebrat uživatele"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr "Zvolený uživatel %s nemá plný přístup do LDAP databáze."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Role"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
-msgstr "Zvolený uživatel %s nemá plný přístup do LDAP databáze."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr "Informace o roli"
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "Nalezeno %s uživatelů, kteří nebudou dostupní z FusionDirectory nebo jsou jejich účty neúplné."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
+msgstr "Organizační role"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr "Přemístění uživatele"
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Informace"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Chyba přemisťování"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr "Název této skupiny"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
-msgstr "Položku %s nelze přemístit:"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Popis role"
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr "Nalezeny správcovské účty z F.D. 1.0.7: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Telefonní číslo"
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
-msgstr "Nalezeny správcovské skupiny z F.D. 1.0.7: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Faxové číslo"
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
-msgstr "Na konci nastavení je možné spustit <i>fusiondirectory-setup --migrate-acls</i> a přemístit ho.<br/>"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
-msgstr "Ve vaší LDAP databázi se nenachází žádný použitelný účet správce FusionDirectory 1.0.8."
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Přidat uživatele pro tuto roli"
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Skupiny"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
+msgstr "Spravovat skupiny a role"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "Ve vaší LDAP databázi se nenachází žádný účet správce FusionDirectory."
+#: 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:69
+msgid "Edit role properties"
+msgstr "Upravit vlastnosti role"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
-msgstr "Uděluje veškerá práva na veškerých objektech"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "POSIX"
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr "Výchozí ACL úlohy nebyly vloženy"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Upravit POSIXové vlastnosti"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
-msgstr "Chybí některé výchozí ACL úlohy"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
+msgstr "Zobrazit skupiny uživatele"
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
-msgstr "Výchozí ACL úlohy byly vloženy"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Zobrazit hlavní skupiny"
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
-msgstr "Nelze přidat ACL úlohu %s:"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
+msgstr "Zobrazit organizační role"
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr "Nalezeno %s uživatelů, nacházejících se mimo nastavený strom %s."
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
+msgstr "Zobrazit skupiny aplikací"
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Přesunout uživatele do příslušného stromu"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
-msgstr "Položky nelze přesunout do požadovaného oddělení!"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Zobrazit e-mailové skupiny"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
-msgstr "Položka bude přesunuta z"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Zobrazit skupiny Samby"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "do"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Tyto odkazy budou aktualizovány"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
+msgstr "Zobrazit skupiny serverů"
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Bylo nalezeno %s účtů skupin, nacházejících se mimo příslušný strom '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr "Zobrazit skupiny počítačů"
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
-msgstr "Přesunout skupiny do příslušného stromu"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr "Zobrazit skupiny počítačů s MS Windows"
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Bylo nalezeno %s oddělení, která nebudou viditelná z FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
+msgstr "Zobrazit skupiny terminálů"
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
-msgstr "Přemístění oddělení"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr "Zobrazit skupiny tiskáren"
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
+msgstr "Zobrazit skupiny telefonů"
+
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
-msgstr ""
+msgid "Unknown type : %s"
+msgstr "Neznámý typ: %s"
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
-msgstr ""
+msgid "Non existing dn: %s"
+msgstr "Neexistující rozlišený název: %s"
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Nastavení jazyka"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "skupina objektu"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "V tomto kroku vyberete Vámi upřednostňovaný jazyk."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr "Informace o skupinÄ› objektu"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
-msgstr "V tomto okamžiku je možné zvolit výchozí jazyk pro celý systém. Volba samočinně použije jazyk požadovaný přistupujícím webovým prohlížečem. Toto nastavení může být přebito."
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Skupina"
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Vítejte v průvodci nastavením FusionDirectory"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr "Stručný popis této skupiny"
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Uvítací zpráva"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "členské objekty"
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
-msgstr "Nastavení PHP (<a href=\"?info\" target=\"_blank\">zobrazit informace)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr "Objekty spadající do této skupiny"
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Kontrola instalace"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+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"
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Základní kontrola toho, zda je PHP a rozšířující moduly ve vyhovujících verzích"
+#: plugins/admin/groups/class_ogroup.inc:321
+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"
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Kontrola verze PHP…"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Seznam skupin"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "Je třeba, aby PHP bylo ve verzi %s a vyšší."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr "Informace o POSIX skupinÄ›"
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Přejděte na verzi, která je podporována."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr "POSIX skupina"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory potřebuje tento modul pro komunikaci s LDAP serverem."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr "POSIX skupina uživatelů"
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory potřebuje tento modul pro přizpůsobení uživatelského rozhraní místním odlišnostem (formát data a času, měrné jednotky, atp.)."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Vynutit konkrétní GID identifikátor"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory potřebuje tento modul pro komunikaci různými protokoly s různými typy serverů."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr "Vynutit konkrétní identifikátor pro tuto skupinu"
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory potřebuje tento modul pro začlenění Samby."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr "GID identifikátor pro tuto skupinu"
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "Aby bylo možné ve FusionDirectory využívat SSHA šifrování, musí být nainstalován jeden z těchto modulů: 'mhash', nebo 'sha1'."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Členové skupiny"
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory potřebuje tento modul pro komunikaci s IMAP serverem."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "vícebajtový řetězec (mbstring)"
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory potřebuje tento modul pro práci se znaky v univerzálním kódování (unicode)."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "ImageMagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory jej potřebuje pro práci s obrázky."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "kompresní modul"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr "Přiřazení ACL"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory toto rozšíření potřebuje pro práci se snímky."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "„register_globals“ je mechanizmus v PHP pro registraci všech globálních proměnných, které jsou tak dostupné ze skriptů aniž by bylo třeba měnit jejich rozsah. Jenže to může rizikové z hlediska zabezpečení."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Vyhledejte ve svém souboru php.ini parametr register_globals a nastavte jej na hodnotu off . "
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "přiřazení ACL"
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP tuto hodnotu používá pro „úklid“ (garbage collector) při odstraňování starých relací."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr "Dialog přiřazení ACL"
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Nastavení této hodnoty na jeden den zabrání ztrátě relace a cookies dříve, než skutečně vyprší nastavený časový limit."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr "Dialog přiřazení úloh řízení přístupu"
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Vyhledejte ve svém php.ini parametr 'session.gc_maxlifetime' a nastavte jej na hodnotu '86400' a vyšší."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Režim"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Vypnuto"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr "Týká se toto celého podstromu nebo jen základu?"
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "Abyste se vyhnuli potížím při používání FusionDirectory, vyhledejte ve svém php.ini parametr session.auto_start a nastavte jej na hodnotu off ."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr "Podstrom"
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Vyhledejte ve svém souboru php.ini parametr session.auto_start a nastavte jej na hodnotu off ."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr "Pouze základ"
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
-msgstr "Pro svůj běh FusionDirectory potřebuje, aby mu bylo vyhrazeno alespoň 128MB  operační paměti. Provozování pod touto hranicí může způsobovat nevyzpytatelné chyby! Pro rozsáhlá nasazení je třeba tuto hodnotu ještě dále navýšit."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr "Role, kterou použít"
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
-msgstr "V souboru s nastaveními php.ini na svém serveru vyhledejte volbu memory_limit a nastavte ji na hodnotu 128M a vyšší."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr "Pro všechny uživatele"
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Tato volba ovlivňuje to, jak PHP zachází s výstupem. Pro zvýšení výkonu nastavte na hodnotu off ."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr "Použít tento ACL seznam pro všechny uživatele LDAP"
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Vyhledejte ve svém souboru php.ini parametr implicit_flush a nastavte jej na hodnotu off."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Členové"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "PHP skripty by měly dostat čas alespoň 30 vteřin na to, aby proběhly."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr "Uživatelé či skupiny, kterým má být přiřazena tato role"
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Vyhledejte ve svém php.ini parametr 'max_execution_time' a nastavte jej na hodnotu '30' a vyšší."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr "Přiřazení ACL"
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Pro zlepšení zabezpečení nastavte PHP tak, aby neposkytovalo jakékoli informace o serveru, na kterém běží."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr "Přiřazení úlohy řízení přístupu"
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Vyhledejte ve svém php.ini parametr 'expose_php' a nastavte jej na 'off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr "Přiřazení"
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Výkonnost serveru můžete zlepšit nastavením parametru magic_quotes_gpc na hodnotu off ."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr "Přiřazení ACL úlohy pro tento základ"
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Vyhledejte ve svém souboru php.ini parametr zend.ze1_compatibility_mode a nastavte jej na hodnotu off ."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr "Přiřazení na objektu či podstromu %s"
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Chyba instalátoru"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "pro tuto kategorii není nastaven žádný ACL"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Hotovo"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL pro tyto objekty: %s"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Další"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "upravit ACL kategorie"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "Kolektiv tvůrců FusionDirectory"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "resetovat ACL kategorie"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr "<strong>%1</strong> odkazuje na naši <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "seznam dostupných katergorií ACL"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr "<strong>%1</strong> odkazuje na naše políčko <strong>%3</strong> z panelu <strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "všechny objekty v současném podstromu"
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Tento objekt nemá žádnou návaznost na další objekty."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtr"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "číst"
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Zobrazit šablony"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "Zápis"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "zobrazit uživatele, kteří nemají účet pro jakékoli služby"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Zobrazit/skrýt pokročilá nastavení"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "zobrazit uživatele s POSIX účtem"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Vytvářet objekty"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "zobrazit uživatele s e-mail účtem"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Přesunout objekty"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "zobrazit uživatele se Samba účtem"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Odstranit objekty"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Udělit oprávnění vlastníkovi"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
-msgstr "Toto zahrnuje všechna ACL přiřazení na těchto uzlech. Pokud chcete vypsat seznam těchto přiřazení, zrušte toto a otevřete si objekty."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Celý objekt"
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Pokračujte kliknutím na Smazat nebo akci zrušte kliknutím na Zrušit."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
+msgstr "Správa úloh ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] "Je zde jeden účet, kterému skončila platnost"
-msgstr[1] "Jsou zde %1 účty, kterým skončila platnost"
-msgstr[2] "Je zde %1 účtů, kterým skončila platnost"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr "Není zde žádný účet, jehož platnost skončila"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Obsahuje nastavení pro tyto objekty: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
-msgstr "Nadřízený, kterého se týká"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "role řízení přístupu"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "Identifikátor uživatele (uid)"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "Role ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr "bežný název (cn)"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
+msgstr "Název této role"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "telefonniCislo"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
+msgstr "Stručný popis této role"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
-msgstr "stinoveSkonciPlatnost"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
+msgstr "Seznamy pro řízení přístupu"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
-msgstr "nadřízený"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
+msgstr "ACL seznamy, které jsou součástí této skupiny"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr "E-mail"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "Dokud to nebude opraveno, FusionDirectory NEbude fungovat."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] "Je zde jeden účet, kterému končí platnost v příštích %1 dnech"
-msgstr[1] "Jsou zde %2 účty, kterým končí platnost v příštích %1 dnech"
-msgstr[2] "Je zde %2 účtů, kterým končí platnost v příštích %1 dnech"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory bude fungovat i tak."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr "V příštích %1 dnech nekončí platnost žádného z účtů"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Vytvořit nový správcovský účet pro FusionDirectory"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr "Další účty, kterým skončila platnost"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Tento dialog automaticky přidá nového super správce do vašeho LDAP stromu."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] "Je zde 1 skupina:"
-msgstr[1] "Jsou zde %1 skupiny:"
-msgstr[2] "Je zde %1 skupin:"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Identifikátor uživatele"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] "Jedna z nich je %1 skupina"
-msgstr[1] "%2 jsou %1 skupiny"
-msgstr[2] "%2 je %1 skupin"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Heslo (zopakování)"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr "Není zde žádná %1 skupina"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Zdá se, že toto je první spuštění FusionDirectory – není k dispozici jakékoli nastavení. Tento jednoduchý průvodce se vám pokusí pomoci s jeho vytvořením."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] "Je zde jeden uživatel:"
-msgstr[1] "Jsou zde %1 uživatelé:"
-msgstr[2] "Je zde %1 uživatelů:"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "Co pro Vás tento průvodce udělá?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] "Jeden z nich má %1 účet"
-msgstr[1] "%2 z nich mají %1 účet"
-msgstr[2] "%2 z nich má %1 účet"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Vytvořit základní nastavení pro jednu organizaci"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr "Nikdo z nich nemá a %1 účet"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Pokusí se najít problémy, které by mohly existovat ve Vaší instalaci PHP a LDAP"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] "Jeden z nich je uzamčen"
-msgstr[1] "%1 z nich jsou uzamčené"
-msgstr[2] "%1 z nich je uzamčených"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Nechá vás vybrat ze základních a pokročilých voleb nastavení"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr "Žádný z nich není uzamčen"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Asistovaný převod stávajících stromů v LDAP databázi"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Vaše heslo bylo úspěšně změněno. Nezapomeňte změnit též jeho případnou uloženou podobu ve všech aplikacích, které se jím někam přihlašují."
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "Co tento průvodce udělat nemůže?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Nastavení uživatele"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Nalézt všechny případné chyby v nastavení."
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Odstranit heslo"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Provést přechod ze všech možných uspořádání LDAP adresáře – než začnete, vždy proveďte zálohu!"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Nastavit nové heslo"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr "Pro pokračování:"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Fotografie"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr "Z bezpečnostních důvodů je třeba, abyste instalačnímu procesu prokázali své oprávnění vytvořením souboru %1 na souborovém systému serveru, do kterého zapíšete identifikátor tohoto sezení. Můžete tak učinit spuštěním následujícího příkazu (na serveru):"
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Fotografie uživatele"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Až budete hotovi, klikněte na tlačítko Další."
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Odebrat fotografii"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "přidejte do LDAPu potřebné třídy objektů"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "V tomto okamžiku nejste oprávněni změnit si své heslo."
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Stávající"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "Metoda otisku hesla nebyla změněna!"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Po přemístění"
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Zjištěn konflikt při vyhrazování prostředků."
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Zavřít"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
-msgstr ""
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
+msgstr "Tento dialog umožňuje přesunout vícero položek do příslušného stromu. Je tak možné zpřehlednit uspořádání LDAP databáze."
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
-msgstr ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
+msgstr "U této volby buďte opatrní! Na tyto položky mohou existovat odkazy. Ty nemohou být instalátorem FusionDirectory přemístěny – takže pokud takové odkazy skutečně existují, v takovém případě bude nejlépe přemisťování zrušit. "
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Pouze pro čtení"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr "Přesunout označené položky do tohoto stromu"
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
-msgstr "Vytváření nového objektu s použitím šablon"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
+msgstr "Uvedené položky jsou nyní viditelné v rozhraní FusionDirectory. Pokud to chcete u některých položek změnit, pak je jednoduše označte a klikněte na Přemístit."
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Pokračovat"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Náhled toho, co s vybranými položkami stane po migraci, lze získat z LDIFu po kliknutí na 'zobrazit změny'."
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Zobrazit změny"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "Omezování velikosti napomáhá k zlepšení odezvy LDAPu a chrání server před přílišným zatížením. Nejjednodušším způsobem, jak zacházet s velkými databázemi bez dlouhých odezev, je omezit hledání na menší hodnoty a pro získávání položek, které chcete, využívat filtry."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Během kontroly LDAPu bude zjišťováno, zda zde existují případné běžně se vyskytující nedostatky, na které lze narazit při přechodu na správu LDAPu pomocí FusionDirectory. Pro docílení bezproblémového chodu služeb bude dobré odstranit níže uvedené problémy."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Zvolte, jak reagovat během tohoto sezení"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Zkontrolovat znovu"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "ignorovat tuto chybu a zobrazit všechny položky, které LDAP server poskytne"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Uložit nastavení do souboru"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "Ignorovat tuto chybu a zobrazit všechny položky, které nejsou větší než zadaný limit – jako náhradu si vystačím s filtry."
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr "Spustit %1 pro narovnání práv na souboru fusiondirectory.conf"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Nastavit"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Stáhnout nastavení"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Stav: "
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtr"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4940,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr "Funkce pro obnovení zapomenutého hesla není zapnutá. Pokud jste ztratili své heslo, kontaktujte svého správce systémů"
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Tedy – pokud jste si jistí, klikněte na Smazat. V opačném případě operaci zrušte kliknutím na Zrušit."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Přihlašovací obrazovka"
@@ -4978,26 +4869,141 @@ msgstr "Přihlásit"
 msgid "Click here to log in"
 msgstr "Přihlaste se kliknutím sem"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr "Varování: chystáte se obnovit následující zachycený stav"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "Omezování velikosti napomáhá k zlepšení odezvy LDAPu a chrání server před přílišným zatížením. Nejjednodušším způsobem, jak zacházet s velkými databázemi bez dlouhých odezev, je omezit hledání na menší hodnoty a pro získávání položek, které chcete, využívat filtry."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
-msgstr "Jakékoli úpravy, učiněné na tomto objektu od doby pořízení tohoto zachyceného stavu, budou ztraceny."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Zvolte, jak reagovat během tohoto sezení"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "ignorovat tuto chybu a zobrazit všechny položky, které LDAP server poskytne"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "Ignorovat tuto chybu a zobrazit všechny položky, které nejsou větší než zadaný limit – jako náhradu si vystačím s filtry."
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Nastavit"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr "Varování: chystáte se smazat následující objekty"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Týká se veškerých informací o této položce v adresáři. Prosím velmi dobře si rozmyslete, zda to opravdu chcete udělat, protože provedené změny už ve FusionDirectory nepůjde vzít nijak jednoduše zpět (nanejvýš složitě ze záloh, pokud existují a obsahují potřebná data)!"
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Tedy – pokud jste si jistí, klikněte na Smazat. V opačném případě operaci zrušte kliknutím na Zrušit."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Hlavní"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Odhlásit"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Přihlášeni:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "Platnost relace skončí za %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr "Varování: chystáte se obnovit následující zachycený stav"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr "Jakékoli úpravy, učiněné na tomto objektu od doby pořízení tohoto zachyceného stavu, budou ztraceny."
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr "Takže, pokud to tak opravdu chcete, klikněte na Pokračovat. V opačném případě celou operaci zrušte kliknutím na Storno."
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Pokračovat"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Zjištěn konflikt při vyhrazování prostředků."
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Pouze pro čtení"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Průvodce pro zkopíruj a vlož"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr "Některé hodnoty musí být jedinečné v rámci celého adresáře, některé kombinace jsou zase nesmyslné. FusionDirectory zobrazuje příslušné atributy. Upravte prosím níže uvedené hodnoty tak, aby odpovídaly těmto pravidlům."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "Pamatujte, že některé vlastnosti, jako například záznam o pořízených snímcích, nebudou zkopírovány!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "Případně když během kopírováním či přesouvání objektu v rámci FusionDirectory smažete zdrojový objekt, může to vést k selhání vkládání objektů do nového umístění!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Operace byla dokončena"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr "Vytváření nového objektu s použitím šablon"
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Informace"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "ACL přiřazené k této položce"
@@ -5042,211 +5048,204 @@ msgstr "ACL pro tento objekt"
 msgid "Available roles"
 msgstr "Role k dispozici"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr "Varování: chystáte se smazat následující objekty"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Průvodce pro zkopíruj a vlož"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr "Některé hodnoty musí být jedinečné v rámci celého adresáře, některé kombinace jsou zase nesmyslné. FusionDirectory zobrazuje příslušné atributy. Upravte prosím níže uvedené hodnoty tak, aby odpovídaly těmto pravidlům."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "Kolektiv tvůrců FusionDirectory"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "Pamatujte, že některé vlastnosti, jako například záznam o pořízených snímcích, nebudou zkopírovány!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr "<strong>%1</strong> odkazuje na naši <strong>%3</strong>"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "Případně když během kopírováním či přesouvání objektu v rámci FusionDirectory smažete zdrojový objekt, může to vést k selhání vkládání objektů do nového umístění!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Operace byla dokončena"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Informace"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr "<strong>%1</strong> odkazuje na naše políčko <strong>%3</strong> z panelu <strong>%2</strong>"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Hlavní"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Tento objekt nemá žádnou návaznost na další objekty."
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Odhlásit"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Nastavení uživatele"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Přihlášeni:"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Odstranit heslo"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "Platnost relace skončí za %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Nastavit nové heslo"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "přidejte do LDAPu potřebné třídy objektů"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Fotografie"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Stávající"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Fotografie uživatele"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Po přemístění"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Odebrat fotografii"
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Zavřít"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "V tomto okamžiku nejste oprávněni změnit si své heslo."
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Uložit nastavení do souboru"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "Metoda otisku hesla nebyla změněna!"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr "Spustit %1 pro narovnání práv na souboru fusiondirectory.conf"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Vaše heslo bylo úspěšně změněno. Nezapomeňte změnit též jeho případnou uloženou podobu ve všech aplikacích, které se jím někam přihlašují."
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Stáhnout nastavení"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] "Je zde 1 skupina:"
+msgstr[1] "Jsou zde %1 skupiny:"
+msgstr[2] "Je zde %1 skupin:"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Stav: "
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] "Jedna z nich je %1 skupina"
+msgstr[1] "%2 jsou %1 skupiny"
+msgstr[2] "%2 je %1 skupin"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Vytvořit nový správcovský účet pro FusionDirectory"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr "Není zde žádná %1 skupina"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Tento dialog automaticky přidá nového super správce do vašeho LDAP stromu."
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] "Je zde jeden uživatel:"
+msgstr[1] "Jsou zde %1 uživatelé:"
+msgstr[2] "Je zde %1 uživatelů:"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Identifikátor uživatele"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] "Jeden z nich má %1 účet"
+msgstr[1] "%2 z nich mají %1 účet"
+msgstr[2] "%2 z nich má %1 účet"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Heslo (zopakování)"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr "Nikdo z nich nemá a %1 účet"
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Zdá se, že toto je první spuštění FusionDirectory – není k dispozici jakékoli nastavení. Tento jednoduchý průvodce se vám pokusí pomoci s jeho vytvořením."
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] "Jeden z nich je uzamčen"
+msgstr[1] "%1 z nich jsou uzamčené"
+msgstr[2] "%1 z nich je uzamčených"
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "Co pro Vás tento průvodce udělá?"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr "Žádný z nich není uzamčen"
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Vytvořit základní nastavení pro jednu organizaci"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] "Je zde jeden účet, kterému skončila platnost"
+msgstr[1] "Jsou zde %1 účty, kterým skončila platnost"
+msgstr[2] "Je zde %1 účtů, kterým skončila platnost"
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Pokusí se najít problémy, které by mohly existovat ve Vaší instalaci PHP a LDAP"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr "Není zde žádný účet, jehož platnost skončila"
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Nechá vás vybrat ze základních a pokročilých voleb nastavení"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
+msgstr "Nadřízený, kterého se týká"
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Asistovaný převod stávajících stromů v LDAP databázi"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "Identifikátor uživatele (uid)"
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "Co tento průvodce udělat nemůže?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr "bežný název (cn)"
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Nalézt všechny případné chyby v nastavení."
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "telefonniCislo"
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Provést přechod ze všech možných uspořádání LDAP adresáře – než začnete, vždy proveďte zálohu!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr "stinoveSkonciPlatnost"
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
-msgstr "Pro pokračování:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
+msgstr "nadřízený"
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr "Z bezpečnostních důvodů je třeba, abyste instalačnímu procesu prokázali své oprávnění vytvořením souboru %1 na souborovém systému serveru, do kterého zapíšete identifikátor tohoto sezení. Můžete tak učinit spuštěním následujícího příkazu (na serveru):"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
+msgstr "E-mail"
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Až budete hotovi, klikněte na tlačítko Další."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] "Je zde jeden účet, kterému končí platnost v příštích %1 dnech"
+msgstr[1] "Jsou zde %2 účty, kterým končí platnost v příštích %1 dnech"
+msgstr[2] "Je zde %2 účtů, kterým končí platnost v příštích %1 dnech"
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "Dokud to nebude opraveno, FusionDirectory NEbude fungovat."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
+msgstr "V příštích %1 dnech nekončí platnost žádného z účtů"
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory bude fungovat i tak."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
+msgstr "Další účty, kterým skončila platnost"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
-msgstr "Tento dialog umožňuje přesunout vícero položek do příslušného stromu. Je tak možné zpřehlednit uspořádání LDAP databáze."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Zobrazit šablony"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
-msgstr "U této volby buďte opatrní! Na tyto položky mohou existovat odkazy. Ty nemohou být instalátorem FusionDirectory přemístěny – takže pokud takové odkazy skutečně existují, v takovém případě bude nejlépe přemisťování zrušit. "
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "zobrazit uživatele, kteří nemají účet pro jakékoli služby"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
-msgstr "Přesunout označené položky do tohoto stromu"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "zobrazit uživatele s POSIX účtem"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
-msgstr "Uvedené položky jsou nyní viditelné v rozhraní FusionDirectory. Pokud to chcete u některých položek změnit, pak je jednoduše označte a klikněte na Přemístit."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "zobrazit uživatele s e-mail účtem"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Náhled toho, co s vybranými položkami stane po migraci, lze získat z LDIFu po kliknutí na 'zobrazit změny'."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "zobrazit uživatele se Samba účtem"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Zobrazit změny"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Během kontroly LDAPu bude zjišťováno, zda zde existují případné běžně se vyskytující nedostatky, na které lze narazit při přechodu na správu LDAPu pomocí FusionDirectory. Pro docílení bezproblémového chodu služeb bude dobré odstranit níže uvedené problémy."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr "Toto zahrnuje všechna ACL přiřazení na těchto uzlech. Pokud chcete vypsat seznam těchto přiřazení, zrušte toto a otevřete si objekty."
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Zkontrolovat znovu"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Pokračujte kliknutím na Smazat nebo akci zrušte kliknutím na Zrušit."
diff --git a/locale/de/fusiondirectory.po b/locale/de/fusiondirectory.po
index bd5c0ad3154568a2a7bf1bc51674d394d1a9d2d5..67197436916d8f5568d5d0bf115bb475abbae70e 100644
--- a/locale/de/fusiondirectory.po
+++ b/locale/de/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n"
@@ -17,4849 +17,4758 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Willkommen %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Referenzen"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Rolle"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr "Rolleninformation"
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr "Organisatorische Rolle"
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Informationen"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Name"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr "Name dieser Gruppe"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Beschreibung"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Beschreibung der Rolle"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Telefonnummer"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Faxnummer"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Benutzer für die Rolle hinzufügen"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Gruppe"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr "POSIX-Gruppeninformation"
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr "POSIX-Gruppe"
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr "POSIX-Benutzergruppe"
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr "Kurze Beschreibung dieser Gruppe"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Erzwinge GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr "GID-Wert für diese Gruppe erzwingen"
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr "GID-Wert für diese Gruppe"
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Gruppenmitglieder"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "System-Vertrauen"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Vertrauens-Modus"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr "Art der Authorisierung für diese Hosts"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "deaktiviert"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "Vollzugriff"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "Zugriff auf diese Hosts erlauben"
-
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-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:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Warnung"
-
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Wartezeit für Sperre abgelaufen. Ignoriere Sperre!"
-
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr "Unbekannter Typ: %s"
-
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Objektgruppe"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr "Objektgruppeninformation"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Bevorzugte Sprache"
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Zusammengefasste Objekte"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Sprachauswahl"
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr "Objektmitglied dieser Gruppe"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Dieser Schritt erlaubt es Ihnen, Ihre bevorzugte Sprache auszuwählen."
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Language.inc:62
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Liste der Gruppen"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Aktionen"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Anlegen"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Bearbeiten"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Entfernen"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr "Gruppen und Rollen"
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr "Gruppen und Rollen verwalten"
-
-#: 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 "Rolleneigenschaften bearbeiten"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "POSIX-Eigenschaften bearbeiten"
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr "Benutzergruppen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Primäre Gruppen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr "Organisatorische Rollen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr "Anwendungsgruppen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Mail-Gruppen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Samba-Gruppen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr "Servergruppen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr "Gruppen von Arbeitsstationen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr "Windows-Gruppen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr "Gruppen von Terminals anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr "Druckergruppen anzeigen"
-
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr "Telefongruppen anzeigen"
-
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Domänen-Komponente"
-
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr "Domänenkomponente"
-
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Abteilung"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Abteilungen"
-
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "Abteilung"
-
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr "Name von %s"
-
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr "Ein Name für diesen %s"
-
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
-msgstr "Kurze Beschreibung von diesem %s"
-
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Kategorie"
-
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
-msgstr "Kategorie von diesem %s"
-
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Verwalter"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automatisch"
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
-msgstr "Verwalter von diesem %s"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "PHP Modul- und Erweiterungsprüfung"
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Ort"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
+msgstr "PHP-Einrichtungskonfiguration (<a href=\"?info\" target=\"_blank\">Information anzeigen)</a>)"
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Land"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Installationsprüfung"
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Land"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Grundlegende Überprüfungen der PHP-Version und Erweiterungen."
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Adresse"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Prüfe PHP-Version"
 
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "A postal address for this %s"
-msgstr "Eine postalische Anschrift für diesen %s"
-
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Telefon"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Telefonnummer"
-
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+msgid "PHP must be of version %s or above."
+msgstr "PHP muss in Version %s oder höher vorliegen."
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Bitte aktualisieren Sie auf eine unterstützte Version."
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Abteilungen verwalten"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory benötigt dieses Modul um mit Ihrem LDAP-Server zu kommunizieren."
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr ""
-
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Benutzer und Gruppen"
-
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Standort"
-
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr "Ort"
-
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr "Land"
-
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Domäne"
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory benötigt dieses Modul für internationalisierte Schnittstellen."
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr "Domäne"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory benötigt dieses Modul um mit den unterschiedlichen Arten von Servern und Protokollen zu kommunizieren."
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Liste der Abteilungen"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory benötigt dieses Modul für die Sambaintegration."
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organisation"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory benötigt entweder 'mhash' oder das 'sha1' Modul um SSHA-Verschlüsselung nutzen zu können."
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr "Organisation"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory benötigt dieses Modul um mit einem IMAP-Server zu kommunizieren."
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Liste der Benutzer"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Nachname"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory benötigt dieses Modul um Unicode-Zeichenketten zu verwalten."
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Vorname"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "Imagick"
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Kennung"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory benötigt diese Erweiterung um Bilder zu verarbeiten."
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Benutzer"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "Komprimierungs-Modul"
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
-msgstr "Aus Vorlage"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory benötigt diese Erweiterung um Snapshots zu verwalten."
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Vorlage"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "register_globals ist ein PHP-Mechanismus, welcher alle globalen Variablen für Skripte direkt zugänglich macht. Dies kann ein Sicherheitsrisiko sein."
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Benutzer sperren"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Suchen Sie nach 'register_globals' in Ihrer php.ini und setzen Sie es auf 'Off'."
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Benutzer entsperren"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP verwendet diese Einstellungen für den Garbage Collector, um alte Sessions zu entfernen."
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Vorlage anwenden"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Wenn Sie diesen Wert auf einen Tag setzen, wird dies vermeiden, dass Sie die Sitzung und den zugehörigen Cookie verlieren, bevor diese tatsächlich ihre Gültigkeit verlieren."
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Neuen Benutzer aus Vorlage"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Suchen Sie in Ihrer php.ini nach 'session.gc_maxlifetime' und setzen Sie es auf 84600 oder höher."
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Benutzer bearbeiten"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Aus"
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "Um FusionDirectory ohne Probleme benutzen zu können, muss die Option session.auto_start in Ihrer php.ini auf 'Off' gestellt werden."
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Benutzer entfernen"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Suchen Sie in Ihrer php.ini nach 'session.auto_start' und setzen Sie es auf 'Off'."
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Benutzer"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr "FusionDirectory benötigt mindestens 128MB Arbeitsspeicher. Wird dieser Wert unter dieses Limit gesetzt, kann dies unreproduzierbare Fehler hervorrufen. Erhöhen Sie dies für größere Installationen."
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Benutzer verwalten"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr "Suchen nach 'memory_limit' in Ihrer php.ini und setzen auf '128M' oder höher."
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Diese Einstellung beeinflusst die Verarbeitung der Ausgabe. Stellen Sie diese auf 'off', um die Leistung zu erhöhen."
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Berechtigung"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Suchen Sie in Ihrer php.ini nach 'implicit_flush' und setzen Sie es auf 'Off'."
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Konto-Sperrung"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "Die Ausführungszeit sollte mindestens 30 Sekunden betragen."
 
-#: plugins/admin/users/class_userManagement.inc:188
-#, php-format
+#: setup/class_setupStep_Checks.inc:191
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
-msgstr ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Suchen Sie in Ihrer php.ini nach 'max_execution_time' und setzen Sie es auf '30' oder höher."
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Konto aktivieren"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Erhöhen Sie die Sicherheit Ihres Servers, indem Sie expose_php auf 'off' setzen. PHP wird in dieser Einstellung keine Informationen über Ihren laufenden Server senden."
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Konto deaktivieren"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Suchen Sie in Ihrer php.ini nach 'expose_php' und setzen Sie es auf 'Off'."
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
-msgstr "Benutzerkonto"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Erhöhen Sie die Leistung des Servers, indem sie magic_quotes_gpc auf 'off' stellen."
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
-msgstr "Benutzerkontoinformation"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Suchen Sie in Ihrer php.ini nach 'zend.ze1_compatibility_mode' und setzen Sie es auf 'Off'."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Keine ACL-Einstellungen für diese Kategorie"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Willkommen"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
-msgstr "Enthält ACL für diese Objekte: %s"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Willkommen im FusionDirectory Einrichtungsassistent"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "ACL Kategorie bearbeiten"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Die Willkommensnachricht"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
-msgstr "Entfernen"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "ACL-Kategorie zurücksetzen"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Migrieren"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Liste verfügbarer ACL-Kategorien"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "LDAP-Inspektion"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Alle Objekte im aktuellen Teilbaum"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Analysieren Sie Ihr aktuelles LDAP nach Kompatibilität mit FusionDirectory"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "lesen"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Prüfe Objekt-Klassen des Wurzelobjektes"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "schreiben"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Prüfe Berechtigungen auf die LDAP-Datenbank"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objekt"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Prüfe auf unsichtbare Benutzer"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Erweiterte Einstellungen anzeigen/ausblenden"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Prüfe auf Superadministrator"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Erstelle Objekte"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Objekte verschieben"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Prüfe auf Benutzer ausserhalb des Benutzerbaums"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Objekte entfernen"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Prüfe auf Gruppen ausserhalb des Gruppenbaums"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Berechtigungen für Eigentümer einräumen"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Prüfe auf unsichtbare Abteilungen"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Vollständiges Objekt"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Prüfe auf doppelte UID Nummern"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "ACL-Rollen"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr "ACL-Rollenverwaltung"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "LDAP-Abfrage fehlgeschlagen."
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Enthält Einstellungen für diese Objekte: %s"
-
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Zugriffssteuerungsrollen"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Fehlgeschlagen"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "ACL Rolle"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "Fehlende FusionDirectory Objektklasse '%s'!"
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr "Name für diese Rolle"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Bitte überprüfen Sie Ihre Installation."
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr "Kurze Beschreibung von dieser Rolle"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "Die strukturelle Objekt-Typ Ihres Wurzel-Objektes kann nicht konvertiert werden. Bitte fügen Sie die Objekt-Klasse '%s' manuell hinzu."
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr "Zugriffssteuerungsrollen"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "LDAP-Fehler"
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Warnung"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "%s Benutzer(innen) gefunden, die nicht in FusionDirectory sichtbar sein werden oder unvollständig sind."
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr "Benutzermigration"
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Migrationsfehler"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr "ACL-Zuordnungen"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
+msgstr "Kann Eintrag \"%s\" nicht migrieren:"
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "ACL-Zuordnung"
-
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr "Zugriffssteuerungsrollen-Zuordnungsdialog"
-
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Modus"
-
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr "Unterbaum"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Anlegen"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr "Nur Basis"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Benutzer"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr "Anzuwendende Rolle"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Gruppen"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr "Für alle Benutzer"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "Es gibt kein FusionDirectory Administratorkonto innerhalb Ihres LDAP."
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr "Diese ACL für alle LDAP-Benutzer übernehmen"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr "Gibt alle Rechte auf alle Objekte"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Mitglieder"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Fehler"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr "ACL-Zuordnung"
-
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr "Zugriffssteuerungsrollen-Zuordnung"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr "Einige Standard-ACL-Rollen fehlen"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr "Zuordnungen"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr "ACL-Rollenzuordnungen für diese Basis"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr "Kann ACL-Rolle \"%s\" nicht hinzufügen:"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: setup/class_setupStep_Migrate.inc:1084
 #, php-format
-msgid "Assignments on object or subtree %s"
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr "Übersichtsseite"
-
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr "Statistiken und verschiedene Informationen"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Benutzer in den konfigurierten Benutzerbaum verschieben"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr "Statistiken"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr "Eintrag wird verschoben von"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr "Statistiken über Benutzer"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "an"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr "Benutzerstatistiken"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Die folgenden Referenzen werden aktualisiert"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr "Gruppenstatistiken"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Es wurden %s Gruppen ausserhalb des konfigurierten Baums '%s' gefunden."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr "Abgelaufene Konten"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr "Gruppen in den konfigurierten Gruppenbaum verschieben"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Passwortmethode"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Fand %s Abteilungen, die nicht in FusionDirectory sichtbar sein werden."
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Zu verwendende Passworthash-Methode"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Passwort"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Passwort (Leer lassen wenn es nicht geändert werden soll)"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Passwort Wiederholung"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr "Gleiches Passwort wie oben, um Fehler zu vermeiden"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Name des Standortes"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Persönliche Informationen"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Nachname"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "Verbindungs-URI"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr "Nachname von diesem Benutzer"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Vorname"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "TLS-Verbindung"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr "Vorname von diesem Benutzer"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
-msgstr "Kurze Beschreibung des Benutzers"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Basis"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr "Bild"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr "Die LDAP-Verzeichnisbasis"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr "Der Avatar für diesen Benutzer"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Authentisierung"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr "Geschäftliche Adresse"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "Administrator-DN"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Zimmer-Nr."
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Administrator-Passwort:"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Raumnummer"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr "Geschäftliche Telefonnummer"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Status"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Mobiltelefon"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Momentaner Status"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr "Geschäftliche Mobiltelefonnummer"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Pager"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "LDAP-Einrichtung"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Einrichten der LDAP-Verbindung"
+
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Dieser Dialog leistet die grundlegende Konfiguration der LDAP-Konnektivität für FusionDirectory."
+
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "Anonyme Anmeldung an server '%s' ist fehlgeschlagen!"
+
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "Verbindung als Benutzer '%s' ist fehlgeschlagen!"
+
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Wiederholen"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr "Geschäftliche Faxnummer"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "Verbindung als anonymer Benutzer zu Server '%s' war erfolgreich."
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Homepage"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Aktualisieren"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Bitte geben Sie Ihren Benutzer und das zugehörige Passwort ein!"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr "Kontoinformation"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "Verbindung als Benutzer '%s' zu Server '%s' war erfolgreich!"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Bevorzugte Sprache"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Speichern"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr "Passwort des Benutzers"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Abschluß - Schreiben der Konfigurationsdatei"
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr "Persönliche Kontaktinformation"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Schreibe Konfigurationsdatei"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Anzeigename"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Ihre Konfigurationsdatei ist momentan für jeden lesbar. Bitte ändern Sie die Zugriffsrechte!"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr ""
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Die Konfiguration ist momentan nicht lesbar oder existiert nicht."
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Nach dem Herunterladen und dem Plazieren der Datei unter %s, bitte vergewissern Sie sich dass der Benutzer unter dem der Webserver läuft, in der Lage ist %s zu lesen. Anderen Nutzern sollte dies nicht möglich sein."
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Private Adresse"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Einrichtungsfehler"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Privat-Telefon"
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Abgeschlossen"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Telefonnummer (privat)"
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Vor"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Angabe zur Organisationseinheit"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Interner Fehler"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Titel"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Protokollieren fehlgeschlagen: %s"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "Der angegebene Objekt-Typ ist leer oder ungültig!"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Abteilungs-Nr."
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "unkonfiguriert"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Abteilungsnummer"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Filter Fehler"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Angestellten-Nr."
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "Der Filter ist unvollständig!"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Personalnummer"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Berechtigung"
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Anstellungsart"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Berechtigungsfehler"
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr ""
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Ihnen ist es nicht erlaubt, einen Snapshot für %s zu erstellen."
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr ""
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Ihnen ist es nicht erlaubt, einen Snapshot für %s wiederherzustellen."
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/class_management.inc:679
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr ""
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "Es wurde keine TAB-Definition für '%s' in der Konfigurationsdatei gefunden. Kann keine Plugin-Instanz erzeugen!"
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
-msgstr "Passwörter ist im Verlauf alter Passwörter"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Wurzel"
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
-msgstr "Bestehender Wert das Passworts wurde nicht geändert"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Übertragen"
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Sie müssen das aktuelle Passwort eingeben, um fortfahren zu können."
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Auf"
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr ""
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Ab"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Neues Passwort"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
+msgstr "Aufsteigend sortieren"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Das alte und neue Passwort sind sich zu ähnlich."
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
+msgstr "Absteigend sortieren"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Das Passwort, welches Sie als 'Neues Passwort' eingegeben haben, ist zu kurz."
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Alle auswählen"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "Das Passwort beinhaltet möglicherweise problematische Unicode-Zeichen!"
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "Angelegt von"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Gehe zur Wurzel-Abteilung"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Benutzer POSIX-Einstellungen bearbeiten"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Eine Abteilung nach oben"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Basisverzeichnis"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "Der Pfad zum Heimatverzeichnis für diesen Benutzer"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Heimat"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Liste neu laden"
+
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Aktionen"
+
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Kopieren"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr "Welche Shell soll verwendet werden, wenn dieser Benutzer sich einloggt"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Ausschneiden"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Primäre Gruppe"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Einfügen"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
-msgstr "Primäre Gruppe für diesen Benutzer"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Diesen Eintrag ausschneiden"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Status"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Diesen Eintrag kopieren"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
-msgstr "Status dieses Benutzer unixkontos"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Abzug wiederherstellen"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
-msgstr "Benutzer-/Gruppenkennung erzwingen"
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Liste exportieren"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
-msgstr "Benutzerkennungs- und Gruppenkennungswerte für diesen Benutzer erzwingen"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Abzug wiederherstellen"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
-msgstr "Benutzerkennung"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Snapshot erstellen"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
-msgstr "Benutzerkennwert für diesen Benutzer"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Erstelle einen neuen Snapshot dieses Objekts"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr "Gruppenkennung"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Schwerer Fehler"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr "Gruppenkennwert für diesen Benutzer"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "in"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Gruppenmitgliedschaft"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "in Zeile"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Konto"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "XML-Fehler"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "Benutzer muss beim ersten Anmelden sein Passwort ändern"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "Kann das Passwort nicht ändern, unbekannter Nutzer '%s'"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
+#: include/password-methods/class_password-methods-sasl.inc:85
 msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
-msgstr ""
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Konfigurationsfehler"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
-msgstr ""
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Seite"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr "Verzögerung bevor die Passwortänderung erzwungen wird (Tage)"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "Kein PDF-Export möglich: FPDF-Bibliothek ist nicht installiert."
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
-msgstr "Der Benutzer wird gezwungen werden, sein Passwort nach dieser Anzahl von Tagen zu ändern (Leer lassen zum Deaktivieren)"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr "Passwort Ablaufdatum"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr "Datum nach dem dieses Benutzerpasswort ablaufen wird (leer lassen zur Deaktivierung)"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "Der angeforderte Kanal existiert nicht! Bitte benachrichtigen Sie Ihren Administrator."
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr "Verzögerung von Inaktivität bevor der Benutzer deaktiviert wird (Tage)"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Alle abbrechen"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr "Maximale Verzögerung der Inaktivität nach Passwortablauf bevor der Benutzer deaktiviert wird (leer lassen zum Deaktivieren)"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Kann nicht einfügen"
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr "Verzögerung für Benutzerwarnung vor Passwortablauf (Tage)"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Kennung"
 
-#: plugins/personal/posix/class_posixAccount.inc:184
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Vorlage"
+
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
+msgstr ""
+
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Name der Vorlage"
+
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "Schwerer Fehler: keine Klassenfundorte definiert - bitte führen Sie '%s' aus, um das Problem zu beheben"
+
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr "Der Benutzer wird diese Anzahl an Tagen vorher gewarnt, bevor sein Passwort aufläuft (leer lassen zum Deaktivieren)"
+"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"
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Nur diesem Benutzer erlauben, dieser Liste von Hosts zu verbinden"
+#: include/functions.inc:512
+#, 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'."
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "unkonfiguriert"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automatisch"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Authentifizierungsfehler"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "abgelaufen"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "Nachfrist aktiv"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Fehler beim Setzen einer Sperre. Bitte kontaktieren Sie die Entwickler!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "aktiv"
+#: include/functions.inc:678
+#, 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!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "Passwort abgelaufen"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "Der LDAP-Server meldete: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "Passwort kann nicht geändert werden"
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Die Größenbeschränkung von %d Einträgen ist überschritten!"
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:1132
 #, php-format
-msgid "Group of user %s"
-msgstr "Gruppe des Benutzers %s"
+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"
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr "Gruppen und Rollen des Benutzers bearbeiten"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Konfigurieren"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr "Gruppenmitgliedschaft"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "unvollständig"
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr "Rollenmitgliedschaft"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Trotzdem Fortsetzen"
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr "Plugin-Konfiguration"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Trotzdem bearbeiten"
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr "FusionDirectory Plugin-Konfiguration"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr "Sie bearbeiten gerade den/die LDAP Eintrag/Einträge %s"
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Objektgruppen"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Einträge pro Seite"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr "OGroup RDN"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Filter anwenden"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr "Zweig in welchem die Objektgruppen gespeichert werden"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr "%sB"
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr "%sKiB"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr "Frage nach Passwort erzwingen"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr "%sMiB"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr ""
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr "%sGiB"
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Konfiguration"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr "%sTiB"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr "FusionDirectory Konfiguration"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
+msgstr "%sPiB"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
+msgstr "%sEiB"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Aussehen und Verhalten"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
+msgstr "%sZiB"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Sprache"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
+msgstr "%sYiB"
 
-#: plugins/config/class_configInLdap.inc:91
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+
+#: include/functions.inc:2267
+#, php-format
 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 "Sprache der Anwendung. Wenn 'automatisch' gesetzt wurde oder nicht verfügbar, wird die vom Browser nachgefragte verwendet. Diese Einstellung kann pro Nutzer überschrieben werden."
+"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."
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Aussehen"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Kann nicht in Revisions-Datei schreiben!"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr "Zu verwendendes Thema"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "Kann nicht von Revisionsdatei lesen!"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Zeitzone"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr "'nextIdHook' ist nicht verfügbar. Benutze Standardbasis!"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr "Zu verwendende Zeitzone"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "LDAP-Warnung"
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr "Schemaeinrichtung"
+#: include/functions.inc:2559
+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!"
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr "Aktiviert Schema-Überprüfung während des Logins."
-
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Passworteinstellungen"
-
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr "Stadard Passworthash"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr "Standard hash, der verwendet werden soll"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr "Standardhash erzwingen"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr "Verwendung des Standard-Passworthashs erzwingen"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Minimale Passwortlänge"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr "Minimale Länge der Benutzerpasswörter"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr "Passwort Minimallänge unterscheidet sich"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Verfügbare Klasse(n)"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr "Mindestanzahl der unterschiedlichen Buchstaben vom letzten Passwort"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Verwende ablaufende Konten"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
+#: include/functions.inc:2645
 msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr "Aktiviert shadow Attributtests während der Anmeldung in FusionDirectory und erzwingt eine Passworterneuerung oder Kontensperrung"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr "SASL Realm"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr "SASL Exop"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "Konnte keine freie ID allozieren:"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr "Attribut welchen im userPasswort Attribut gespeichert werden soll"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "unbekannte idAllocation-Methode!"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr "Kerneinstellungen"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "%sPoolMin >= %sPoolMax!"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Zusammenfassung in Listen anzeigen"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "sambaUnixIdPool ist nicht eindeutig!"
 
-#: plugins/config/class_configInLdap.inc:162
-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 "Bestimmt, ob eine Statusanzeige am Rande der Listen gezeigt werden soll, die eine kurze Zusammenfassung von Typ und Anzahl der Elemente in der Liste zeigt."
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "keine ID verfügbar!"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr "Locking bearbeiten"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "maximale Anzahl von Versuchen abgelaufen!"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr "Prüfen ob ein Eintrag, der momentan bearbeitet wird, außerhalb von FusionDirectory zwischenzeitlich bearbeitet wurde."
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Konnte keine freie ID allozieren!"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr "Logging aktivieren"
+#: include/functions.inc:3321
+#, 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"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr "Ereignisloggins auf Seiten von FusionDirectory."
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Keine Objekte dieser Kategorie"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr "LDAP Größenlimit"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Bitte beheben Sie obigen Fehler und laden die Seite neu."
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr "Definiert die Anzahl der Einträge, die standardmäßig von LDAP geholt werden sollen."
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr "Die Zeitzoneneinstellung \"%s\" in Ihrer Konfiguration ist nicht gültig."
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Anmeldung und Sitzung"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "XML-Fehler in der Datei fusiondirectory.conf: %s in Zeile %d"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Anmeldeattribut"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr "Welches LDAP Attribut soll als Loginname während des Logins verwendet werden."
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Kann nicht mit dem LDAP-Server verbinden. Bitte benachrichtigen Sie den Administrator."
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Erzwinge verschlüsselte Verbindungen"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
+#: include/class_config.inc:886
+#, php-format
 msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr "Aktiviert PHP-Sicherheitsprüfungen zur Erzwingung des verschlüsselten Zugangs (https) zur Webschnittstelle."
+"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."
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Bei unverschlüsselten Verbindungen warnen"
+#: include/class_config.inc:899
+#, 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'."
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr "Zeigt dem Benutzer eine Warnung  wenn http anstelle von https verwendet wird."
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Alle Kategorien"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Lebensdauer der Sitzung"
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Mein Konto"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Auswählen um Objekte des Typs '%s' aufzulisten."
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Wählen Sie dies um Objekte aufzulisten die '%s' enthalten."
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Auswählen um Objekte des Typs '%s' aufzulisten"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Wählen Sie diese Option um auch in Teilbäumen zu suchen"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Suche in Teilbäumen"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Dieses objekt wird gelöscht!"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Dieses '%s'-Objekt wird gelöscht!"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr "Schnappschüsse"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Dieses Objekt wird gelöscht: %s"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Snapshots ermöglichen"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Dieses '%s'-Objekt wird gelöscht: %s"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr "Dies ermöglicht es Ihnen, gewisse Stati von Einträgen zu speichern und diese später wieder herzustellen."
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Dieses Objekt wird gelöscht:"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Basis für Snapshots"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Dieses '%s'-Objekt wird gelöscht:"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr "Die Basis wo Snapshots innerhalb des LDAP gespeichert werden sollen."
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Diese Objekte werden gelöscht: %s"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr "SSL"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Diese '%s'-Objekte werden gelöscht: %s"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr "Schlüsselpfad"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Sie sind nicht berechtigt dieses Objekt zu löschen!"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Sie sind nicht berechtigt dieses Objekt zu löschen:"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr "Zertifikatspfad"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Sie sind nicht berechtigt dieses Objekte zu löschen:"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Sie sind nicht berechtigt diese Objekt anzulegen!"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr "CA-Zertifikatspfad"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Sie sind nicht berechtigt dieses Objekt anzulegen:"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Sie sind nicht berechtigt diese Objekte anzulegen:"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr ""
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Sie sind nicht berechtigt dieses Objekt zu verändern!"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "System"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Sie sind nicht berechtigt dieses Objekt zu öffnen!"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Sie sind nicht berechtigt dieses Objekt zu öffnen:"
+
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Sie sind nicht berechtigt diese Objekte zu öffnen:"
+
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Sie sind nicht berechtigt dieses Objekt zu verschieben!"
+
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Sie sind nicht berechtigt dieses Objekt zu verschieben:"
+
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Sie sind nicht berechtigt diese Objekte zu verschieben:"
+
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Verbindungs-Information"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Port"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Konnte nicht zur %s Datenbank verbinden!"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Kann die Datenbank %s nicht auswählen!"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Kein Server für %s definiert!"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Konnte %s Datenbank nicht abfragen!"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Ablage für Personen und Gruppen"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Das Feld '%s' enthält ein reserviertes Schlüsselwort!"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "DN-Attribut für Personen"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "Das als '%s'-Erweiterung angegebene Kommando für Modul '%s' existiert nicht!"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr "Zu verwendendes Attribut zu Beginn des Benutzers dn"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "'%s'-Kommando ist ungültig!"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr "CN-Muster"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "'%s' Kommando für Modul %s ist ungültig!"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr ""
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "'%s' Kommando (%s) ist ungültig!"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr "Strikte Namenspolicy"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "'%s' Kommando (%s) für Modul %s ist ungültig!"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr ""
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Kann '%s' Kommando nicht ausführen!"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr ""
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Kann '%s' Kommando für Modul %s nicht ausführen!"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr ""
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "Kann '%s' Kommando (%s) nicht ausführen!"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr "Nachster id hook"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Kann '%s' Kommando (%s) für Modul %s nicht ausführen!"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr ""
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Der Wert für '%s' ist zu groß!"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr "Basisnummer für Benutzerkennung"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "'%s' muss kleiner sein als %s!"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr "Wo mit der Suche nach einer neuen freien user id gestartet werden soll."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Der Wert für '%s' ist zu kein!"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr "Basisnummer für Gruppenkennung"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "'%s' muss größer oder gleich %d sein!"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr "Wo nach der Suche nach einer neuen freien group-ID geschaut werden soll."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "'%s' hängt von '%s' ab - bitte geben Sie beide Werte an!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr "Users RDN"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Es existiert bereits ein Eintrag mit diesem '%s' Attribut im System!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr ""
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
+msgstr "Der Eintrag '%s' verwendet bereits dieses Attribut '%s'!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr "Groups RDN"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Das Pflicht-Feld '%s' ist leer!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr "Der Zweig in welchem Gruppen gespeichert werden."
+#: include/class_msgPool.inc:435
+msgid "Example:"
+msgstr "Beispiel:"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr ""
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
+msgstr "Das Feld '%s' enthält ungültige Zeichen"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr ""
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "'%s' ist nicht erlaubt:"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Id-Zuweisungsmethode"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "'%s' sind nicht erlaubt!"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr ""
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Fehlenden %s PHP-Erweiterung!"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Traditionell"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr "Samba unix id pool"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Anwenden"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr ""
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Speichern"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "%s hinzufügen"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Entfernen"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr ""
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "%s löschen"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Bearbeiten..."
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "%s bearbeiten..."
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Zurück"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Dieses Konto besitzt keine gültigen %s-Einstellungen."
 
-#: plugins/config/class_configInLdap.inc:377
+#: include/class_msgPool.inc:582
+#, php-format
 msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Dieses Konto besitzt aktivierte %s-Einstellungen. Sie können diese durch einen Klick auf die untere Schaltfläche deaktivieren."
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Debugging"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Dieses Konto besitzt aktivierte %s-Erweiterungen. Um sie zu deaktivieren, müssen Sie zunächst die %s Einstellungen entfernen!"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr "Fehler anzeigen"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Dieses Konto hat keine %s-Einstellungen aktiviert. Sie können Sie durch einen Klick auf die Schaltfläche aktivieren."
 
-#: plugins/config/class_configInLdap.inc:387
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
 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 "Zeigt PHP-Fehler in dem oberen Teil des Bildschirms. Dies sollte in produktiven Einrichtungen deaktiviert werden, da einige Passwörter enthalten sein könnten."
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Dieses Konto besitzt aktuell keine aktivierten %s-Einstellungen. Um sie zu aktivieren, müssen Sie zunächst die %s Erweiterungen hinzufügen!"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Maximale LDAP Abfragedauer"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "%s Einstellungen hinzufügen"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr "Anhalten von LDAP-Aktionen wenn keine Antwort innerhalb der angegeben Anzahl von Sekunden erfolgt."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "%s Einstellungen entfernen"
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Protokolliere LDAP-Statistiken"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Betätigen sie den 'Bearbeiten'-Schalter unten um Informationen in diesem Dialog zu ändern"
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr "LDAP Timingstatistiken mit dem Syslog verfolgen. Dies kann helfen, Indexproblem oder schlechte Suchfilter zu finden."
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Januar"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Debug Level"
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Februar"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr "Gewisse Informationen bei jedem Seitenladen anzeigen."
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "März"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "April"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr "Hooks die aufgerufen werden wenn spezifische Aktionen passieren"
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Mai"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr "Reiter"
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Juni"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr "Der Tab, der diesen hook betrifft"
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Juli"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "mode"
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "August"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr "Wann dieser Befehl aufgerufen wird"
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "September"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr "cmd"
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Oktober"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr "Der zu aufrufende Befehl"
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "November"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Hooks"
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Dezember"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Montag"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr "Verfügbare Shells"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr "Verfügbare POSIX-Shells für FD-Benutzer."
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr "ACL-Reiter auf allen Objekten anzeigen"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Freitag"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Samstag"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr ""
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "Datenbankoperation fehlgeschlagen!"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automatisch"
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "Lese-Operation"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Passwortwiederherstellung"
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "Hinzufügeoperation"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Einstellung für die Passwort Wiederherstellung"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "Änderungs-Operation"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Passwortwiederherstellungseinstellungen"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "Lösch-Operation"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Passwortwiederherstellung aktivieren"
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "Such-Operation"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "Authentifizierung"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Absender Emailadresse"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "LDAP %s fehlgeschlagen!"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "Emailadresse von der aus Mails verschickt werden"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "LDAP-Operation fehlgeschlagen"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Linkgültigkeit (Minuten)"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objekt"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr "Anzahl der Minuten bevor ein Wiederherstellungslink abläuft"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "Übertragung fehlgeschlagen!"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr "Salt für Tokens"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Übertragung fehlgeschlagen: %s"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Nur eine Sicherheitsmaßnahme, Sie können egal was hier hineinschreiben, selbst zufällige Buchstaben"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "Kommunikationsfehler mit dem Infrastruktur Dienst!"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Erlaube die Nutzung von alternativen Adressen"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Kommunikationsfehler mit dem Infrastruktur Dienst: %s"
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Benutzer werden auch in der Lage sein, eine ihrer alternativen Adressen zur Wiederherstellung ihres Passworts, einzugeben"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "Dieses '%s' ist noch in Gebrauch dieses Objekts: %s"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "Erste Email"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "Dieses '%s' ist noch in Benutzung."
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Betreff"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "Dieses '%s' ist noch in Gebrauch dieser Objekte: %s"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Betreff der ersten Email"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Die Datei '%s' existiert nicht!"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Password recovery link"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Kann Datei '%s' nicht zum Lesen öffnen!"
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_msgPool.inc:796
 #, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr "Body (zuerst %s ist Login, zweiter ist Link)"
+msgid "Cannot open file '%s' for writing!"
+msgstr "Kann Datei '%s' nicht zum Schreiben öffnen!"
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_msgPool.inc:806
 #, php-format
 msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
-msgstr "Body der ersten Email, die verschickt wird wenn der Benutzer nach einem neuen Passwort fragt. Benutzen Sie %s für den Login und den Wiederherstellungslink."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "Der Wert für '%s' ist momentan nicht konfiguriert oder ungültig. Bitte prüfen Sie Ihre Konfigurationsdatei!"
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_msgPool.inc:816
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Hallo, \n\nHier sind Ihre Informationen :\n- Login : %s\n- Link : %s\n\nDieser Link ist nur 10 Minuten gültig."
+msgid "Cannot delete file '%s'!"
+msgstr "Kann Datei '%s' nicht löschen!"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Zweite Email"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "Kann den Ordner '%s' nicht anlegen!"
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Betreff der zweiten Email"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "Kann den Ordner '%s' nicht löschen!"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Passwortwiederherstellung erfolgreich"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Prüfe auf %s-Unterstützung"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_msgPool.inc:856
 #, php-format
-msgid "Body (%s is login)"
-msgstr "Body (%s ist Login)"
+msgid "Install and activate the %s PHP module."
+msgstr "Installieren und aktivieren Sie das %s PHP-Modul."
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_msgPool.inc:866
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr "Body der zweiten Email, die verschickt wird um zu bestätigen, dass das Passwort geändert wurde. Benutzen Sie %s für den Benutzerlogin."
+msgid "Install and activate the %s Pear module."
+msgstr "Installieren und aktivieren des %s Pear Moduls."
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_msgPool.inc:876
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Hallo,\n\nIhr Passwort wurde geändert.\nIhr Login ist immer noch %s."
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "Kann Klasse '%s' nicht initialisieren. Vielleicht fehlt ein Plugin in Ihrer FusionDirectory Installation?"
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
-msgstr "Übersichtsseitenkonfiguration"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr "Die angegebene Basis ist ungültig. Der alte Wert wurde wieder hergestellt!"
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr "Übersichtsseitennamensschema"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr "Stellenzahl"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Zeitstempel"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr "Anzahl der Stellen nach dem Präfix"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr "Präfixe"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
+
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr "Wiederherstellen"
+
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
-msgstr "Anzahl an Tagen"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
+msgstr "Schnappschüsse"
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Plugins"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Datei"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr "Pluginkonfiguration"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Zeile"
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Auf"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "PHP Fehler"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Ab"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "Klasse"
+
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "Funktion"
+
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "statisch"
+
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "Methode"
+
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Ablaufverfolgung"
+
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Typ"
+
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argumente"
+
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "Der PHP-Interpreter meldete einen oder mehrere Fehler beim Erzeugen dieser Seite!"
+
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Bugreport an das FusionDirectory Team senden"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
-msgstr "Aufsteigend sortieren"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Fehlerbericht senden"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
-msgstr "Absteigend sortieren"
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Informationen umschalten"
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Alle auswählen"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Leistungswarnung"
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Fehler"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+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_listing.inc:579
-msgid "created by"
-msgstr "Angelegt von"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Gehe zur Wurzel-Abteilung"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Wurzel"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "während der Arbeit mit '%s' auf dem LDAP-Server '%s'"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Eine Abteilung nach oben"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "während der Arbeit auf LDAP-Server '%s'"
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Heimat"
-
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Liste neu laden"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Übertragen"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
+msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Kopieren"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Ausschneiden"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
+msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Einfügen"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Diesen Eintrag ausschneiden"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Fehler beim Importieren von dn: '%s', bitte überprüfen Sie die LDIF-Datei ab Zeile %s!"
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Diesen Eintrag kopieren"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Bitte wählen Sie die gewünschten Einträge"
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Abzug wiederherstellen"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Name"
 
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Liste exportieren"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Beschreibung"
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Abzug wiederherstellen"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
+msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Snapshot erstellen"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
+msgstr "Rolle %s"
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Erstelle einen neuen Snapshot dieses Objekts"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
+msgstr "Gruppe %s"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Filter Fehler"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Gruppe des Benutzers"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "Der Filter ist unvollständig!"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Keine"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Berechtigungsfehler"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Unbekannt"
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
-#, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Ihnen ist es nicht erlaubt, einen Snapshot für %s zu erstellen."
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
-#, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Ihnen ist es nicht erlaubt, einen Snapshot für %s wiederherzustellen."
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Entfernen"
 
-#: include/class_management.inc:679
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "Es wurde keine TAB-Definition für '%s' in der Konfigurationsdatei gefunden. Kann keine Plugin-Instanz erzeugen!"
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "Es wurde keine Plugin-Definition gefunden um '%s' zu Initialisieren. Bitte prüfen Sie Ihre Konfigurationsdatei!"
 
-#: include/class_config.inc:156
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-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:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Konfigurationsfehler"
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "Der Lösch-Vorgang wurde durch das plugin '%s' beendet: %s"
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simpleTabs.inc:401
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "LDAP-Fehler"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Kann nicht mit dem LDAP-Server verbinden. Bitte benachrichtigen Sie den Administrator."
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
+msgstr "KiB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
+msgstr "MiB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr "GiB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
+msgstr "TiB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "Sekunden"
+
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "Minuten"
+
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "Stunden"
+
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "Tage"
+
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr "Aus Vorlage"
 
-#: include/class_config.inc:357
+#: include/simpleplugin/class_simpleManagement.inc:243
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
-msgstr ""
+msgid "%s template"
+msgstr "%s Vorlage"
 
-#: include/class_config.inc:885
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
 #, 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."
+msgid "Show %s"
+msgstr "%s anzeigen"
 
-#: include/class_config.inc:898
-#, 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/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr "KEIN LABEL"
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Alle Kategorien"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr "Vorlageneinstellungen"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Mein Konto"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr "Dies ist der Name der Vorlage"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Leistungswarnung"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-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:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Interner Fehler"
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/simpleplugin/class_simplePlugin.inc:290
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
-msgstr ""
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Fehler beim Speichern"
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "während der Arbeit mit '%s' auf dem LDAP-Server '%s'"
+msgid "There is already an entry with the same dn : %s"
+msgstr "Es gibt bereits einen Eintrag mit dem selben dn: %s"
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "während der Arbeit auf LDAP-Server '%s'"
+msgid "The entry %s is not existing"
+msgstr "Der Eintrag %s existiert nicht"
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
-msgstr ""
+msgid "%s (required)"
+msgstr "%s (benötigt)"
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
-msgstr ""
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr "Objektbasis"
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
-msgstr ""
+msgid "Cannot read uploaded file: %s"
+msgstr "Kann hochgeladene Datei nicht lesen: %s"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "Die Datei ist leer"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "Die Datei wurde nicht gefunden"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "Die Datei ist nicht lesbar"
 
-#: include/class_ldap.inc:1194
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
+msgid "%s (%d bytes)"
+msgstr "%s (%d Bytes)"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Hochladen"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Herunterladen"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Fehler beim Importieren von dn: '%s', bitte überprüfen Sie die LDIF-Datei ab Zeile %s!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr ""
 
-#: include/class_msgPool.inc:43
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Auswählen um Objekte des Typs '%s' aufzulisten."
+msgid "Invalid value for %s"
+msgstr "Ungültiger Wert für %s"
 
-#: include/class_msgPool.inc:45
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Wählen Sie dies um Objekte aufzulisten die '%s' enthalten."
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_msgPool.inc:47
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Auswählen um Objekte des Typs '%s' aufzulisten"
-
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Wählen Sie diese Option um auch in Teilbäumen zu suchen"
+msgid "An integer between %d and %d"
+msgstr "Eine Ganzzahl/Integer zwischen %d und %d"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Suche in Teilbäumen"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
+msgstr "Eine Ganzzahl/Integer größer als %d "
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Dieses objekt wird gelöscht!"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
+msgstr "Eine Ganzzahl/Integer kleiner als %d "
 
-#: include/class_msgPool.inc:69
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Dieses '%s'-Objekt wird gelöscht!"
+msgid "A float between %f and %f"
+msgstr "Ein Float zwischen %f und %f"
 
-#: include/class_msgPool.inc:74
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Dieses Objekt wird gelöscht: %s"
+msgid "A float larger than %f"
+msgstr "Ein Float größer als %f"
 
-#: include/class_msgPool.inc:76
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Dieses '%s'-Objekt wird gelöscht: %s"
+msgid "A float smaller than %f"
+msgstr "Ein Float kleiner als %f"
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Dieses Objekt wird gelöscht:"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr ""
 
-#: include/class_msgPool.inc:83
+#: include/class_plugin.inc:795
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Dieses '%s'-Objekt wird gelöscht:"
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Diese Objekte werden gelöscht: %s"
+msgid "Tab \"%s\""
+msgstr "Tab \"%s\""
 
-#: include/class_msgPool.inc:89
-#, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Diese '%s'-Objekte werden gelöscht: %s"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "Zugriffsregeln"
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Sie sind nicht berechtigt dieses Objekt zu löschen!"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Zugriffssteuerungsrollen verwalten"
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Sie sind nicht berechtigt dieses Objekt zu löschen:"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "ACL-Rollen"
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Sie sind nicht berechtigt dieses Objekte zu löschen:"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Sie sind nicht berechtigt diese Objekt anzulegen!"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Unbekannter Eintrag '%s'!"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Sie sind nicht berechtigt dieses Objekt anzulegen:"
+#: include/class_acl.inc:173
+#, php-format
+msgid "All users"
+msgstr "Alle Benutzer"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Sie sind nicht berechtigt diese Objekte anzulegen:"
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Sie sind nicht berechtigt dieses Objekt zu verändern!"
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Auf das als Kompilierverzeichnis angegegebene Verzeichnis '%s' kann nicht zugegriffen werden!"
 
-#: include/class_msgPool.inc:151
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
+msgstr ""
+
+#: html/index.php:150
+#, php-format
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"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:171
+msgid "Smarty error"
+msgstr "Smarty-Fehler"
+
+#: html/index.php:173
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Ihre FusionDirectory Sitzung ist abgelaufen!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr "Ihre IP hat sich geändert!"
+
+#: html/index.php:214
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Sie sind nicht berechtigt dieses Objekt zu öffnen!"
+#: html/index.php:217
+msgid "No session found!"
+msgstr "Keine Sitzung gefunden!"
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Sie sind nicht berechtigt dieses Objekt zu öffnen:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Sie sind nicht berechtigt diese Objekte zu öffnen:"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Sie sind nicht berechtigt dieses Objekt zu verschieben!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Bitte geben Sie einen gültigen Benutzernamen ein!"
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Sie sind nicht berechtigt dieses Objekt zu verschieben:"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Bitte geben Sie Ihr Passwort ein!"
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Sie sind nicht berechtigt diese Objekte zu verschieben:"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Bitte überprüfen Sie die Kombination von Benutzernamen und Passwort."
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Verbindungs-Information"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Das Konto ist gesperrt. Bitte benachrichtigen Sie den Administrator!"
 
-#: include/class_msgPool.inc:225
+#: html/index.php:454
 #, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Konnte nicht zur %s Datenbank verbinden!"
+msgid "No value found in HTTP header \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:245
+#: html/index.php:475
 #, php-format
-msgid "Cannot select %s database!"
-msgstr "Kann die Datenbank %s nicht auswählen!"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/index.php:485
 #, php-format
-msgid "No %s server defined!"
-msgstr "Kein Server für %s definiert!"
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:275
+#: html/index.php:547
 #, php-format
-msgid "Cannot query %s database!"
-msgstr "Konnte %s Datenbank nicht abfragen!"
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:285
+#: html/index.php:557
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Das Feld '%s' enthält ein reserviertes Schlüsselwort!"
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "Das als '%s'-Erweiterung angegebene Kommando für Modul '%s' existiert nicht!"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Ihr Browser hat Cookies deaktiviert. Bitte aktivieren Sie zunächst Cookies und laden anschliessend diese Seite neu, bevor Sie sich anmelden!"
 
-#: include/class_msgPool.inc:313
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "'%s'-Kommando ist ungültig!"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "FusionDirectory Konfiguration %s/%s ist nicht lesbar. Abgebrochen."
 
-#: include/class_msgPool.inc:315
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "'%s' Kommando für Modul %s ist ungültig!"
+msgid "Did not find an account with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:319
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "'%s' Kommando (%s) ist ungültig!"
+msgid "Found multiple accounts with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "'%s' Kommando (%s) für Modul %s ist ungültig!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Email-Adresse"
 
-#: include/class_msgPool.inc:339
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Kann '%s' Kommando nicht ausführen!"
+msgid "There is no account using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:341
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Kann '%s' Kommando für Modul %s nicht ausführen!"
+msgid "There are several accounts using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:345
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "Kann '%s' Kommando (%s) nicht ausführen!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Kann '%s' Kommando (%s) für Modul %s nicht ausführen!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Kontaktieren Sie Ihren Administrator, es gab ein Problem mit dem Mailserver"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Der Wert für '%s' ist zu groß!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr "Das Token ist nicht gültig"
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "'%s' muss kleiner sein als %s!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr "Es gab ein Problem mit dem Mailserver, Bestätigungsmail wurde nicht verschickt"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Der Wert für '%s' ist zu kein!"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "PHP-Konfiguration"
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "'%s' muss größer oder gleich %d sein!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Schwerer Fehler: Register globals ist aktiviert. FusionDirectory wird Logins verweigern sollte dies nicht von einem Administrator behoben werden."
 
-#: include/class_msgPool.inc:393
+#: html/main.php:142
+msgid "Password change"
+msgstr "Passwortänderung"
+
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Ihr Passwort ist fast abgelaufen, bitte setzen Sie ein neues!"
+
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr ""
+
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "Der verfügbare Arbeitsspeicher wird knapp!"
+
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Prüfung der Benutzer-ACLs deaktiviert"
+
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Erweiterung"
+
+#: html/main.php:290
 #, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "'%s' hängt von '%s' ab - bitte geben Sie beide Werte an!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr "Schwerer Fehler: Kann keine Plugin-Definitionen für Plugin '%s' finden ('%s' ist keine Datei)!"
 
-#: include/class_msgPool.inc:404
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Konfigurationsfehler"
+
+#: html/main.php:306
 #, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Es existiert bereits ein Eintrag mit diesem '%s' Attribut im System!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "FATAL: es wurden nicht alle POST-Variablen von PHP übertragen - bitte informieren Sie den Administrator!"
 
-#: include/class_msgPool.inc:406
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
-msgstr "Der Eintrag '%s' verwendet bereits dieses Attribut '%s'!"
+msgid "Welcome %s!"
+msgstr "Willkommen %s!"
+
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Referenzen"
+
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
+
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Benutzer POSIX-Einstellungen bearbeiten"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Basisverzeichnis"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "Der Pfad zum Heimatverzeichnis für diesen Benutzer"
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Das Pflicht-Feld '%s' ist leer!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr "Welche Shell soll verwendet werden, wenn dieser Benutzer sich einloggt"
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
-msgstr "Beispiel:"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Primäre Gruppe"
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
-msgstr "Das Feld '%s' enthält ungültige Zeichen"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr "Primäre Gruppe für diesen Benutzer"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "'%s' ist nicht erlaubt:"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr "Status dieses Benutzer unixkontos"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "'%s' sind nicht erlaubt!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr "Benutzer-/Gruppenkennung erzwingen"
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Fehlenden %s PHP-Erweiterung!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr "Benutzerkennungs- und Gruppenkennungswerte für diesen Benutzer erzwingen"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Abbrechen"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr "Benutzerkennung"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr "Benutzerkennwert für diesen Benutzer"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Anwenden"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr "Gruppenkennung"
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Speichern"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr "Gruppenkennwert für diesen Benutzer"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Hinzufügen"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Gruppenmitgliedschaft"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "%s hinzufügen"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Konto"
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "%s löschen"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "Benutzer muss beim ersten Anmelden sein Passwort ändern"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Bearbeiten..."
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "%s bearbeiten..."
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Zurück"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Dieses Konto besitzt keine gültigen %s-Einstellungen."
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr "Verzögerung bevor die Passwortänderung erzwungen wird (Tage)"
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Dieses Konto besitzt aktivierte %s-Einstellungen. Sie können diese durch einen Klick auf die untere Schaltfläche deaktivieren."
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr "Der Benutzer wird gezwungen werden, sein Passwort nach dieser Anzahl von Tagen zu ändern (Leer lassen zum Deaktivieren)"
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr "Passwort Ablaufdatum"
+
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Dieses Konto besitzt aktivierte %s-Erweiterungen. Um sie zu deaktivieren, müssen Sie zunächst die %s Einstellungen entfernen!"
+"Date after which this user password will expire (leave empty to disable)"
+msgstr "Datum nach dem dieses Benutzerpasswort ablaufen wird (leer lassen zur Deaktivierung)"
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr "Verzögerung von Inaktivität bevor der Benutzer deaktiviert wird (Tage)"
+
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Dieses Konto hat keine %s-Einstellungen aktiviert. Sie können Sie durch einen Klick auf die Schaltfläche aktivieren."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr "Maximale Verzögerung der Inaktivität nach Passwortablauf bevor der Benutzer deaktiviert wird (leer lassen zum Deaktivieren)"
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr "Verzögerung für Benutzerwarnung vor Passwortablauf (Tage)"
+
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Dieses Konto besitzt aktuell keine aktivierten %s-Einstellungen. Um sie zu aktivieren, müssen Sie zunächst die %s Erweiterungen hinzufügen!"
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr "Der Benutzer wird diese Anzahl an Tagen vorher gewarnt, bevor sein Passwort aufläuft (leer lassen zum Deaktivieren)"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "%s Einstellungen hinzufügen"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "System-Vertrauen"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "%s Einstellungen entfernen"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Vertrauens-Modus"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Betätigen sie den 'Bearbeiten'-Schalter unten um Informationen in diesem Dialog zu ändern"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr "Art der Authorisierung für diese Hosts"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Januar"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "deaktiviert"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Februar"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "Vollzugriff"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "März"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "Zugriff auf diese Hosts erlauben"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "April"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Nur diesem Benutzer erlauben, dieser Liste von Hosts zu verbinden"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Mai"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automatisch"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Juni"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "abgelaufen"
+
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "Nachfrist aktiv"
+
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "aktiv"
+
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "Passwort abgelaufen"
+
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "Passwort kann nicht geändert werden"
+
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Juli"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "August"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Wartezeit für Sperre abgelaufen. Ignoriere Sperre!"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "September"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr "Gruppe des Benutzers %s"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Oktober"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr "Gruppen und Rollen"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "November"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr "Gruppen und Rollen des Benutzers bearbeiten"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Dezember"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr "Gruppenmitgliedschaft"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Sonntag"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr "Rollenmitgliedschaft"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Montag"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Passwortmethode"
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Dienstag"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Zu verwendende Passworthash-Methode"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Passwort"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Donnerstag"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Passwort (Leer lassen wenn es nicht geändert werden soll)"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Freitag"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Passwort Wiederholung"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Samstag"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr "Gleiches Passwort wie oben, um Fehler zu vermeiden"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "Datenbankoperation fehlgeschlagen!"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Benutzer"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "Lese-Operation"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr "Benutzerkontoinformation"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "Hinzufügeoperation"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr "Benutzerkonto"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "Änderungs-Operation"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Persönliche Informationen"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "Lösch-Operation"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Nachname"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "Such-Operation"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr "Nachname von diesem Benutzer"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "Authentifizierung"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Vorname"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "LDAP %s fehlgeschlagen!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr "Vorname von diesem Benutzer"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "LDAP-Operation fehlgeschlagen"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr "Kurze Beschreibung des Benutzers"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "Übertragung fehlgeschlagen!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr "Bild"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Übertragung fehlgeschlagen: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr "Der Avatar für diesen Benutzer"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "Kommunikationsfehler mit dem Infrastruktur Dienst!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Kommunikationsfehler mit dem Infrastruktur Dienst: %s"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Ort"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "Dieses '%s' ist noch in Gebrauch dieses Objekts: %s"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Land"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "Dieses '%s' ist noch in Benutzung."
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Adresse"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "Dieses '%s' ist noch in Gebrauch dieser Objekte: %s"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr "Geschäftliche Adresse"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Die Datei '%s' existiert nicht!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Zimmer-Nr."
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Kann Datei '%s' nicht zum Lesen öffnen!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Raumnummer"
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Kann Datei '%s' nicht zum Schreiben öffnen!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Telefon"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "Der Wert für '%s' ist momentan nicht konfiguriert oder ungültig. Bitte prüfen Sie Ihre Konfigurationsdatei!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr "Geschäftliche Telefonnummer"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Kann Datei '%s' nicht löschen!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Mobiltelefon"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "Kann den Ordner '%s' nicht anlegen!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr "Geschäftliche Mobiltelefonnummer"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "Kann den Ordner '%s' nicht löschen!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Pager"
+
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Prüfe auf %s-Unterstützung"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Installieren und aktivieren Sie das %s PHP-Modul."
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr "Geschäftliche Faxnummer"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr "Installieren und aktivieren des %s Pear Moduls."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Homepage"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "Kann Klasse '%s' nicht initialisieren. Vielleicht fehlt ein Plugin in Ihrer FusionDirectory Installation?"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr "Die angegebene Basis ist ungültig. Der alte Wert wurde wieder hergestellt!"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr "Kontoinformation"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "Schwerer Fehler: keine Klassenfundorte definiert - bitte führen Sie '%s' aus, um das Problem zu beheben"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-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"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr "Passwort des Benutzers"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Schwerer Fehler"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr "Persönliche Kontaktinformation"
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Anzeigename"
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Authentifizierungsfehler"
-
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Fehler beim Setzen einer Sperre. Bitte kontaktieren Sie die Entwickler!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Private Adresse"
 
-#: include/functions.inc:678
-#, 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!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Privat-Telefon"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "Der LDAP-Server meldete: %s"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Telefonnummer (privat)"
 
-#: include/functions.inc:859
-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."
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Angabe zur Organisationseinheit"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Die Größenbeschränkung von %d Einträgen ist überschritten!"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Titel"
 
-#: include/functions.inc:1132
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 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:1149
-msgid "Configure"
-msgstr "Konfigurieren"
-
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "unvollständig"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Trotzdem Fortsetzen"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organisation"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Trotzdem bearbeiten"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Abteilung"
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr "Sie bearbeiten gerade den/die LDAP Eintrag/Einträge %s"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
+msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Einträge pro Seite"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Abteilungs-Nr."
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Filter anwenden"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Abteilungsnummer"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr "%sB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Angestellten-Nr."
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr "%sKiB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Personalnummer"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr "%sMiB"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Anstellungsart"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
-msgstr "%sGiB"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Verwalter"
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sTiB"
-msgstr "%sTiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
-msgstr "%sPiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr ""
 
-#: include/functions.inc:2123
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sEiB"
-msgstr "%sEiB"
+msgid "You must wait %d seconds before changing your password again"
+msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
-msgstr "%sZiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr "Passwörter ist im Verlauf alter Passwörter"
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
-msgstr "%sYiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr "Bestehender Wert das Passworts wurde nicht geändert"
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Sie müssen das aktuelle Passwort eingeben, um fortfahren zu können."
 
-#: include/functions.inc:2294
-#, php-format
+#: plugins/personal/generic/class_user.inc:653
 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."
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "Kann nicht in Revisions-Datei schreiben!"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Neues Passwort"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "Kann nicht von Revisionsdatei lesen!"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Das alte und neue Passwort sind sich zu ähnlich."
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr "'nextIdHook' ist nicht verfügbar. Benutze Standardbasis!"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Das Passwort, welches Sie als 'Neues Passwort' eingegeben haben, ist zu kurz."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "LDAP-Warnung"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "Das Passwort beinhaltet möglicherweise problematische Unicode-Zeichen!"
 
-#: include/functions.inc:2586
-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!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr "Statistiken über Benutzer"
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
+msgstr "Benutzerstatistiken"
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
+msgstr "Gruppenstatistiken"
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
+msgstr "Abgelaufene Konten"
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
+msgstr "Übersichtsseite"
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr "Statistiken und verschiedene Informationen"
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr "Statistiken"
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Verfügbare Klasse(n)"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Passwortwiederherstellung"
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Einstellung für die Passwort Wiederherstellung"
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Passwortwiederherstellungseinstellungen"
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Passwortwiederherstellung aktivieren"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "Konnte keine freie ID allozieren:"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Absender Emailadresse"
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "unbekannte idAllocation-Methode!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "Emailadresse von der aus Mails verschickt werden"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Linkgültigkeit (Minuten)"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "sambaUnixIdPool ist nicht eindeutig!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr "Anzahl der Minuten bevor ein Wiederherstellungslink abläuft"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "keine ID verfügbar!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr "Salt für Tokens"
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "maximale Anzahl von Versuchen abgelaufen!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Nur eine Sicherheitsmaßnahme, Sie können egal was hier hineinschreiben, selbst zufällige Buchstaben"
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Konnte keine freie ID allozieren!"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Erlaube die Nutzung von alternativen Adressen"
 
-#: include/functions.inc:3345
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Benutzer werden auch in der Lage sein, eine ihrer alternativen Adressen zur Wiederherstellung ihres Passworts, einzugeben"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "Der angeforderte Kanal existiert nicht! Bitte benachrichtigen Sie Ihren Administrator."
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "Erste Email"
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Betreff"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Name der Vorlage"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Betreff der ersten Email"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Keine Objekte dieser Kategorie"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Password recovery link"
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Datei"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr "Body (zuerst %s ist Login, zweiter ist Link)"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Zeile"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr "Body der ersten Email, die verschickt wird wenn der Benutzer nach einem neuen Passwort fragt. Benutzen Sie %s für den Login und den Wiederherstellungslink."
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "PHP Fehler"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Hallo, \n\nHier sind Ihre Informationen :\n- Login : %s\n- Link : %s\n\nDieser Link ist nur 10 Minuten gültig."
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "Klasse"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Zweite Email"
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "Funktion"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Betreff der zweiten Email"
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "statisch"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Passwortwiederherstellung erfolgreich"
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "Methode"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr "Body (%s ist Login)"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Ablaufverfolgung"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr "Body der zweiten Email, die verschickt wird um zu bestätigen, dass das Passwort geändert wurde. Benutzen Sie %s für den Benutzerlogin."
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Typ"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Hallo,\n\nIhr Passwort wurde geändert.\nIhr Login ist immer noch %s."
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argumente"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Konfiguration"
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "Der PHP-Interpreter meldete einen oder mehrere Fehler beim Erzeugen dieser Seite!"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr "FusionDirectory Konfiguration"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Bugreport an das FusionDirectory Team senden"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Fehlerbericht senden"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Aussehen und Verhalten"
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Informationen umschalten"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Sprache"
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Bitte beheben Sie obigen Fehler und laden die Seite neu."
+#: 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 "Sprache der Anwendung. Wenn 'automatisch' gesetzt wurde oder nicht verfügbar, wird die vom Browser nachgefragte verwendet. Diese Einstellung kann pro Nutzer überschrieben werden."
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Aussehen"
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr "Zu verwendendes Thema"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Zeitstempel"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Zeitzone"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr "Zu verwendende Zeitzone"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr "Schemaeinrichtung"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
-
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr "Wiederherstellen"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr "Aktiviert Schema-Überprüfung während des Logins."
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Passworteinstellungen"
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr "Stadard Passworthash"
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Seite"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr "Standard hash, der verwendet werden soll"
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr "Standardhash erzwingen"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "Kein PDF-Export möglich: FPDF-Bibliothek ist nicht installiert."
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr "Verwendung des Standard-Passworthashs erzwingen"
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Minimale Passwortlänge"
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "in"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr "Minimale Länge der Benutzerpasswörter"
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "in Zeile"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr "Passwort Minimallänge unterscheidet sich"
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "XML-Fehler"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr "Mindestanzahl der unterschiedlichen Buchstaben vom letzten Passwort"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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 ""
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Verwende ablaufende Konten"
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:144
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
+msgstr "Aktiviert shadow Attributtests während der Anmeldung in FusionDirectory und erzwingt eine Passworterneuerung oder Kontensperrung"
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
-msgstr "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
+msgstr "SASL Realm"
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Alle abbrechen"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr "SASL Exop"
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Kann nicht einfügen"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
+msgstr "Attribut welchen im userPasswort Attribut gespeichert werden soll"
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
-msgstr "Vorlageneinstellungen"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
+msgstr "Kerneinstellungen"
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
-msgstr "Dies ist der Name der Vorlage"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Zusammenfassung in Listen anzeigen"
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:162
+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 "Bestimmt, ob eine Statusanzeige am Rande der Listen gezeigt werden soll, die eine kurze Zusammenfassung von Typ und Anzahl der Elemente in der Liste zeigt."
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr "Locking bearbeiten"
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
-msgstr ""
-
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Fehler beim Speichern"
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr "Prüfen ob ein Eintrag, der momentan bearbeitet wird, außerhalb von FusionDirectory zwischenzeitlich bearbeitet wurde."
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "Es gibt bereits einen Eintrag mit dem selben dn: %s"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr "Logging aktivieren"
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "Der Eintrag %s existiert nicht"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr "Ereignisloggins auf Seiten von FusionDirectory."
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr "LDAP Größenlimit"
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Bitte wählen Sie die gewünschten Einträge"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr "Definiert die Anzahl der Einträge, die standardmäßig von LDAP geholt werden sollen."
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr "%s Vorlage"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Anmeldung und Sitzung"
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
-msgstr "%s anzeigen"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Anmeldeattribut"
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
+msgstr "Welches LDAP Attribut soll als Loginname während des Logins verwendet werden."
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
-msgstr "Rolle %s"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Erzwinge verschlüsselte Verbindungen"
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
-msgstr "Gruppe %s"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
+msgstr "Aktiviert PHP-Sicherheitsprüfungen zur Erzwingung des verschlüsselten Zugangs (https) zur Webschnittstelle."
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Gruppe des Benutzers"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Bei unverschlüsselten Verbindungen warnen"
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Keine"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr "Zeigt dem Benutzer eine Warnung  wenn http anstelle von https verwendet wird."
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Unbekannt"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Lebensdauer der Sitzung"
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
-msgstr "KiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
-msgstr "MiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
-msgstr "GiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
-msgstr "TiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "Sekunden"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "Minuten"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "Stunden"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Snapshots ermöglichen"
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "Tage"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr "Dies ermöglicht es Ihnen, gewisse Stati von Einträgen zu speichern und diese später wieder herzustellen."
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (benötigt)"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Basis für Snapshots"
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr "Die Basis wo Snapshots innerhalb des LDAP gespeichert werden sollen."
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "Eine Ganzzahl/Integer zwischen %d und %d"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
+msgstr "SSL"
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "Eine Ganzzahl/Integer größer als %d "
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
+msgstr "Schlüsselpfad"
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "Eine Ganzzahl/Integer kleiner als %d "
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Ein Float zwischen %f und %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
+msgstr "Zertifikatspfad"
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr "Ein Float größer als %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
-msgstr "Ein Float kleiner als %f"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
+msgstr "CA-Zertifikatspfad"
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "Kann hochgeladene Datei nicht lesen: %s"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "Die Datei ist leer"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "Die Datei wurde nicht gefunden"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "Die Datei ist nicht lesbar"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
-msgstr "%s (%d Bytes)"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "System"
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Hochladen"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Herunterladen"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Port"
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Basis"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
-msgstr "Objektbasis"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
-msgstr "Ungültiger Wert für %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Ablage für Personen und Gruppen"
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr "KEIN LABEL"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "DN-Attribut für Personen"
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "Es wurde keine Plugin-Definition gefunden um '%s' zu Initialisieren. Bitte prüfen Sie Ihre Konfigurationsdatei!"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr "Zu verwendendes Attribut zu Beginn des Benutzers dn"
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "Der Lösch-Vorgang wurde durch das plugin '%s' beendet: %s"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr "CN-Muster"
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
-msgstr "Die Zeitzoneneinstellung \"%s\" in Ihrer Konfiguration ist nicht gültig."
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr "Strikte Namenspolicy"
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "Zugriffsregeln"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Zugriffssteuerungsrollen verwalten"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Unbekannter Eintrag '%s'!"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr "Nachster id hook"
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Alle Benutzer"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "Kann das Passwort nicht ändern, unbekannter Nutzer '%s'"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr "Basisnummer für Benutzerkennung"
+
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr "Wo mit der Suche nach einer neuen freien user id gestartet werden soll."
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr "Basisnummer für Gruppenkennung"
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr "Wo nach der Suche nach einer neuen freien group-ID geschaut werden soll."
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Protokollieren fehlgeschlagen: %s"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
+msgstr "Users RDN"
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "Der angegebene Objekt-Typ ist leer oder ungültig!"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
+msgstr "Groups RDN"
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr "Der Zweig in welchem Gruppen gespeichert werden."
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"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."
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Smarty-Fehler"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Id-Zuweisungsmethode"
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Ihre FusionDirectory Sitzung ist abgelaufen!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Traditionell"
 
-#: html/index.php:211
-msgid "Your IP has changed!"
-msgstr "Ihre IP hat sich geändert!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr "Samba unix id pool"
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
-msgstr "Keine Sitzung gefunden!"
-
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Bitte geben Sie einen gültigen Benutzernamen ein!"
-
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Bitte geben Sie Ihr Passwort ein!"
-
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Bitte überprüfen Sie die Kombination von Benutzernamen und Passwort."
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Das Konto ist gesperrt. Bitte benachrichtigen Sie den Administrator!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Debugging"
+
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr "Fehler anzeigen"
+
+#: plugins/config/class_configInLdap.inc:387
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Ihr Browser hat Cookies deaktiviert. Bitte aktivieren Sie zunächst Cookies und laden anschliessend diese Seite neu, bevor Sie sich anmelden!"
+"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 "Zeigt PHP-Fehler in dem oberen Teil des Bildschirms. Dies sollte in produktiven Einrichtungen deaktiviert werden, da einige Passwörter enthalten sein könnten."
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "PHP-Konfiguration"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Maximale LDAP Abfragedauer"
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Schwerer Fehler: Register globals ist aktiviert. FusionDirectory wird Logins verweigern sollte dies nicht von einem Administrator behoben werden."
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr "Anhalten von LDAP-Aktionen wenn keine Antwort innerhalb der angegeben Anzahl von Sekunden erfolgt."
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Passwortänderung"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Protokolliere LDAP-Statistiken"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Ihr Passwort ist fast abgelaufen, bitte setzen Sie ein neues!"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr "LDAP Timingstatistiken mit dem Syslog verfolgen. Dies kann helfen, Indexproblem oder schlechte Suchfilter zu finden."
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Debug Level"
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "Der verfügbare Arbeitsspeicher wird knapp!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr "Gewisse Informationen bei jedem Seitenladen anzeigen."
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Prüfung der Benutzer-ACLs deaktiviert"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Erweiterung"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
+msgstr "Hooks die aufgerufen werden wenn spezifische Aktionen passieren"
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
-msgstr "Schwerer Fehler: Kann keine Plugin-Definitionen für Plugin '%s' finden ('%s' ist keine Datei)!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr "Reiter"
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Konfigurationsfehler"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr "Der Tab, der diesen hook betrifft"
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "FATAL: es wurden nicht alle POST-Variablen von PHP übertragen - bitte informieren Sie den Administrator!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "mode"
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "FusionDirectory Konfiguration %s/%s ist nicht lesbar. Abgebrochen."
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr "Wann dieser Befehl aufgerufen wird"
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Auf das als Kompilierverzeichnis angegegebene Verzeichnis '%s' kann nicht zugegriffen werden!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr "cmd"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr "Der zu aufrufende Befehl"
+
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Hooks"
+
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Email-Adresse"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr "Verfügbare Shells"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr "Verfügbare POSIX-Shells für FD-Benutzer."
+
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr "ACL-Reiter auf allen Objekten anzeigen"
+
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Kontaktieren Sie Ihren Administrator, es gab ein Problem mit dem Mailserver"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Plugins"
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
-msgstr "Das Token ist nicht gültig"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr "Pluginkonfiguration"
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
-msgstr "Es gab ein Problem mit dem Mailserver, Bestätigungsmail wurde nicht verschickt"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr "Plugin-Konfiguration"
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr "FusionDirectory Plugin-Konfiguration"
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Objektgruppen"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Name des Standortes"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
+msgstr "OGroup RDN"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
+msgstr "Zweig in welchem die Objektgruppen gespeichert werden"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "Verbindungs-URI"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
+msgstr "Frage nach Passwort erzwingen"
+
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "TLS-Verbindung"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr "Übersichtsseitenkonfiguration"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
-msgstr "Die LDAP-Verzeichnisbasis"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr "Übersichtsseitennamensschema"
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Authentisierung"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr "Stellenzahl"
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
-msgstr ""
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr "Anzahl der Stellen nach dem Präfix"
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "Administrator-DN"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr "Präfixe"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Administrator-Passwort:"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Momentaner Status"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr "Anzahl an Tagen"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "LDAP-Einrichtung"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Abteilungen"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Einrichten der LDAP-Verbindung"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "Abteilung"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Dieser Dialog leistet die grundlegende Konfiguration der LDAP-Konnektivität für FusionDirectory."
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Eigenschaften"
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "Anonyme Anmeldung an server '%s' ist fehlgeschlagen!"
+msgid "Name of %s"
+msgstr "Name von %s"
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Verbindung als Benutzer '%s' ist fehlgeschlagen!"
+msgid "A name for this %s"
+msgstr "Ein Name für diesen %s"
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Wiederholen"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
+msgstr "Kurze Beschreibung von diesem %s"
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Kategorie"
+
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "Verbindung als anonymer Benutzer zu Server '%s' war erfolgreich."
+msgid "Category of this %s"
+msgstr "Kategorie von diesem %s"
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Aktualisieren"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Bitte geben Sie Ihren Benutzer und das zugehörige Passwort ein!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "Verbindung als Benutzer '%s' zu Server '%s' war erfolgreich!"
+msgid "Manager of this %s"
+msgstr "Verwalter von diesem %s"
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Land"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
+msgstr "Eine postalische Anschrift für diesen %s"
+
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Telefonnummer"
+
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Willkommen"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr "Organisation"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Speichern"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Domäne"
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Abschluß - Schreiben der Konfigurationsdatei"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr "Domäne"
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Schreibe Konfigurationsdatei"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Abteilungen verwalten"
 
-#: setup/class_setupStep_Finish.inc:89
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Ihre Konfigurationsdatei ist momentan für jeden lesbar. Bitte ändern Sie die Zugriffsrechte!"
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Die Konfiguration ist momentan nicht lesbar oder existiert nicht."
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Benutzer und Gruppen"
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Nach dem Herunterladen und dem Plazieren der Datei unter %s, bitte vergewissern Sie sich dass der Benutzer unter dem der Webserver läuft, in der Lage ist %s zu lesen. Anderen Nutzern sollte dies nicht möglich sein."
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Domänen-Komponente"
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Migrieren"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr "Domänenkomponente"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "PHP Modul- und Erweiterungsprüfung"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Standort"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "LDAP-Inspektion"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
+msgstr "Ort"
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Analysieren Sie Ihr aktuelles LDAP nach Kompatibilität mit FusionDirectory"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Liste der Abteilungen"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
-msgstr ""
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr "Land"
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Benutzer verwalten"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Prüfe Objekt-Klassen des Wurzelobjektes"
-
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Prüfe Berechtigungen auf die LDAP-Datenbank"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Konto-Sperrung"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Prüfe auf unsichtbare Benutzer"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Prüfe auf Superadministrator"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Konto aktivieren"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Konto deaktivieren"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Prüfe auf Benutzer ausserhalb des Benutzerbaums"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Liste der Benutzer"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Prüfe auf Gruppen ausserhalb des Gruppenbaums"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Nachname"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Prüfe auf unsichtbare Abteilungen"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Vorname"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Prüfe auf doppelte UID Nummern"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Benutzer sperren"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Benutzer entsperren"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "LDAP-Abfrage fehlgeschlagen."
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Vorlage anwenden"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Neuen Benutzer aus Vorlage"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Fehlgeschlagen"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Benutzer bearbeiten"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "Fehlende FusionDirectory Objektklasse '%s'!"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Bitte überprüfen Sie Ihre Installation."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Benutzer entfernen"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "Die strukturelle Objekt-Typ Ihres Wurzel-Objektes kann nicht konvertiert werden. Bitte fügen Sie die Objekt-Klasse '%s' manuell hinzu."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Rolle"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr "Rolleninformation"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
+msgstr "Organisatorische Rolle"
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "%s Benutzer(innen) gefunden, die nicht in FusionDirectory sichtbar sein werden oder unvollständig sind."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Informationen"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr "Benutzermigration"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr "Name dieser Gruppe"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Migrationsfehler"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Beschreibung der Rolle"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
-msgstr "Kann Eintrag \"%s\" nicht migrieren:"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Telefonnummer"
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Faxnummer"
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Benutzer für die Rolle hinzufügen"
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
+msgstr "Gruppen und Rollen verwalten"
+
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Gruppen"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
+msgstr "Rolleneigenschaften bearbeiten"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "Es gibt kein FusionDirectory Administratorkonto innerhalb Ihres LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
-msgstr "Gibt alle Rechte auf alle Objekte"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "POSIX-Eigenschaften bearbeiten"
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
+msgstr "Benutzergruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
-msgstr "Einige Standard-ACL-Rollen fehlen"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Primäre Gruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
+msgstr "Organisatorische Rollen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
-msgstr "Kann ACL-Rolle \"%s\" nicht hinzufügen:"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
+msgstr "Anwendungsgruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Benutzer in den konfigurierten Benutzerbaum verschieben"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Mail-Gruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Samba-Gruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
-msgstr "Eintrag wird verschoben von"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "an"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
+msgstr "Servergruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Die folgenden Referenzen werden aktualisiert"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr "Gruppen von Arbeitsstationen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Es wurden %s Gruppen ausserhalb des konfigurierten Baums '%s' gefunden."
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr "Windows-Gruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
-msgstr "Gruppen in den konfigurierten Gruppenbaum verschieben"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
+msgstr "Gruppen von Terminals anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Fand %s Abteilungen, die nicht in FusionDirectory sichtbar sein werden."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr "Druckergruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
+msgstr "Telefongruppen anzeigen"
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
-msgstr ""
+msgid "Unknown type : %s"
+msgstr "Unbekannter Typ: %s"
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Sprachauswahl"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Objektgruppe"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Dieser Schritt erlaubt es Ihnen, Ihre bevorzugte Sprache auszuwählen."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr "Objektgruppeninformation"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Gruppe"
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Willkommen im FusionDirectory Einrichtungsassistent"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr "Kurze Beschreibung dieser Gruppe"
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Die Willkommensnachricht"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Zusammengefasste Objekte"
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
-msgstr "PHP-Einrichtungskonfiguration (<a href=\"?info\" target=\"_blank\">Information anzeigen)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr "Objektmitglied dieser Gruppe"
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Installationsprüfung"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr "Nur dieser Gruppe erlauben, dieser Liste von Hosts zu verbinden"
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Grundlegende Überprüfungen der PHP-Version und Erweiterungen."
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Prüfe PHP-Version"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Liste der Gruppen"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP muss in Version %s oder höher vorliegen."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr "POSIX-Gruppeninformation"
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Bitte aktualisieren Sie auf eine unterstützte Version."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr "POSIX-Gruppe"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory benötigt dieses Modul um mit Ihrem LDAP-Server zu kommunizieren."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr "POSIX-Benutzergruppe"
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory benötigt dieses Modul für internationalisierte Schnittstellen."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Erzwinge GID"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory benötigt dieses Modul um mit den unterschiedlichen Arten von Servern und Protokollen zu kommunizieren."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr "GID-Wert für diese Gruppe erzwingen"
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory benötigt dieses Modul für die Sambaintegration."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr "GID-Wert für diese Gruppe"
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory benötigt entweder 'mhash' oder das 'sha1' Modul um SSHA-Verschlüsselung nutzen zu können."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Gruppenmitglieder"
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory benötigt dieses Modul um mit einem IMAP-Server zu kommunizieren."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory benötigt dieses Modul um Unicode-Zeichenketten zu verwalten."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "Imagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory benötigt diese Erweiterung um Bilder zu verarbeiten."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "Komprimierungs-Modul"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr "ACL-Zuordnungen"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory benötigt diese Erweiterung um Snapshots zu verwalten."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "register_globals ist ein PHP-Mechanismus, welcher alle globalen Variablen für Skripte direkt zugänglich macht. Dies kann ein Sicherheitsrisiko sein."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Suchen Sie nach 'register_globals' in Ihrer php.ini und setzen Sie es auf 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "ACL-Zuordnung"
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP verwendet diese Einstellungen für den Garbage Collector, um alte Sessions zu entfernen."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Wenn Sie diesen Wert auf einen Tag setzen, wird dies vermeiden, dass Sie die Sitzung und den zugehörigen Cookie verlieren, bevor diese tatsächlich ihre Gültigkeit verlieren."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr "Zugriffssteuerungsrollen-Zuordnungsdialog"
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Suchen Sie in Ihrer php.ini nach 'session.gc_maxlifetime' und setzen Sie es auf 84600 oder höher."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Modus"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Aus"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "Um FusionDirectory ohne Probleme benutzen zu können, muss die Option session.auto_start in Ihrer php.ini auf 'Off' gestellt werden."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr "Unterbaum"
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Suchen Sie in Ihrer php.ini nach 'session.auto_start' und setzen Sie es auf 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr "Nur Basis"
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
-msgstr "FusionDirectory benötigt mindestens 128MB Arbeitsspeicher. Wird dieser Wert unter dieses Limit gesetzt, kann dies unreproduzierbare Fehler hervorrufen. Erhöhen Sie dies für größere Installationen."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr "Anzuwendende Rolle"
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
-msgstr "Suchen nach 'memory_limit' in Ihrer php.ini und setzen auf '128M' oder höher."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr "Für alle Benutzer"
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Diese Einstellung beeinflusst die Verarbeitung der Ausgabe. Stellen Sie diese auf 'off', um die Leistung zu erhöhen."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr "Diese ACL für alle LDAP-Benutzer übernehmen"
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Suchen Sie in Ihrer php.ini nach 'implicit_flush' und setzen Sie es auf 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Mitglieder"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "Die Ausführungszeit sollte mindestens 30 Sekunden betragen."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Suchen Sie in Ihrer php.ini nach 'max_execution_time' und setzen Sie es auf '30' oder höher."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr "ACL-Zuordnung"
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Erhöhen Sie die Sicherheit Ihres Servers, indem Sie expose_php auf 'off' setzen. PHP wird in dieser Einstellung keine Informationen über Ihren laufenden Server senden."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr "Zugriffssteuerungsrollen-Zuordnung"
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Suchen Sie in Ihrer php.ini nach 'expose_php' und setzen Sie es auf 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr "Zuordnungen"
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Erhöhen Sie die Leistung des Servers, indem sie magic_quotes_gpc auf 'off' stellen."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr "ACL-Rollenzuordnungen für diese Basis"
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Suchen Sie in Ihrer php.ini nach 'zend.ze1_compatibility_mode' und setzen Sie es auf 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Einrichtungsfehler"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Keine ACL-Einstellungen für diese Kategorie"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Abgeschlossen"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "Enthält ACL für diese Objekte: %s"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Vor"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "ACL Kategorie bearbeiten"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "Das FusionDirectory Team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "ACL-Kategorie zurücksetzen"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Liste verfügbarer ACL-Kategorien"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Alle Objekte im aktuellen Teilbaum"
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Dieses Objekt hat keine Referenzen zu anderen Objekten."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "lesen"
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Vorlagen anzeigen"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "schreiben"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Funktionale Benutzer anzeigen"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Erweiterte Einstellungen anzeigen/ausblenden"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "POSIX-Benutzer anzeigen"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Erstelle Objekte"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Mail-Benutzer anzeigen"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Objekte verschieben"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Samba-Benutzer anzeigen"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Objekte entfernen"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Berechtigungen für Eigentümer einräumen"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Vollständiges Objekt"
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
+msgstr "ACL-Rollenverwaltung"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] "Es gibt ein abgelaufenes Konto"
-msgstr[1] "Es gibt %1 abgelaufene Konten"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr "Es gibt keinen abgelaufenen Zugang"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Enthält Einstellungen für diese Objekte: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
-msgstr "Manager betreffend"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Zugriffssteuerungsrollen"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "ACL Rolle"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
+msgstr "Name für diese Rolle"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
+msgstr "Kurze Beschreibung von dieser Rolle"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
-msgstr "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
+msgstr "Zugriffssteuerungsrollen"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
-msgstr "manager"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr "mail"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "FusionDirectory wird NICHT ohne entsprechende Änderung laufen."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] "Es gibt ein Konto, das in den nächsten %1 Tagen abläuft"
-msgstr[1] "Es gibt %2 Konten, die in den nächsten %1 Tagen ablaufen"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory wird ohne eine entsprechende Änderung laufen."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr "Es gibt kein Konto, das in den nächsten %1 Tagen abläuft"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Erstellen eines neuen FusionDirectory Administratorkontos"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr "Nächste abgelaufene Konten"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Dieser Dialog wird automatisch einen neuen Superadministrator in Ihren LDAP-Baum einfügen."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] "Es gibt 1 Gruppe:"
-msgstr[1] "Es gibt %1 Gruppen:"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Benutzer-ID"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] "Einer von diesen ist eine %1 Gruppe"
-msgstr[1] "%2 von %1 Gruppen"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Passwort (erneut)"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr "Es gibt keine Gruppe %1"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Dies scheint das erste Mal zu sein, dass Sie FusionDirectory starten - wir haben noch keine Konfiguration gefunden. Dieser einfache Assistent hilft Ihnen bei der Einrichtung."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] "Es gibt 1 Benutzer:"
-msgstr[1] "Es gibt %1 Benutzer:"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "Was wird der Assistent für Sie erledigen?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] "Einer von diesen hat ein %1 Konto"
-msgstr[1] "%2 von diesen haben ein %1 Konto"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Erstellen einer einfachen Konfiguration für einen Standort"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr "Keiner von diesen hat ein %1-Konto"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Versucht, Probleme in Ihrer PHP- und LDAP-Umgebung zu ermitteln"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] "Einer von diesen ist gesperrt"
-msgstr[1] "%1 von diesen sind gesperrt"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Lässt Sie aus einem Satz von einfachen bis erweiterten Konfigurationsschaltern wählen"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr "Keiner von diesen ist gesperrt"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Geführte Migration existierende LDAP-Bäume"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Sie haben erfolgreich Ihr Passwort geändert. Bitte denken Sie daran alle Programme anzupassen, die dieses Passwort auch benutzen."
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "Was wird der Assistent NICHT für Sie erledigen?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Benutzer-Einstellungen"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Finde jeden möglichen Konfigurationsfehler"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Passwort löschen"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migriere jede mögliche LDAP-Umgebung - erstellen Sie Sicherungsabzüge!"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Neues Passwort setzen"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr "Zum Fortsetzen:"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Bild"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Benutzerbild"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Klicken Sie auf die Schaltfläche 'Weiter' wenn Sie fertig sind."
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Bild entfernen"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "Füge erforderliche Objekt-Klassen zum Basis-Objekt hinzu"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "Sie haben keine Berechtigung Ihr Passwort zu ändern"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Aktuell"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "Ihre Passwort-Hashmethode wird nicht geändert!"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Nach der Migration"
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Ein Zugriffskonflikt wurde festgestellt"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Schliessen"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Nur Lesen"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr "Ausgewählte Einträge in diesen Baum verschieben"
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Fortsetzen"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Wenn Sie erfahren möchten, was bei der Migration der gewählten Einträge erfolgen wird, verwenden Sie den 'Zeige Änderungen'-Knopf um das LDIF zu sehen."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Änderungen anzeigen"
+
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "Die Größenbeschränkung sorgt dafür, daß die LDAP-Operationen schneller durchgeführt werden können und verringern die Last auf dem LDAP-Server. Der einfachste Weg, große Datenbanken ohne große Zeitüberschreitungen zu bearbeiten ist es Filter zu verwenden und die Größenbeschränkungen auf einen sinnvollen Wert einzustellen."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Während der LDAP-Inspektion, werden wir nach einigen häufigen Fallstricken prüfen, die bei der Migration zu FusionDirectory base LDAP Administration auftreten können. Sie möchten eventuell, die unten stehenden Probleme beheben, um reibungslose Dienste zu bieten."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Bitte entscheiden Sie, wie für diese Sitzung verfahren werden soll"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Erneut prüfen"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "Ignoriere diesen Fehler und zeige alle vom LDAP-Server gelieferten Einträge"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Erzeugen Ihrer Konfigurationsdatei"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "Ignoriere diesen Fehler und zeige alle Einträge, die innerhalb der Größenbeschränkung liegen"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Setzen"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Konfiguration herunterladen"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Status: "
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filter"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr "Passwortwiederherstellung ist nicht aktiviert. Wenn Sie Ihr Passwort verloren haben, kontaktieren Sie bitte Ihren Administrator"
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Wenn Sie sicher sind, drücken Sie 'Entfernen' um fortzufahren oder 'Abbrechen' zum Abbruch."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Anmeldefenster"
@@ -4971,26 +4869,141 @@ msgstr "Anmelden"
 msgid "Click here to log in"
 msgstr "Hier klicken zum Anmelden"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "Die Größenbeschränkung sorgt dafür, daß die LDAP-Operationen schneller durchgeführt werden können und verringern die Last auf dem LDAP-Server. Der einfachste Weg, große Datenbanken ohne große Zeitüberschreitungen zu bearbeiten ist es Filter zu verwenden und die Größenbeschränkungen auf einen sinnvollen Wert einzustellen."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Bitte entscheiden Sie, wie für diese Sitzung verfahren werden soll"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "Ignoriere diesen Fehler und zeige alle vom LDAP-Server gelieferten Einträge"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "Ignoriere diesen Fehler und zeige alle Einträge, die innerhalb der Größenbeschränkung liegen"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Setzen"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Bitte überprüfen Sie, ob Sie dies wirklich tun wollen, da es keinen Weg gibt, für FusionDirectory die Daten wieder herzustellen."
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Wenn Sie sicher sind, drücken Sie 'Entfernen' um fortzufahren oder 'Abbrechen' zum Abbruch."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Hauptmenü"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Abmelden"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Angemeldet:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "Sitzung läuft ab in %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Fortsetzen"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Ein Zugriffskonflikt wurde festgestellt"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Nur Lesen"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Kopieren & Einfügen - Assistent"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr "Einige Werte müssen einmalig im vollständigen Verzeichnis sein während einige Kombinationen keinen Sinn machen. FusionDirectory zeigt die relevanten Attribute. Bitte halten Sie die unten stehenden Werte bei um die Policies zu erfüllen."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "Beachten Sie, dass manche Einstellungen wie z.B. erstellte Snapshots nicht kopiert werden!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "Oder wenn Sie kopieren oder einen Eintrag ausschneiden und das Quellobjekt löschen, können Sie Fehler bekommen wenn dieses Objekt wieder eingefügt werden soll!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Vorgang abgeschlossen"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Information"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "Zugewiesene ACL für aktuellen Eintrag"
@@ -5035,211 +5048,197 @@ msgstr "ACL für dieses Objekt"
 msgid "Available roles"
 msgstr "Verfügbare Rollen"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "Das FusionDirectory Team"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Kopieren & Einfügen - Assistent"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr "Einige Werte müssen einmalig im vollständigen Verzeichnis sein während einige Kombinationen keinen Sinn machen. FusionDirectory zeigt die relevanten Attribute. Bitte halten Sie die unten stehenden Werte bei um die Policies zu erfüllen."
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "Beachten Sie, dass manche Einstellungen wie z.B. erstellte Snapshots nicht kopiert werden!"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Dieses Objekt hat keine Referenzen zu anderen Objekten."
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
-msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "Oder wenn Sie kopieren oder einen Eintrag ausschneiden und das Quellobjekt löschen, können Sie Fehler bekommen wenn dieses Objekt wieder eingefügt werden soll!"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Benutzer-Einstellungen"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Vorgang abgeschlossen"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Passwort löschen"
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Information"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Neues Passwort setzen"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Hauptmenü"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Bild"
+
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Benutzerbild"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Abmelden"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Bild entfernen"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Angemeldet:"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "Sie haben keine Berechtigung Ihr Passwort zu ändern"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "Sitzung läuft ab in %d!"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "Ihre Passwort-Hashmethode wird nicht geändert!"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "Füge erforderliche Objekt-Klassen zum Basis-Objekt hinzu"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Sie haben erfolgreich Ihr Passwort geändert. Bitte denken Sie daran alle Programme anzupassen, die dieses Passwort auch benutzen."
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Aktuell"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] "Es gibt 1 Gruppe:"
+msgstr[1] "Es gibt %1 Gruppen:"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Nach der Migration"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] "Einer von diesen ist eine %1 Gruppe"
+msgstr[1] "%2 von %1 Gruppen"
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Schliessen"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr "Es gibt keine Gruppe %1"
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Erzeugen Ihrer Konfigurationsdatei"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] "Es gibt 1 Benutzer:"
+msgstr[1] "Es gibt %1 Benutzer:"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] "Einer von diesen hat ein %1 Konto"
+msgstr[1] "%2 von diesen haben ein %1 Konto"
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Konfiguration herunterladen"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr "Keiner von diesen hat ein %1-Konto"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Status: "
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] "Einer von diesen ist gesperrt"
+msgstr[1] "%1 von diesen sind gesperrt"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Erstellen eines neuen FusionDirectory Administratorkontos"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr "Keiner von diesen ist gesperrt"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Dieser Dialog wird automatisch einen neuen Superadministrator in Ihren LDAP-Baum einfügen."
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] "Es gibt ein abgelaufenes Konto"
+msgstr[1] "Es gibt %1 abgelaufene Konten"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Benutzer-ID"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr "Es gibt keinen abgelaufenen Zugang"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Passwort (erneut)"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
+msgstr "Manager betreffend"
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Dies scheint das erste Mal zu sein, dass Sie FusionDirectory starten - wir haben noch keine Konfiguration gefunden. Dieser einfache Assistent hilft Ihnen bei der Einrichtung."
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "Was wird der Assistent für Sie erledigen?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr "cn"
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Erstellen einer einfachen Konfiguration für einen Standort"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "telephoneNumber"
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Versucht, Probleme in Ihrer PHP- und LDAP-Umgebung zu ermitteln"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr "shadowExpire"
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Lässt Sie aus einem Satz von einfachen bis erweiterten Konfigurationsschaltern wählen"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
+msgstr "manager"
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Geführte Migration existierende LDAP-Bäume"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
+msgstr "mail"
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "Was wird der Assistent NICHT für Sie erledigen?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] "Es gibt ein Konto, das in den nächsten %1 Tagen abläuft"
+msgstr[1] "Es gibt %2 Konten, die in den nächsten %1 Tagen ablaufen"
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Finde jeden möglichen Konfigurationsfehler"
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
+msgstr "Es gibt kein Konto, das in den nächsten %1 Tagen abläuft"
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migriere jede mögliche LDAP-Umgebung - erstellen Sie Sicherungsabzüge!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
+msgstr "Nächste abgelaufene Konten"
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
-msgstr "Zum Fortsetzen:"
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Vorlagen anzeigen"
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Funktionale Benutzer anzeigen"
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Klicken Sie auf die Schaltfläche 'Weiter' wenn Sie fertig sind."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "POSIX-Benutzer anzeigen"
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "FusionDirectory wird NICHT ohne entsprechende Änderung laufen."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Mail-Benutzer anzeigen"
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory wird ohne eine entsprechende Änderung laufen."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Samba-Benutzer anzeigen"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
-msgstr "Ausgewählte Einträge in diesen Baum verschieben"
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Wenn Sie erfahren möchten, was bei der Migration der gewählten Einträge erfolgen wird, verwenden Sie den 'Zeige Änderungen'-Knopf um das LDIF zu sehen."
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Änderungen anzeigen"
-
-#: setup/setup_migrate.tpl.c:2
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Während der LDAP-Inspektion, werden wir nach einigen häufigen Fallstricken prüfen, die bei der Migration zu FusionDirectory base LDAP Administration auftreten können. Sie möchten eventuell, die unten stehenden Probleme beheben, um reibungslose Dienste zu bieten."
-
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Erneut prüfen"
diff --git a/locale/el_GR/fusiondirectory.po b/locale/el_GR/fusiondirectory.po
index 50e19f3abae33abc5b1b0179bb1a1ebf997abff7..1f542760c83d34997c1194dda1933716fea09290 100644
--- a/locale/el_GR/fusiondirectory.po
+++ b/locale/el_GR/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n"
@@ -23,4850 +23,4759 @@ msgstr ""
 "Language: el_GR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Καλώς ήλθατε στο %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Αναφορές"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Ρόλος"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr "Πληροφορίες ρόλου"
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr "Ρόλος οργανισμού"
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Πληροφορίες"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Όνομα"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr "Όνομα αυτής της ομάδας"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Περιγραφή"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Περιγραφή του ρόλου"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Αριθμός τηλεφώνου"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Αριθμός φαξ"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Προσθήκη χρηστών για το ρόλο"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Ομάδα"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr "Πληροφορίες ομάδας POSIX"
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr "Ομάδα POSIX"
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr "Ομάδα χρηστών POSIX"
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Ιδιότητες"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr "Σύντομη περιγραφή αυτής της ομάδας"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Εξαναγκασμός GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr "Εξαναγκασμός τιμής GID για αυτή την ομάδα"
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr "Τιμή GID για αυτήν την ομάδα"
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Μέλη ομάδας"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Επιστοσύνη συστήματος"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Λειτουργία επιστοσύνης"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr "Τύπος εξουσιοδότησης για αυτά τα συστήματα"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "απενεργοποιημένο"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "πλήρης πρόσβαση"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "να επιτραπεί η πρόσβαση σε αυτά τα host"
-
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-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:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Προειδοποίηση"
-
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Υπέρβαση χρόνου κατά την αναμονή για κλέιδωμα. Αγνόηση κλειδώματος!"
-
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr "'Αγνωστος τύπος: %s"
-
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr "Ανύπαρκτο dn: %s"
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Ομάδα αντικειμένου"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr "Πληροφορίες ομάδας αντικειμένου"
-
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Αντικείμενα μέλους"
-
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr "Αντικείμενα μέλους για αυτή την ομάδα"
-
-#: plugins/admin/groups/class_ogroup.inc:321
-msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr "Τοποθετηση σταθμών εργασίας και τερματικών στην ίδια ομάδα δεν επιτρέπεται"
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Λίστα ομάδων"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Ενέργειες"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Δημιουργία"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Επεξεργασία"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Αφαίρεση"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr "Ομάδες και ρόλοι"
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr "Διαχείριση ομάδων και ρόλων"
-
-#: 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:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Επεξεργασία ιδιοτήτων posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr "Εμφάνιση ομάδων χρήστη"
-
-#: 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:132
-msgid "Show organizational roles"
-msgstr "Λίστα ρόλων οργανισμών"
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr "Εμφάνιση ομάδων εφαρμογών"
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
-
-#: 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:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Εμφάνιση ομάδων samba"
-
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr "Εμφάνιση ομάδων server"
-
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr "Εμφάνιση ομάδων σταθμών εργασίας"
-
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr "Εμφάνιση ομάδων windows"
-
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr "Εμφάνιση ομάδων τερματικού"
-
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr "Εμφάνιση ομάδων εκτυπωτή"
-
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr "Εμφάνιση ομάδων τηλεφώνου"
-
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Συστατικό στοιχείο τομέα"
-
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr "συστατικό στοιχείο τομέα"
-
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Τμήμα"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Τμήματα"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Προτιμώμενη γλώσσα"
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "τμήμα"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr "Όνομα του %s"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr "Ένα όνομα για το %s"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
-msgstr "Σύντομη περιγραφή του %s"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Κατηγορία"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
-msgstr "Κατηγορία του %s"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Διαχειριστής"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Manager of this %s"
-msgstr "Διαχειριστής του %s"
-
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Τοποθεσία"
+msgid "PHP must be of version %s or above."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Πολιτεία"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Χώρα"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Διεύθυνση"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
-msgstr "Μια ταχυδρομική διεύθυνση για %s"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Τηλέφωνο"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Αριθμός τηλεφώνου"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Φαξ"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr "Αριθμός φαξ"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Διαχείριση τμημάτων"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Χρήστες και ομάδες"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Περιοχή"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr "τοπικότητα"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr "χώρα"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Τομέας"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr "Τομέας"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Κατάλογος των τμημάτων"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Οργανισμός"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr "οργανισμός"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Λίστα χρηστών"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Επίθετο"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Βαπτιστικό"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Σύνδεση"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Χρήστης"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
-msgstr "Από πρότυπο"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Πρότυπο"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Κλείδωμα χρηστών"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Ξεκλείδωμα χρηστών"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Εφαρμογή προτύπου"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Νέος χρήστης από πρότυπο"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Επεργασία χρήστη"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Αφαίρεση χρήστη"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Χρήστες"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Διαχείριση χρηστών"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Μετακίνηση"
+
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Άδεια"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Κλείδωμα λογαριασμού"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
-#, php-format
+#: setup/class_setupStep_Migrate.inc:239
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
-msgstr "Μέθοδος κωδικού πρόσβασης \"%s\" δεν υποστηρίζει κλείδωμα. Ο λογαριασμός \"%s\" δεν έχει κλειδώσει!"
-
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Ξεκλείδωμα λογαριασμού"
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Κλείδωμα λογαριασμού"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
-msgstr "Λογαριασμός χρήστη"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
-msgstr "Πληροφορίες λογαριασμού χρήστη"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Έλεγχος έγκρισης για βάση δεδομένων  LDAP"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Δεν υπάρχουν ρυθμίσεις ACLs για αυτήν την κατηγορία"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "'Έλεγχος για αόρατους χρήστες"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL για αυτά τα αντικείμενα: %s"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Έλεγχος για υπερδιαχειριστές "
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Επεξεργασία κατηγορίας ACL"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr "Έλεγχος για προεπιλεγμένους ρόλους και ομάδες στην ACL"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
-msgstr "Διαγραφή"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Έλεγχος για χρήστες εκτός της δομής δεδομένων "
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Επαναφορά κατηγορίας ACL"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Έλεγχος για ομάδες εκτός της δομής δεδομένων"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Όλα τα αντικείμενα στο τρέχον υποδέντρο"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "ανάγνωση"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "εγγραφή"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Αντικείμενο"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Εμφάνιση.απόκρυψη προχωρημένων ρυθμίσεων"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Δημιουργία αντικειμένων"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Μετακίνηση αντικειμένων"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Αφαίρεση αντικειμένων"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Παροχή δικαιωμάτων σε ιδιοκτήτη"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Ολοκλήρωση αντικειμένου"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Ρόλοι ACL "
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr "Διαχείριση ρόλων ACL"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Σφάλμα LDAP"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Migrate.inc:511
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Περιέχει ρυθμίσεις για αυτά τα αντικείμενα: %s"
+msgid "The specified user \"%s\" does not have full access to your ldap database."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Ρόλοι ελέγχου πρόσβασης"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Προειδοποίηση"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "Ρόλος ACL"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr "Ένα όνομα για αυτόν τον ρόλο"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr "Σύντομν περιγραφή περιγραφή για αυτό το ρόλο"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr "ACLs που είναι μέρος αυτής της ομάδας"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Δημιουργία"
+
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Χρήστες"
+
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Ομάδες"
+
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr "Αναθέσεις ACL"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Σφάλμα"
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "Ανάθεση ACL"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
-msgstr "Διάλογος Ανάθεσης ACL"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr "Διάλογος λίστας ελέγχου ανάθεσης ρόλων"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Λειτουργία"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr "Αυτό εφαρμόζεται σε ολόκληρο το υποδένδρο ή μόνο στη βάση;"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr "Υποδέντρο"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr "Base only"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr "Ρόλος για εφαρμογή"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr "Για όλους τους χρήστες"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr "Εφαρμογή αυτού του ACL για όλους τους χρήστες LDAP"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Μέλη"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr "Χρήστες ή ομάδες που ανατίθεται αυτός ο ρόλος."
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr "Ανάθεση ACL"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr "Ανάθεση ρόλων ελέγχου πρόσβασης"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr "Ανάθεσεις"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr "Αναθέσεις ρόλου ACL για αυτή την βάση"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
-msgstr "Ανάθεσεις σε αντικείμενο ή υποδέντρο %s"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr "Πίνακας ελέγχου"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr "Στατιστικά και διάφορες πληροφορίες"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr "Αναφορά"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr "Στατιστικά"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr "Στατιστικά για τους χρήστες"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
+
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr "Στατιστικά χρηστών"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr "Στατιστικά ομάδων"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr "Λογαριασμοί που έχουν λήξει"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Μέθοδος κωδικού"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Μέθοδος hash για χρήση κωδικού"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Κωδικός πρόσβασης"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Κατάσταση"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Κωδικός Πρόσβασης (Αφήστε κενό εάν δεν επιθυμείτε να το αλλάξετε)"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Κωδικός ξανά"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr "Ίδιος Κωδικός Πρόσβασης με τον προηγούμενο, για αποφυγή λαθών."
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Προσωπικές πληροφορίες"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Επίθετο"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr "Το επίθετο του χρήστη."
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Όνομα"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr "Το όνομα του χρήστη"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Προσπάθεια ξανά"
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
-msgstr "Σύντομη περιγραφή του χρήστη"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr "Εικόνα"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Ανανέωση"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr "Το άβαταρ του χρήστη"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Παρακαλώ επαληθεύστε το όνομα χρήστη και τον κωδικό σας!"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr "Πληροφοριών επαφή οργανισμού"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr "Ταχυδρομική διεύθυνση εταιρίας"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Αρ. δωματίου"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Αριθμός δωματίου"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr "Αριθμός τηλεφώνου εργασίας"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Κινητό"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr "Αριθμός κινητού τηλεφώνου εργασίας"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Βομβητής"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr "Αριθμός βομβητή εργασίας"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr "Αριθμός φαξ εργασίας"
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Ιστοσελίδα"
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr "Προσωπική ιστοσελίδα"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Εσωτερικό σφάλμα"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr "Πληροφορίες λογαριασμού"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr "Λογαριασμός σύνδεσης αυτού του χρήστη."
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Προτιμώμενη γλώσσα"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr "Ο κωδικός του χρήστη"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "μη ρυθμισμένο"
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr "Προσωπικές πληροφορίες επαφής"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Σφάλμα φίλτρου"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Όνομα που εμφανίζεται"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "Το φίλτρο είναι μη ολοκληρωμένο!"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr "Το όνομα με το οποίο πρέπει να εμφανίζεται ο χρήστης. Χρησιμοποιείται από το Exchange."
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Άδεια"
+
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Σφάλμα άδειας"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr "Διεύθυνση οικίας"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Δεν επιτρέπεται να δημιουργήσετε ένα στιγμιότυπο για %s."
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Ταχυδρομική διεύθυνση οικίας"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Δεν επιτρέπεται να επαναφέρετε ένα στιγμιότυπο για %s."
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Ιδιωτικό τηλέφωνο"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Τηλέφωνο οικίας"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Root"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Πληροφορίες οργανισμού"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Υποβολή"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Τίτλος"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Πάνω"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr "Τίτλος προσώπου στο οργανωτικό του πλαίσιο. Κάθε τίτλος είναι μια από τις πολλές τιμές αυτού του χαρακτηριστικού"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Κάτω"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
+msgstr "Ταξινόμηση πάνω"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Αρ. τμήματος"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
+msgstr "Ταξινόμηση κάτω"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Αριθμός τμήματος"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Επιλογή όλων"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Αρ. Υπαλλήλου"
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "δημιουργήθηκε από"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Αριθμός Υπαλλήλου"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Μετάβαση στον ριζικό τμήμα"
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Τύπος υπαλλήλου"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Μετάβαση ένα τμήμα επάνω"
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr "Δεν ήταν δυνατή η εύρεση του Ppolicy \"%s\" στο LDAP!"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr "Δεν έχετε δικαίωμα αλλαγής του κωδικού σας"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Αρχή (Home)"
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr "Θα πρέπει να περιμένετε %d δευτερόλεπτα για να αλλάξετε το κωδικό σας"
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Επαναφόρτωση λίστας"
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
-msgstr "Ο κωδικός είναι στο ιστορικό παλιών κωδικών πρόσβασης."
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Ενέργειες"
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
-msgstr "Ο κωδικός πρόσβασής σας δεν έχει αλλάξει από την τρέχουσα τιμή"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Αντιγραφή"
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Θα πρέπει να εισάγετε τον κύριο κωδικό σας για να συνεχίσετε"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Αποκοπή"
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr "Οι κωδικοί εισάγατε ως \"Νέο κωδικό\" και \"Επανάληψη νέου κωδικού\" δεν ταιριάζουν."
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Επικόλληση"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Νέος κωδικός "
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Αποκοπή αυτής της εγγραφής"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Ο παλιός και ο νέος κωδικός πρόσβασης μοιάζουν πολύ"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Αντιγραφή αυτής της εγγραφής"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Ο κωδικός που εισάγατε είναι πολύ μικρός"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Επαναφορά στιγμιοτύπων"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "Ο νέος κωδικός πρόσβασης περιέχει προβληματικούς χαρακτήρες Unicode!"
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Εξαγωγή λίστας"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Επαναφορά στιγμιοτύπου"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Επεξεργασία ρυθμίσεων χρηστών POSIX"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Δημιουργία στιγμιότυπου"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Προσωπικός κατάλογος"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Δημιουργία νέου στιγμιότυπου από αυτό το αντικείμενο"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "Η διαδρομή για τον αρχικό κατάλογο του χρήστη"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Μοιραίο σφάλμα"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Κέλυφος"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "σε"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr "Ποιο κέλυφος πρέπει να χρησιμοποιηθεί όταν ο χρήστης συνδεθεί"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "σε γραμμή"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Κύρια ομάδα"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Σφάλμα XML"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
-msgstr "Κύρια ομάδα του χρήστη"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Κατάσταση"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
-msgstr "Κατάσταση του λογαριασμού unix του χρήστη"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Σφάλμα ρύθμισης"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
-msgstr "Εξαναγκασμός user/group id"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Σελίδα "
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
-msgstr "Υποχρέωση συμπλήρωσης τιμών για user id και group id για αυτόν τον χρήστη"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
-msgstr "User id"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
-msgstr "Τιμή User id για αυτόν τον χρήστη."
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr "Group id"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr "Τιμή Group id για αυτόν τον χρήστη"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Ακύρωση όλων"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Μέλη ομάδας"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Αδυναμία επικόλλησης"
+
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Σύνδεση"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Λογαριασμός"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Πρότυπο"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "Ο χρήστης θα πρέπει να αλλάξει τον κωδικό πρόσβασης κατά την πρώτη του σύνδεση"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr "Ο χρήστης πρέπει να αλλάξει συνθηματικό στην πρώτη σύνδεση (η τιμή στο πεδίο Καθυστέρηση δηλώνει το πόσες φορές μπορεί ο χρήστης να συνδεθεί πριν αναγκαστεί να αλλάξει συνθηματικό)"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Όνομα προτύπου"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr "Καθυστέρηση πριν την υποχρεωτική αλλαγή κωδικού πρόσβασης (σε ημέρες)"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "ΣΦΑΛΜΑ: Σφάλμα σύνδεσης στον διακομιστή LDAP. Ο διακομιστής αποκρίθηκε '%s'."
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/functions.inc:583
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
-msgstr "Ο χρήστης θα υποχρεωθεί να αλλάξει τον κωδικό πρόσβασής του μετά από αυτό τον αριθμό ημερών (αφήστε κενό για απενεργοποίηση)"
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
+msgstr "Η σύνδεση (uid) δεν είναι μοναδική μέσα στο δέντρο LDAP. Παρακαλούμε επικοινωνήστε με τον διαχειριστή του συστήματος σας."
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr "Ημερομηνία λήξης κωδικού πρόσβασης"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Σφάλμα πιστοποίησης"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:617
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr "Ημερομηνία μετά από την οποία θα λήγει ο κωδικός πρόσβασης (αφήστε κενό για απενεργοποίηση)"
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr "Ημέρες αδράνειας πριν από την απενεργοποίηση του χρήστη"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Σφάλμα κατά την προσθήκη κλειδώματος. Επικοινωνήστε με τους προγραμματιστές!"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:678
+#, php-format
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr "Μέγιστος αριθμός ημερών αδράνειας μετά την λήξη του κωδικού πρόσβασης πριν την απενεργοποίηση του χρήστη (αφήστε κενό για απενεργοποίηση)"
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
+msgstr "Αποτυχία δημιουργίας κλειδώματος στο δέντρο LDAP. Παρακαλούμε επικοινωνήστε με τον διαχειριστή του συστήματος σας."
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr "Ημέρες μεταξύ προειδοποίησης χρήστη και λήξης κωδικού:"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "Ο διακομιστής LDAP επίστρεψε: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:184
+#: include/functions.inc:859
 msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr "Ο χρήστης θα προειδοποιείται αυτόν τον αριθμό των ημερών πριν από τη λήξη του κωδικού πρόσβασής του (αφήστε κενό για απενεργοποίηση)"
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Επιτρέπεται σ'αυτόν τον χρήστη να συνδέεται στην ακόλουθη λίστα διακομιστών"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Έχει ξεπεραστεί το όριο %d καταχωρίσεων!"
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "μη ρυθμισμένο"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "αυτόματο"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Ρύθμιση"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr " έληξε"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "ελλιπής"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "χρονικό διάστημα χάριτος ενεργό"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Συνέχεια οπωσδήποτε"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "ενεργό"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Επεξεργασία οπωσδήποτε"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "ο κωδικός πρόσβασης έχει λήξει"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "ο κωδικός πρόσβασης δεν μπορεί να αλλάξει"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Καταχωρήσεις ανά σελίδα"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr ""
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Εφαρμογή φίλτρου"
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:2090
 #, php-format
-msgid "Group of user %s"
-msgstr "Ομάδα του χρήστη %s"
-
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr "Επεξεργασία ομάδων και ρόλων του χρήστη"
+msgid "%sB"
+msgstr "%sB"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr "Ρυθμίσεις επεκτάσεων"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr "Ρυθμίσεις επεκτάσεων του FusionDirectory"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr "Κλάδος στον οποίο θα αποθηκεύονται ομάδες αντικειμένων"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
+msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr "Επιβολή εισαγωγής κωδικού"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Διαμόρφωση"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Αδύνατη η εγγραφή σε αρχείο αναθεώρησης!"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr "Ρυθμίσεις FusionDirectory"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "Αδύνατη η ανάγνωση σε αρχείο αναθεώρησης!"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Εμφάνιση"
-
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Γλώσσα"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Προειδοποίηση LDAP "
 
-#: 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 "Γλώσσα της εφαρμογής. Αν «αυτόματη» ή μη διαθέσιμη, θα χρησιμοποιηθεί η γλώσσα του browser. Αυτή η ρύθμιση μπορεί να παρακαμφθεί ανά χρήστη."
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr "Αδυναμία λήψης πληροφοριών σχήματος για τον εξυπηρετητή. Δεν υπάρχει η δυνατότητα ελέγχου σχήματος!"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Θέμα"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr "Θέμα που θα χρησιμοποιηθεί"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Ζώνη ώρας"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr "Ζώνη ώρας που θα χρησιμοποιηθεί"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Ρυθμίσεις κωδικού πρόσβασης"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Δαθέσιμες κλάσεις"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Ελάχιστο μήκος κωδικού"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "Δεν είναι δυνατό να ανατεθεί μια free ID:"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr "Ελάχιστο μήκος κωδικού χρήστη"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "αγνωστη μέθοδος idAllocation"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr "Ελάχιστη διαφοροποίηση κωδικού"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr "Ελάχιστος αριθμός διαφορετικών χαρακτήρων από τον τελευταίο κωδικό"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "sambaUnixIdPool  δεν είναι μοναδική!"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Χρήση λήξης λογαριασμού"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "Μη διαθέσιμη ID!"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "Υπέρβαση μεγίστου ορίου προσπαθειών!"
+
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Δεν είναι δυνατή η διάθεση μιας  free ID!"
+
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgstr "Αδύνατος ο εντοπισμός του αρχείου  '%s' - Παρακαλώ εκτελέστε την εντολή '%s' για να το διορθώσετε"
+
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Παρακαλούμε διορθώστε το παραπάνω σφάλμα και φορτώστε την σελίδα ξανά."
+
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Αδυναμία bind σε LDAP. Επικοινωνήστε με τον διαχειριστή συστήματος"
+
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
+#: include/class_config.inc:899
+#, php-format
 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 "Καθορίζει αν μια γραμμή κατάστασης θα εμφανιστεί στο κάτω μέρος των λιστών, εμφανίζοντας μια σύντομη περίληψη του τύπου και του αριθμού των στοιχείων στη λίστα."
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr "Επεξεργασία κλειδώματος"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Όλες οι κατηγορίες"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr "Ελέγξτε αν η εγγραφή που υφίσταται επεξεργασία έχει στο μεταξύ τροποποιηθεί έξω από FusionDirectory."
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Ο λογαριασμός μου"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr ""
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Αυτό το αντικείμενο θα διαγραφεί!"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr ""
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Αυτό το '%s' αντικείμενο θα διαγραφεί!"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Επιβολή κρυπτογραφημένων συνδέσεων"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "This object will be deleted: %s"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Προειδοποίηση αν η συνεδρία δεν είναι κρυπτογραφημένη"
-
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr "θα εμφανίσει προειδοποίηση προς το χρήστη όταν το πρωτόκολλο http χρησιμοποιείται αντί του πρωτοκόλλου https "
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Διάρκεια συνεδρίας"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr "Στιγμιότυπα"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Ενεργοποίηση λήψεων στιγμιότυπων"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Σ'υστημα"
-
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Θύρα"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr "Αυστηρή πολιτική ονοματοδοσίας"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr "Ενεργοποίηση αυστηρού ελέγχου στα ονόματα χρηστών και ομάδων"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr "Ένα σενάριο που θα κληθεί για την εύρεση του επόμενου ελεύθερου id για χρήστες ή ομάδες."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr "Αριθμός βάση για user id"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr "Τοποθεσία εύρεσης νέου ελεύθερου user id."
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr "Αριθμός βάση για group id"
+#: include/class_msgPool.inc:435
+msgid "Example:"
+msgstr "Παράδειγμα:"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr "Τοποθεσία εύρεσης νέου ελεύθερου group id."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr "Κλάδος στον οποίο αποθηκεύονται χρήστες."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr "Κλάδος στον οποίο αποθηκεύονται ομάδες."
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Ακύρωση"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr ""
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Εφαρμογή"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr "Κλάδος στον οποίο αποθηκεύονται ρόλοι ACL."
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Αποθήκευση"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Μέθοδος διανομής id"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Προσθήκη"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr "Μέθοδος για την διανομή user/group id"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Προσθήκη του %s"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Παραδοσιακή"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Διαγραφή"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr ""
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Διαγραφή %s"
+
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Επεξεργασία..."
+
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Επεξεργασία %s..."
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Πίσω"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Ιανουάριος"
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Αποσφαλμάτωση"
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Φεβρουάριος"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr "Προβολή σφαλμάτων"
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Μάρτιος"
 
-#: plugins/config/class_configInLdap.inc:387
-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 ""
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Απρίλιος"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Μάιος"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Ιούνιος"
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Ιούλιος"
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Αύγουστος"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Σεπτέμβριος"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Οκτώβριος"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Διάφορα"
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Νοέμβριος"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Δεκέμβριος"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Κυριακή"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Δευτέρα"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "λειτουργία"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Τρίτη"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr "Πότε καλείται αυτή η εντολή"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Τετάρτη"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Πέμπτη"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr "Η εντολή που θα κληθεί"
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Παρασκευή"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Hooks"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Σάββατο"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr ""
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "Αποτυχία βάσης δεδομένων!"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "λειτουργία ανάγνωσης"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "λειτουργία προσθήκης"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "λειτουργία τροποποίησης"
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "λειτουργία διαγραφής"
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "λειτουργία αναζήτησης"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "πιστοποίηση"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr ""
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "LDAP %s απέτυχε!"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr ""
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "Η λειτουργία LDAP απέτυχε!"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Αντικείμενο"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr ""
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "Η αποστολή απέτυχε!"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr ""
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Αποτυχία αποστολής: %s"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr "Ενεργοποίηση ή όχι της ανάκτησης του κωδικού πρόσβασης"
-
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου αποστολέα"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Αποτυχία επικοινωνίας με την υπηρεσία υποδομής: %s"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr ""
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "Το '%s'  χρησιμοποιείται ήδη."
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr ""
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Το αρχείο '%s' δεν υπάρχει!"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Ως μέτρο ασφαλείας, μπορείτε να βάλετε οτιδήποτε εκεί, ακόμα και τυχαίους χαρακτήρες"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Αδυναμία ανοίγματος αρχείου '%s' για ανάγνωση!"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Να επιτρέπεται η χρήση εναλλακτικών διευθύνσεων."
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "Αδυναμία ανοίογματος αρχείου `%s' για εγγραφή!"
 
-#: plugins/config/class_recoveryConfig.inc:73
+#: include/class_msgPool.inc:806
+#, php-format
 msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Οι χρήστες θα έχουν επίσης τη δυνατότητα να εισάγουν μία από τις εναλλακτικές τους διευθύνσεις για να ανακτήσουν τον κωδικό τους"
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "Πρώτο email"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "Αδύνατη η διαγραφή αρχείου '%s'!"
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Θέμα"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "Αδύνατη η δημιουργία του φακέλου '%s'!"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Θέμα του πρώτου email"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "Αδύνατη η διαγραφή του φακέλου '%s'"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Έλεγχος για υποστήριξη %s "
+
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_msgPool.inc:866
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_msgPool.inc:876
 #, php-format
 msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
+#: include/class_msgPool.inc:884
 msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Δεύτερο email"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Θέμα του δεύτερου email"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Επιτυχής επαναφορά κωδικού πρόσβασης"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Χρονική ένδειξη"
 
-#: plugins/config/class_recoveryConfig.inc:109
-#, php-format
-msgid "Body (%s is login)"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
-#, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Γειά σας,\n\nΟ κωδικός σας άλλαξε.\nΗ υνδεση σας είναι ακόμα %s."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
-msgstr "Ρύθμιση Dashboard"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr "Ρύθμιση προσθέτου FusionDirectory dashboard"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr "Όνομα σχήματος πίνακα dashboard"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr "Αριθμός ψηφίων"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
+msgstr "Στιγμιότυπα"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr "Αριθμός ψηφίων για χρήση μετά το πρόθεμα"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr "Προθέματα"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Αρχείο"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr "Προθέματα που χρησιμοποιούνται για ids υπολογιστή"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Γραμμή"
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
-msgstr "Πίνακας dashboard χρηστών που έχουν λήξει"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
-msgstr "Αριθμός ημερών"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "κλάση"
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
-msgstr ""
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "συνάρτηση"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Πρόσθετα"
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "στατικό"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr "Ρύθμιση για πρόσθετα"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "μέθοδος"
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Πάνω"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Ανίχνευση"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Κάτω"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Τύπος"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
-msgstr "Ταξινόμηση πάνω"
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Ορίσματα"
+
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr ""
+
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
-msgstr "Ταξινόμηση κάτω"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Αποστολή αναφοράς σφάλματος"
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Επιλογή όλων"
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Εναλλαγή πληροφοριών"
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Σφάλμα"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "δημιουργήθηκε από"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Μετάβαση στον ριζικό τμήμα"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Root"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Μετάβαση ένα τμήμα επάνω"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Αρχή (Home)"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
+msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Επαναφόρτωση λίστας"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Υποβολή"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
+msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Αντιγραφή"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Αποκοπή"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
+msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Επικόλληση"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Αποκοπή αυτής της εγγραφής"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Αντιγραφή αυτής της εγγραφής"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Παρακαλώ επιλέξτε τις επιθυμητλες καταχωρήσεις"
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Επαναφορά στιγμιοτύπων"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Όνομα"
 
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Εξαγωγή λίστας"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Περιγραφή"
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Επαναφορά στιγμιοτύπου"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
+msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Δημιουργία στιγμιότυπου"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
+msgstr "Ρόλος %s"
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Δημιουργία νέου στιγμιότυπου από αυτό το αντικείμενο"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
+msgstr "Ομάδα %s"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Σφάλμα φίλτρου"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Ομάδα του χρήστη"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "Το φίλτρο είναι μη ολοκληρωμένο!"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Κανένα"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Σφάλμα άδειας"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Άγνωστο"
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
-#, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Δεν επιτρέπεται να δημιουργήσετε ένα στιγμιότυπο για %s."
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Επεξεργασία"
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
-#, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Δεν επιτρέπεται να επαναφέρετε ένα στιγμιότυπο για %s."
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Αφαίρεση"
 
-#: include/class_management.inc:679
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Σφάλμα ρύθμισης"
-
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simpleTabs.inc:401
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Σφάλμα LDAP"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Αδυναμία bind σε LDAP. Επικοινωνήστε με τον διαχειριστή συστήματος"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
+msgstr "KiB"
 
-#: include/class_config.inc:357
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
+msgstr "MiB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr "GiB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
+msgstr "TiB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "δευτερόλεπτα"
+
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "λεπτά"
+
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "ώρες"
+
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "ημέρες"
+
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr "Από πρότυπο"
+
+#: include/simpleplugin/class_simpleManagement.inc:243
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
-msgstr ""
+msgid "%s template"
+msgstr "πρότυπο %s"
 
-#: include/class_config.inc:885
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
-msgstr ""
+msgid "Show %s"
+msgstr "Εμφάνιση %s"
 
-#: include/class_config.inc:898
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
-msgstr ""
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr "ΧΩΡΙΣ ΕΤΙΚΕΤΑ"
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Όλες οι κατηγορίες"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr "Ρυθμίσεις προτύπου"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Ο λογαριασμός μου"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr "Αυτό είναι το όνομα του προτύπου"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr ""
-
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Εσωτερικό σφάλμα"
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr "Αδυναμία υπολογισμού dn: δεν υπάρχει γονική  tab class για \"%s\""
 
-#: include/class_ldap.inc:846
+#: include/simpleplugin/class_simplePlugin.inc:290
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
-msgstr ""
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Σφάλμα κατά την αποθήκευση"
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr ""
+msgid "There is already an entry with the same dn : %s"
+msgstr "Υπάρχει ήδη μια καταχώριση με το ίδιο dn : %s"
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr ""
+msgid "The entry %s is not existing"
+msgstr "Η καταχώριση  %s  δεν υπάρχει."
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
-msgstr ""
+msgid "%s (required)"
+msgstr "%s (απαιτείται)"
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_ldap.inc:1194
-#, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "Το αρχείο είναι κενό"
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_msgPool.inc:47
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Αποστολή"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Λήψη"
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Αυτό το αντικείμενο θα διαγραφεί!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr ""
 
-#: include/class_msgPool.inc:69
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Αυτό το '%s' αντικείμενο θα διαγραφεί!"
+msgid "Invalid value for %s"
+msgstr ""
 
-#: include/class_msgPool.inc:74
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "This object will be deleted: %s"
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_msgPool.inc:76
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr ""
+msgid "An integer between %d and %d"
+msgstr "Ένας ακέραιος μεταξύ %d και %d"
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr ""
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
+msgstr "Ένας ακέραιος μεγαλύτερος από %d"
 
-#: include/class_msgPool.inc:83
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr ""
+msgid "An integer smaller than %d"
+msgstr "Ένας ακέραιος μικρότερος από %d"
 
-#: include/class_msgPool.inc:87
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr ""
+msgid "A float between %f and %f"
+msgstr "Δεκαδικός μεταξύ %f και %f"
 
-#: include/class_msgPool.inc:89
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
+#, php-format
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: include/class_plugin.inc:795
+#, php-format
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr ""
+#: include/class_plugin.inc:1322
+#, php-format
+msgid "Tab \"%s\""
+msgstr "Tab \"%s\""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr ""
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr ""
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Ρόλοι ACL "
 
-#: include/class_msgPool.inc:151
+#: include/class_acl.inc:118
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: include/class_acl.inc:170
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: include/class_acl.inc:173
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
-msgstr ""
-
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr ""
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr ""
-
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr ""
-
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr ""
-
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr ""
+msgid "All users"
+msgstr "Όλοι οι χρήστες"
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:225
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "Cannot connect to %s database!"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/index.php:150
 #, php-format
-msgid "No %s server defined!"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_msgPool.inc:285
+#: html/index.php:173
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_msgPool.inc:315
+#: html/index.php:214
 #, php-format
-msgid "'%s' command for plugin %s is invalid!"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Παρακαλώ καθορίστε ένα έγκυρο όνομα χρήστη!"
+
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Παρακαλώ ελέγξτε το συνδυασμό όνομα χρήστη/κωδικός πρόσβασης."
+
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:347
+#: html/index.php:454
 #, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:362
+#: html/index.php:475
 #, php-format
-msgid "Value for '%s' is too large!"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:364
+#: html/index.php:485
 #, php-format
-msgid "'%s' must be smaller than %s!"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:378
+#: html/index.php:547
 #, php-format
-msgid "Value for '%s' is too small!"
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:380
+#: html/index.php:557
 #, php-format
-msgid "'%s' must be %d or above!"
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:404
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr ""
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "Οι ρυθμίσεις FusionDirectory %s/%s  δεν είναι αναγνώσιμες. Ακύρωση."
 
-#: include/class_msgPool.inc:406
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:417
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "The required field '%s' is empty!"
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
-msgstr "Παράδειγμα:"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Διευθύνση ηλεκτρονικής αλληλογγραφίας"
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "The field '%s' contains invalid characters"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:456
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "'%s' is not allowed:"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:456
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "'%s' are not allowed!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Ακύρωση"
-
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
-
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Εφαρμογή"
-
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Αποθήκευση"
-
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Προσθήκη"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Προσθήκη του %s"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Διαγραφή %s"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Επεξεργασία..."
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Επεξεργασία %s..."
+#: html/main.php:142
+msgid "Password change"
+msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Πίσω"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:610
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Πρόσθετο"
+
+#: html/main.php:290
 #, php-format
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Σφάλμα ρύθμισης"
+
+#: html/main.php:306
 #, php-format
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:635
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Add %s settings"
-msgstr ""
+msgid "Welcome %s!"
+msgstr "Καλώς ήλθατε στο %s!"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Αναφορές"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Ιανουάριος"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Επεξεργασία ρυθμίσεων χρηστών POSIX"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Φεβρουάριος"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Προσωπικός κατάλογος"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Μάρτιος"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "Η διαδρομή για τον αρχικό κατάλογο του χρήστη"
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Κέλυφος"
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr "Ποιο κέλυφος πρέπει να χρησιμοποιηθεί όταν ο χρήστης συνδεθεί"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Απρίλιος"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Κύρια ομάδα"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Μάιος"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr "Κύρια ομάδα του χρήστη"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Ιούνιος"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr "Κατάσταση του λογαριασμού unix του χρήστη"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Ιούλιος"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr "Εξαναγκασμός user/group id"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Αύγουστος"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr "Υποχρέωση συμπλήρωσης τιμών για user id και group id για αυτόν τον χρήστη"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Σεπτέμβριος"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr "User id"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Οκτώβριος"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr "Τιμή User id για αυτόν τον χρήστη."
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Νοέμβριος"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr "Group id"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Δεκέμβριος"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr "Τιμή Group id για αυτόν τον χρήστη"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Κυριακή"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Μέλη ομάδας"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Δευτέρα"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Λογαριασμός"
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Τρίτη"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "Ο χρήστης θα πρέπει να αλλάξει τον κωδικό πρόσβασης κατά την πρώτη του σύνδεση"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Τετάρτη"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr "Ο χρήστης πρέπει να αλλάξει συνθηματικό στην πρώτη σύνδεση (η τιμή στο πεδίο Καθυστέρηση δηλώνει το πόσες φορές μπορεί ο χρήστης να συνδεθεί πριν αναγκαστεί να αλλάξει συνθηματικό)"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Πέμπτη"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Παρασκευή"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Σάββατο"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr "Καθυστέρηση πριν την υποχρεωτική αλλαγή κωδικού πρόσβασης (σε ημέρες)"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "Αποτυχία βάσης δεδομένων!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr "Ο χρήστης θα υποχρεωθεί να αλλάξει τον κωδικό πρόσβασής του μετά από αυτό τον αριθμό ημερών (αφήστε κενό για απενεργοποίηση)"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "λειτουργία ανάγνωσης"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr "Ημερομηνία λήξης κωδικού πρόσβασης"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "λειτουργία προσθήκης"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
+msgstr "Ημερομηνία μετά από την οποία θα λήγει ο κωδικός πρόσβασης (αφήστε κενό για απενεργοποίηση)"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "λειτουργία τροποποίησης"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr "Ημέρες αδράνειας πριν από την απενεργοποίηση του χρήστη"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "λειτουργία διαγραφής"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr "Μέγιστος αριθμός ημερών αδράνειας μετά την λήξη του κωδικού πρόσβασης πριν την απενεργοποίηση του χρήστη (αφήστε κενό για απενεργοποίηση)"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "λειτουργία αναζήτησης"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr "Ημέρες μεταξύ προειδοποίησης χρήστη και λήξης κωδικού:"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "πιστοποίηση"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr "Ο χρήστης θα προειδοποιείται αυτόν τον αριθμό των ημερών πριν από τη λήξη του κωδικού πρόσβασής του (αφήστε κενό για απενεργοποίηση)"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "LDAP %s απέτυχε!"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Επιστοσύνη συστήματος"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "Η λειτουργία LDAP απέτυχε!"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Λειτουργία επιστοσύνης"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "Η αποστολή απέτυχε!"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr "Τύπος εξουσιοδότησης για αυτά τα συστήματα"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Αποτυχία αποστολής: %s"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "απενεργοποιημένο"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "πλήρης πρόσβαση"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Αποτυχία επικοινωνίας με την υπηρεσία υποδομής: %s"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "να επιτραπεί η πρόσβαση σε αυτά τα host"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Επιτρέπεται σ'αυτόν τον χρήστη να συνδέεται στην ακόλουθη λίστα διακομιστών"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "Το '%s'  χρησιμοποιείται ήδη."
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "αυτόματο"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr " έληξε"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Το αρχείο '%s' δεν υπάρχει!"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "χρονικό διάστημα χάριτος ενεργό"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Αδυναμία ανοίγματος αρχείου '%s' για ανάγνωση!"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "ενεργό"
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Αδυναμία ανοίογματος αρχείου `%s' για εγγραφή!"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "ο κωδικός πρόσβασης έχει λήξει"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "ο κωδικός πρόσβασης δεν μπορεί να αλλάξει"
+
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Αδύνατη η διαγραφή αρχείου '%s'!"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "Αδύνατη η δημιουργία του φακέλου '%s'!"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Υπέρβαση χρόνου κατά την αναμονή για κλέιδωμα. Αγνόηση κλειδώματος!"
 
-#: include/class_msgPool.inc:836
+#: plugins/personal/posix/class_posixAccount.inc:538
 #, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "Αδύνατη η διαγραφή του φακέλου '%s'"
+msgid "Group of user %s"
+msgstr "Ομάδα του χρήστη %s"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Έλεγχος για υποστήριξη %s "
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr "Ομάδες και ρόλοι"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr ""
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr "Επεξεργασία ομάδων και ρόλων του χρήστη"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Μέθοδος κωδικού"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Μέθοδος hash για χρήση κωδικού"
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Κωδικός πρόσβασης"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Μοιραίο σφάλμα"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Κωδικός Πρόσβασης (Αφήστε κενό εάν δεν επιθυμείτε να το αλλάξετε)"
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
-msgstr "ΣΦΑΛΜΑ: Σφάλμα σύνδεσης στον διακομιστή LDAP. Ο διακομιστής αποκρίθηκε '%s'."
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Κωδικός ξανά"
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
-msgstr "Η σύνδεση (uid) δεν είναι μοναδική μέσα στο δέντρο LDAP. Παρακαλούμε επικοινωνήστε με τον διαχειριστή του συστήματος σας."
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr "Ίδιος Κωδικός Πρόσβασης με τον προηγούμενο, για αποφυγή λαθών."
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Σφάλμα πιστοποίησης"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Χρήστης"
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr "Πληροφορίες λογαριασμού χρήστη"
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Σφάλμα κατά την προσθήκη κλειδώματος. Επικοινωνήστε με τους προγραμματιστές!"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr "Λογαριασμός χρήστη"
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
-msgstr "Αποτυχία δημιουργίας κλειδώματος στο δέντρο LDAP. Παρακαλούμε επικοινωνήστε με τον διαχειριστή του συστήματος σας."
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Προσωπικές πληροφορίες"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "Ο διακομιστής LDAP επίστρεψε: %s"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Επίθετο"
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr "Το επίθετο του χρήστη."
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Έχει ξεπεραστεί το όριο %d καταχωρίσεων!"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Όνομα"
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr "Το όνομα του χρήστη"
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Ρύθμιση"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr "Σύντομη περιγραφή του χρήστη"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "ελλιπής"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr "Εικόνα"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Συνέχεια οπωσδήποτε"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr "Το άβαταρ του χρήστη"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Επεξεργασία οπωσδήποτε"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr "Πληροφοριών επαφή οργανισμού"
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Τοποθεσία"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Καταχωρήσεις ανά σελίδα"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Πολιτεία"
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Εφαρμογή φίλτρου"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Διεύθυνση"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr "%sB"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr "Ταχυδρομική διεύθυνση εταιρίας"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Αρ. δωματίου"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Αριθμός δωματίου"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Τηλέφωνο"
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr "Αριθμός τηλεφώνου εργασίας"
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Κινητό"
+
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr "Αριθμός κινητού τηλεφώνου εργασίας"
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Βομβητής"
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr "Αριθμός βομβητή εργασίας"
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Φαξ"
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr "Αριθμός φαξ εργασίας"
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Ιστοσελίδα"
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "Αδύνατη η εγγραφή σε αρχείο αναθεώρησης!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr "Προσωπική ιστοσελίδα"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "Αδύνατη η ανάγνωση σε αρχείο αναθεώρησης!"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr "Πληροφορίες λογαριασμού"
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr "Λογαριασμός σύνδεσης αυτού του χρήστη."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Προειδοποίηση LDAP "
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr "Ο κωδικός του χρήστη"
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr "Αδυναμία λήψης πληροφοριών σχήματος για τον εξυπηρετητή. Δεν υπάρχει η δυνατότητα ελέγχου σχήματος!"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr "Προσωπικές πληροφορίες επαφής"
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Όνομα που εμφανίζεται"
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr "Το όνομα με το οποίο πρέπει να εμφανίζεται ο χρήστης. Χρησιμοποιείται από το Exchange."
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr "Διεύθυνση οικίας"
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Ταχυδρομική διεύθυνση οικίας"
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Ιδιωτικό τηλέφωνο"
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Τηλέφωνο οικίας"
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Πληροφορίες οργανισμού"
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Δαθέσιμες κλάσεις"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Τίτλος"
 
-#: include/functions.inc:2668
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
-msgstr ""
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr "Τίτλος προσώπου στο οργανωτικό του πλαίσιο. Κάθε τίτλος είναι μια από τις πολλές τιμές αυτού του χαρακτηριστικού"
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Οργανισμός"
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Τμήμα"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "Δεν είναι δυνατό να ανατεθεί μια free ID:"
-
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "αγνωστη μέθοδος idAllocation"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Αρ. τμήματος"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Αριθμός τμήματος"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "sambaUnixIdPool  δεν είναι μοναδική!"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Αρ. Υπαλλήλου"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "Μη διαθέσιμη ID!"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Αριθμός Υπαλλήλου"
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "Υπέρβαση μεγίστου ορίου προσπαθειών!"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Τύπος υπαλλήλου"
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Δεν είναι δυνατή η διάθεση μιας  free ID!"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Διαχειριστής"
 
-#: include/functions.inc:3345
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr "Αδύνατος ο εντοπισμός του αρχείου  '%s' - Παρακαλώ εκτελέστε την εντολή '%s' για να το διορθώσετε"
-
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr ""
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgstr "Δεν ήταν δυνατή η εύρεση του Ppolicy \"%s\" στο LDAP!"
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr "Δεν έχετε δικαίωμα αλλαγής του κωδικού σας"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Όνομα προτύπου"
+#: plugins/personal/generic/class_user.inc:621
+#, php-format
+msgid "You must wait %d seconds before changing your password again"
+msgstr "Θα πρέπει να περιμένετε %d δευτερόλεπτα για να αλλάξετε το κωδικό σας"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr "Ο κωδικός είναι στο ιστορικό παλιών κωδικών πρόσβασης."
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Αρχείο"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr "Ο κωδικός πρόσβασής σας δεν έχει αλλάξει από την τρέχουσα τιμή"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Γραμμή"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Θα πρέπει να εισάγετε τον κύριο κωδικό σας για να συνεχίσετε"
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr "Οι κωδικοί εισάγατε ως \"Νέο κωδικό\" και \"Επανάληψη νέου κωδικού\" δεν ταιριάζουν."
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "κλάση"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Νέος κωδικός "
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "συνάρτηση"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Ο παλιός και ο νέος κωδικός πρόσβασης μοιάζουν πολύ"
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "στατικό"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Ο κωδικός που εισάγατε είναι πολύ μικρός"
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "μέθοδος"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "Ο νέος κωδικός πρόσβασης περιέχει προβληματικούς χαρακτήρες Unicode!"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Ανίχνευση"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr "Στατιστικά για τους χρήστες"
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Τύπος"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
+msgstr "Στατιστικά χρηστών"
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Ορίσματα"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
+msgstr "Στατιστικά ομάδων"
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
+msgstr "Λογαριασμοί που έχουν λήξει"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
+msgstr "Πίνακας ελέγχου"
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Αποστολή αναφοράς σφάλματος"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr "Στατιστικά και διάφορες πληροφορίες"
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Εναλλαγή πληροφοριών"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
+msgstr "Αναφορά"
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Παρακαλούμε διορθώστε το παραπάνω σφάλμα και φορτώστε την σελίδα ξανά."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr "Στατιστικά"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Χρονική ένδειξη"
-
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
+msgstr "Ενεργοποίηση ή όχι της ανάκτησης του κωδικού πρόσβασης"
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου αποστολέα"
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Σελίδα "
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Ως μέτρο ασφαλείας, μπορείτε να βάλετε οτιδήποτε εκεί, ακόμα και τυχαίους χαρακτήρες"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Να επιτρέπεται η χρήση εναλλακτικών διευθύνσεων."
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Οι χρήστες θα έχουν επίσης τη δυνατότητα να εισάγουν μία από τις εναλλακτικές τους διευθύνσεις για να ανακτήσουν τον κωδικό τους"
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "σε"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "Πρώτο email"
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "σε γραμμή"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Θέμα"
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Σφάλμα XML"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Θέμα του πρώτου email"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/class_plugin.inc:795
+#: plugins/config/class_recoveryConfig.inc:90
 #, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/class_plugin.inc:1322
+#: plugins/config/class_recoveryConfig.inc:91
 #, php-format
-msgid "Tab \"%s\""
-msgstr "Tab \"%s\""
-
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Ακύρωση όλων"
-
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Αδυναμία επικόλλησης"
-
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
-msgstr "Ρυθμίσεις προτύπου"
-
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
-msgstr "Αυτό είναι το όνομα του προτύπου"
-
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
-msgstr "Αδυναμία υπολογισμού dn: δεν υπάρχει γονική  tab class για \"%s\""
-
-#: include/simpleplugin/class_simplePlugin.inc:290
+#: plugins/config/class_recoveryConfig.inc:94
 #, php-format
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Σφάλμα κατά την αποθήκευση"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Δεύτερο email"
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "Υπάρχει ήδη μια καταχώριση με το ίδιο dn : %s"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Θέμα του δεύτερου email"
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "Η καταχώριση  %s  δεν υπάρχει."
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Επιτυχής επαναφορά κωδικού πρόσβασης"
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
+#: plugins/config/class_recoveryConfig.inc:109
 #, php-format
-msgid "Unknown field \"%s\""
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Παρακαλώ επιλέξτε τις επιθυμητλες καταχωρήσεις"
-
-#: include/simpleplugin/class_simpleManagement.inc:243
+#: plugins/config/class_recoveryConfig.inc:110
 #, php-format
-msgid "%s template"
-msgstr "πρότυπο %s"
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
+#: plugins/config/class_recoveryConfig.inc:113
 #, php-format
-msgid "Show %s"
-msgstr "Εμφάνιση %s"
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Γειά σας,\n\nΟ κωδικός σας άλλαξε.\nΗ υνδεση σας είναι ακόμα %s."
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Διαμόρφωση"
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
-msgstr "Ρόλος %s"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr "Ρυθμίσεις FusionDirectory"
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
-msgstr "Ομάδα %s"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Εμφάνιση"
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Ομάδα του χρήστη"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Γλώσσα"
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Κανένα"
+#: 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 "Γλώσσα της εφαρμογής. Αν «αυτόματη» ή μη διαθέσιμη, θα χρησιμοποιηθεί η γλώσσα του browser. Αυτή η ρύθμιση μπορεί να παρακαμφθεί ανά χρήστη."
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Άγνωστο"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Θέμα"
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr "Θέμα που θα χρησιμοποιηθεί"
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
-msgstr "KiB"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Ζώνη ώρας"
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
-msgstr "MiB"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr "Ζώνη ώρας που θα χρησιμοποιηθεί"
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
-msgstr "GiB"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
-msgstr "TiB"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "δευτερόλεπτα"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "λεπτά"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Ρυθμίσεις κωδικού πρόσβασης"
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "ώρες"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "ημέρες"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (απαιτείται)"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "Ένας ακέραιος μεταξύ %d και %d"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Ελάχιστο μήκος κωδικού"
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "Ένας ακέραιος μεγαλύτερος από %d"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr "Ελάχιστο μήκος κωδικού χρήστη"
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "Ένας ακέραιος μικρότερος από %d"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr "Ελάχιστη διαφοροποίηση κωδικού"
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Δεκαδικός μεταξύ %f και %f"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr "Ελάχιστος αριθμός διαφορετικών χαρακτήρων από τον τελευταίο κωδικό"
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Χρήση λήξης λογαριασμού"
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "Το αρχείο είναι κενό"
-
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Αποστολή"
+#: plugins/config/class_configInLdap.inc:162
+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 "Καθορίζει αν μια γραμμή κατάστασης θα εμφανιστεί στο κάτω μέρος των λιστών, εμφανίζοντας μια σύντομη περίληψη του τύπου και του αριθμού των στοιχείων στη λίστα."
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Λήψη"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr "Επεξεργασία κλειδώματος"
 
-#: include/simpleplugin/class_attribute.inc:1853
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr "Ελέγξτε αν η εγγραφή που υφίσταται επεξεργασία έχει στο μεταξύ τροποποιηθεί έξω από FusionDirectory."
+
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr "ΧΩΡΙΣ ΕΤΙΚΕΤΑ"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Επιβολή κρυπτογραφημένων συνδέσεων"
+
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Προειδοποίηση αν η συνεδρία δεν είναι κρυπτογραφημένη"
+
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr "θα εμφανίσει προειδοποίηση προς το χρήστη όταν το πρωτόκολλο http χρησιμοποιείται αντί του πρωτοκόλλου https "
+
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Διάρκεια συνεδρίας"
+
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Όλοι οι χρήστες"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
+msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Ενεργοποίηση λήψεων στιγμιότυπων"
+
+#: plugins/config/class_configInLdap.inc:232
 msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Σ'υστημα"
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Παρακαλώ καθορίστε ένα έγκυρο όνομα χρήστη!"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Θύρα"
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Παρακαλώ ελέγξτε το συνδυασμό όνομα χρήστη/κωδικός πρόσβασης."
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr "Αυστηρή πολιτική ονοματοδοσίας"
+
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr "Ενεργοποίηση αυστηρού ελέγχου στα ονόματα χρηστών και ομάδων"
+
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:320
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr "Ένα σενάριο που θα κληθεί για την εύρεση του επόμενου ελεύθερου id για χρήστες ή ομάδες."
+
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr "Αριθμός βάση για user id"
+
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr "Τοποθεσία εύρεσης νέου ελεύθερου user id."
+
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr "Αριθμός βάση για group id"
+
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr "Τοποθεσία εύρεσης νέου ελεύθερου group id."
+
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
+msgstr "Κλάδος στον οποίο αποθηκεύονται χρήστες."
+
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr "Κλάδος στον οποίο αποθηκεύονται ομάδες."
+
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr "Κλάδος στον οποίο αποθηκεύονται ρόλοι ACL."
+
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Μέθοδος διανομής id"
+
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
+msgstr "Μέθοδος για την διανομή user/group id"
+
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Παραδοσιακή"
+
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Πρόσθετο"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
+msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Σφάλμα ρύθμισης"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "Οι ρυθμίσεις FusionDirectory %s/%s  δεν είναι αναγνώσιμες. Ακύρωση."
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Διευθύνση ηλεκτρονικής αλληλογγραφίας"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Αποσφαλμάτωση"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr "Προβολή σφαλμάτων"
+
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Διάφορα"
+
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "λειτουργία"
+
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr "Πότε καλείται αυτή η εντολή"
+
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr "Η εντολή που θα κληθεί"
+
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Hooks"
+
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
+#: plugins/config/class_configInLdap.inc:463
 msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
-msgstr ""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Πρόσθετα"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr ""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr "Ρύθμιση για πρόσθετα"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr "Ρυθμίσεις επεκτάσεων"
+
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr "Ρυθμίσεις επεκτάσεων του FusionDirectory"
+
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
+msgstr "Κλάδος στον οποίο θα αποθηκεύονται ομάδες αντικειμένων"
+
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
+msgstr "Επιβολή εισαγωγής κωδικού"
+
+#: plugins/config/class_mainPluginsConfig.inc:55
 msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
-#, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr ""
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr "Ρύθμιση Dashboard"
 
-#: setup/class_setupStep_Ldap.inc:168
-#, php-format
-msgid "Bind as user '%s' failed!"
-msgstr ""
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr "Ρύθμιση προσθέτου FusionDirectory dashboard"
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Προσπάθεια ξανά"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr "Όνομα σχήματος πίνακα dashboard"
 
-#: setup/class_setupStep_Ldap.inc:174
-#, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr ""
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr "Αριθμός ψηφίων"
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Ανανέωση"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr "Αριθμός ψηφίων για χρήση μετά το πρόθεμα"
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Παρακαλώ επαληθεύστε το όνομα χρήστη και τον κωδικό σας!"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr "Προθέματα"
 
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr ""
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr "Προθέματα που χρησιμοποιούνται για ids υπολογιστή"
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
+msgstr "Πίνακας dashboard χρηστών που έχουν λήξει"
+
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr "Αριθμός ημερών"
+
+#: plugins/config/class_dashBoardConfig.inc:62
 msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Τμήματα"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "τμήμα"
+
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Ιδιότητες"
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
+msgstr "Όνομα του %s"
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "A name for this %s"
+msgstr "Ένα όνομα για το %s"
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
+msgstr "Σύντομη περιγραφή του %s"
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr ""
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Κατηγορία"
 
-#: setup/class_setupStep_Finish.inc:96
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Μετακίνηση"
+msgid "Category of this %s"
+msgstr "Κατηγορία του %s"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:84
+#, php-format
+msgid "Manager of this %s"
+msgstr "Διαχειριστής του %s"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Χώρα"
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:102
+#, php-format
+msgid "A postal address for this %s"
+msgstr "Μια ταχυδρομική διεύθυνση για %s"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Αριθμός τηλεφώνου"
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr "Αριθμός φαξ"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Έλεγχος έγκρισης για βάση δεδομένων  LDAP"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr "οργανισμός"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "'Έλεγχος για αόρατους χρήστες"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Τομέας"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Έλεγχος για υπερδιαχειριστές "
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr "Τομέας"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr "Έλεγχος για προεπιλεγμένους ρόλους και ομάδες στην ACL"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Διαχείριση τμημάτων"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Έλεγχος για χρήστες εκτός της δομής δεδομένων "
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Έλεγχος για ομάδες εκτός της δομής δεδομένων"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Χρήστες και ομάδες"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr ""
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Συστατικό στοιχείο τομέα"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr ""
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr "συστατικό στοιχείο τομέα"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Περιοχή"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr ""
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
+msgstr "τοπικότητα"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Κατάλογος των τμημάτων"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr ""
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr "χώρα"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Διαχείριση χρηστών"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Κλείδωμα λογαριασμού"
+
+#: plugins/admin/users/class_userManagement.inc:192
 #, php-format
 msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr "Μέθοδος κωδικού πρόσβασης \"%s\" δεν υποστηρίζει κλείδωμα. Ο λογαριασμός \"%s\" δεν έχει κλειδώσει!"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Ξεκλείδωμα λογαριασμού"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Κλείδωμα λογαριασμού"
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr ""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Λίστα χρηστών"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr ""
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Επίθετο"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr ""
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Βαπτιστικό"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
-msgstr ""
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Κλείδωμα χρηστών"
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr ""
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Ξεκλείδωμα χρηστών"
+
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Εφαρμογή προτύπου"
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
-msgstr ""
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Νέος χρήστης από πρότυπο"
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
-msgstr ""
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Επεργασία χρήστη"
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Ομάδες"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Αφαίρεση χρήστη"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Ρόλος"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr "Πληροφορίες ρόλου"
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
+msgstr "Ρόλος οργανισμού"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Πληροφορίες"
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr "Όνομα αυτής της ομάδας"
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Περιγραφή του ρόλου"
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Αριθμός τηλεφώνου"
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Αριθμός φαξ"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Προσθήκη χρηστών για το ρόλο"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
+msgstr "Διαχείριση ομάδων και ρόλων"
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
+msgstr "Επεξεργασία ιδιοτήτων ρόλου"
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Επεξεργασία ιδιοτήτων posix"
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
+msgstr "Εμφάνιση ομάδων χρήστη"
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Εμφάνιση αρχικών ομάδων"
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
+msgstr "Λίστα ρόλων οργανισμών"
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
+msgstr "Εμφάνιση ομάδων εφαρμογών"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Εμφάνιση ομάδων αλληλογραφίας"
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Εμφάνιση ομάδων samba"
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
+msgstr "Εμφάνιση ομάδων server"
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr "Εμφάνιση ομάδων σταθμών εργασίας"
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr "Εμφάνιση ομάδων windows"
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
+msgstr "Εμφάνιση ομάδων τερματικού"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr "Εμφάνιση ομάδων εκτυπωτή"
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
+msgstr "Εμφάνιση ομάδων τηλεφώνου"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:63
+#, php-format
+msgid "Unknown type : %s"
+msgstr "'Αγνωστος τύπος: %s"
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
+msgstr "Ανύπαρκτο dn: %s"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Ομάδα αντικειμένου"
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr "Πληροφορίες ομάδας αντικειμένου"
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Ομάδα"
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr "Σύντομη περιγραφή αυτής της ομάδας"
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Αντικείμενα μέλους"
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr "Αντικείμενα μέλους για αυτή την ομάδα"
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr "Επιτρέπεται σ'αυτή την ομάδα να συνδέεται στην ακόλουθη λίστα διακομιστών"
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr "Τοποθετηση σταθμών εργασίας και τερματικών στην ίδια ομάδα δεν επιτρέπεται"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr ""
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Λίστα ομάδων"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr "Πληροφορίες ομάδας POSIX"
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr "Ομάδα POSIX"
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr "Ομάδα χρηστών POSIX"
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Εξαναγκασμός GID"
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr "Εξαναγκασμός τιμής GID για αυτή την ομάδα"
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr "Τιμή GID για αυτήν την ομάδα"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr ""
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Μέλη ομάδας"
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr "Αναθέσεις ACL"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "Ανάθεση ACL"
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr "Διάλογος Ανάθεσης ACL"
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr "Διάλογος λίστας ελέγχου ανάθεσης ρόλων"
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Λειτουργία"
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr "Αυτό εφαρμόζεται σε ολόκληρο το υποδένδρο ή μόνο στη βάση;"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr "Υποδέντρο"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr "Base only"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr "Ρόλος για εφαρμογή"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr "Για όλους τους χρήστες"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr "Εφαρμογή αυτού του ACL για όλους τους χρήστες LDAP"
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Μέλη"
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Φίλτρο"
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr "Χρήστες ή ομάδες που ανατίθεται αυτός ο ρόλος."
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr "Ανάθεση ACL"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr "Ανάθεση ρόλων ελέγχου πρόσβασης"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr "Ανάθεσεις"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr "Αναθέσεις ρόλου ACL για αυτή την βάση"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr "Ανάθεσεις σε αντικείμενο ή υποδέντρο %s"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Δεν υπάρχουν ρυθμίσεις ACLs για αυτήν την κατηγορία"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL για αυτά τα αντικείμενα: %s"
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Επεξεργασία κατηγορίας ACL"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Επαναφορά κατηγορίας ACL"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Όλα τα αντικείμενα στο τρέχον υποδέντρο"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
-msgstr "Manager concerned"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "ανάγνωση"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "εγγραφή"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr "cn"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Εμφάνιση.απόκρυψη προχωρημένων ρυθμίσεων"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "telephoneNumber"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Δημιουργία αντικειμένων"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Μετακίνηση αντικειμένων"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
-msgstr "διαχειριστής"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Αφαίρεση αντικειμένων"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr "αλληλογραφία"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Παροχή δικαιωμάτων σε ιδιοκτήτη"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Ολοκλήρωση αντικειμένου"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
+msgstr "Διαχείριση ρόλων ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Περιέχει ρυθμίσεις για αυτά τα αντικείμενα: %s"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Ρόλοι ελέγχου πρόσβασης"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "Ρόλος ACL"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
+msgstr "Ένα όνομα για αυτόν τον ρόλο"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
+msgstr "Σύντομν περιγραφή περιγραφή για αυτό το ρόλο"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
+msgstr "ACLs που είναι μέρος αυτής της ομάδας"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr ""
+
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Δημιουργία ενός νέου λογαριασμού διαχειριστή FusionDirectory"
+
+#: setup/setup_migrate_adminAccount.tpl.c:5
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Ρυθμίσεις χρηστών"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Αναγνωριστικό χρήστη"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Εκκαθάριση κωδικού"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Κωδικός (ξανά)"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Ορισμός νέου κωδικού"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Προσωπική εικόνα"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Εικόνα χρήστη"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Δημιουργία μιας βασικής ρύθμισης απλού site"
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Βρείτε κάθε πιθανό σφάλμα ρύθμισης"
+
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr "Για συνέχεια:"
+
+#: setup/setup_welcome.tpl.c:32
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Μόνο για ανάγνωση"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Πατήστε το κουμπί 'Επόμενο' για να τελειώσετε."
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr ""
+
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Τρέχουσα"
+
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Ύστερα από την μετάβαση"
+
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Κλείσιμο"
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr "Μετακίνηση επιλεγμένων εγγραφών σε αυτό το δέντρο"
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr ""
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Αν θέλετε να μάθετε τι θα γίνει όταν συγχωνεύονται οι επιλεγμένες καταχωρήσεις, χρησιμοποιήστε το κουμπί 'Εμφάνιση των αλλαγών' για να δείτε το LDIF."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr ""
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Εμφάνιση αλλαγών"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Επανάληψη ελέγχου"
+
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Δημιοτυγήστε το δικό σας αρχείο ρυθμίσεων"
+
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Λήψη ρύθμισης"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Κατάσταση:"
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Φίλτρο"
+
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
 msgstr "Χαμένος κωδικός"
@@ -4939,17 +4848,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Αν είστε σίγουροι, πατήστε \"Διαγραφή\" για να συνεχίσετε ή \"Ακύρωση\" για να εγκαταλείψετε. "
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Οθόνη σύνδεσης"
@@ -4977,26 +4875,141 @@ msgstr "Σύνδεση"
 msgid "Click here to log in"
 msgstr "Πατήστε εδώ για να συνδεθείτε"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr "Προειδοποίηση: Πρόκειται να διαγραφούν τα παρακάτω αντικείμενο"
+
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Αν είστε σίγουροι, πατήστε \"Διαγραφή\" για να συνεχίσετε ή \"Ακύρωση\" για να εγκαταλείψετε. "
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Κύριο"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Αποσύνδεση"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Συνδεδεμένος σε:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "Η συνεδρία λήγει σε  %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Μόνο για ανάγνωση"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Οδηγός αντιγραφής και επικόλλησης"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Η ενέργεια ολοκληρώθηκε"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Πληροφορίες"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "Εκχωρημένο ACL για την τρέχουσα εγγραφή"
@@ -5038,214 +5051,200 @@ msgid "ACL for this object"
 msgstr " ACL για αυτό το προϊόν."
 
 #: ihtml/themes/breezy/acl.tpl.c:47
-msgid "Available roles"
-msgstr "Διαθέσιμοι ρόλοι"
-
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr "Προειδοποίηση: Πρόκειται να διαγραφούν τα παρακάτω αντικείμενο"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Οδηγός αντιγραφής και επικόλλησης"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
-msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Η ενέργεια ολοκληρώθηκε"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Πληροφορίες"
-
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Κύριο"
-
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Αποσύνδεση"
-
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Συνδεδεμένος σε:"
-
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "Η συνεδρία λήγει σε  %d!"
+msgid "Available roles"
+msgstr "Διαθέσιμοι ρόλοι"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Τρέχουσα"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Ύστερα από την μετάβαση"
+#: plugins/generic/references/contents.tpl.c:5
+msgid ""
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Κλείσιμο"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Δημιοτυγήστε το δικό σας αρχείο ρυθμίσεων"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Ρυθμίσεις χρηστών"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Εκκαθάριση κωδικού"
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Λήψη ρύθμισης"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Ορισμός νέου κωδικού"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Κατάσταση:"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Προσωπική εικόνα"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Δημιουργία ενός νέου λογαριασμού διαχειριστή FusionDirectory"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Εικόνα χρήστη"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Αναγνωριστικό χρήστη"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Κωδικός (ξανά)"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:2
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Δημιουργία μιας βασικής ρύθμισης απλού site"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Βρείτε κάθε πιθανό σφάλμα ρύθμισης"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
-msgstr "Για συνέχεια:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
+msgstr "Manager concerned"
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr "cn"
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "telephoneNumber"
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Πατήστε το κουμπί 'Επόμενο' για να τελειώσετε."
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
+msgstr "διαχειριστής"
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
+msgstr "αλληλογραφία"
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
-msgstr "Μετακίνηση επιλεγμένων εγγραφών σε αυτό το δέντρο"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Αν θέλετε να μάθετε τι θα γίνει όταν συγχωνεύονται οι επιλεγμένες καταχωρήσεις, χρησιμοποιήστε το κουμπί 'Εμφάνιση των αλλαγών' για να δείτε το LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Εμφάνιση αλλαγών"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Επανάληψη ελέγχου"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
diff --git a/locale/en/fusiondirectory.po b/locale/en/fusiondirectory.po
index 7349b2cf65f184c92b30ef858a4d9be63e14b362..e1c27ff0bc6398881ddfa04c02dabaae0bed8417 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-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -18,4846 +18,4756 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid ""
+"The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid ""
+"The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1084
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been "
-"locked!"
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "ACL for these objects: %s"
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Delete"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a href=\"recovery.php"
+"\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:678
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:1130
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new password"
-"\" do not match."
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr ""
+
+#: include/functions.inc:2641
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:2645
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr ""
+
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your "
+"passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
-#, php-format
-msgid "Group of user %s"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later on."
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr ""
+
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
+#: include/class_msgPool.inc:806
+#, php-format
 msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
+#: include/class_msgPool.inc:876
+#, php-format
 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:402
-msgid "Debug level"
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using "
-"a dialog."
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a "
-"single object."
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/php_setup.inc:132
+msgid "Type"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:1134
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:1139
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:1170
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (%s is login)"
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use "
-"%s for the user login."
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid ""
+"The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module \"imagick"
+"\" to be installed!"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your "
-"passwords are not encrypted."
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
+#, php-format
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
+#, php-format
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on \"%2$s"
+"\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/class_plugin.inc:1322
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/class_acl.inc:118
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate "
+"your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/class_acl.inc:173
 #, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgid "All users"
 msgstr ""
 
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "while operating on LDAP server %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: html/index.php:150
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:1151
-#, php-format
-msgid "Error line %s, references to an external file are not supported"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: html/index.php:173
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:214
 #, php-format
-msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:69
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr ""
+
+#: html/index.php:454
 #, php-format
-msgid "This '%s' object will be deleted!"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/index.php:475
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:485
 #, php-format
-msgid "This '%s' object will be deleted: %s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:557
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr ""
+
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/class_passwordRecovery.inc:495
+#, php-format
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/class_passwordRecovery.inc:498
+#, php-format
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/class_passwordRecovery.inc:506
+#, php-format
+msgid ""
+"The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:151
-#, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:161
-#, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:290
+#, php-format
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not "
+"a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:245
+#: html/main.php:306
 #, php-format
-msgid "Cannot select %s database!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:255
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "No %s server defined!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a href=\"recovery.php"
-"\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:607
+#, php-format
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2117
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new password"
+"\" do not match."
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:3345
+#: plugins/config/class_recoveryConfig.inc:91
 #, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use "
+"%s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
+#: 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 ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
+#: plugins/config/class_configInLdap.inc:162
 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!"
+"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 ""
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on \"%2$s"
-"\" as \"%2$s\" already depends on \"%1$s\""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:197
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later on."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid ""
-"The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module \"imagick"
-"\" to be installed!"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate "
-"your acls to the new format."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using "
+"a dialog."
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not "
-"a file)!"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a "
+"single object."
 msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid ""
-"The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been "
+"locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid ""
-"The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid ""
-"The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following objects"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list "
-"of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr ""
+
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want "
+"to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface. "
+"If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server "
-"from getting too much load. The easiest way to handle big databases without "
-"long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4931,17 +4841,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4969,6 +4868,65 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server "
+"from getting too much load. The easiest way to handle big databases without "
+"long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:2
 msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
@@ -4977,16 +4935,72 @@ msgstr ""
 msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"FusionDirectory to get your data back."
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
 msgstr ""
 
 #: ihtml/themes/breezy/acl.tpl.c:2
@@ -5033,211 +5047,196 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want "
-"to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface. "
-"If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list "
+"of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/es/fusiondirectory.po b/locale/es/fusiondirectory.po
index d4cf34c0ff62ed04332f34be134b2dd793c90a2f..6515788601d47f6ef28b127047279f7c263904e7 100644
--- a/locale/es/fusiondirectory.po
+++ b/locale/es/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n"
@@ -17,4849 +17,4758 @@ msgstr ""
 "Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "¡Bienvenido %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Referencias"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Rol"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nombre"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Idioma preferido"
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Selección de idiomas"
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Descripción"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Este paso le permite seleccionar su idioma preferido"
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Número de teléfono"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Número de Fax"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automatico"
 
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "Comprobaciones de módulos y extensiones PHP"
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Grupo"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Comprobación de la instalación"
 
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Comprobación básica de la versión de PHP y las extensiones."
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Comprobando la versión de PHP"
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP debe ser versión '%s' o superior."
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Propiedades"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Por favor actualize a la versión soportada."
 
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory requiere este modulo para poder hablar con su servidor LDAP."
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Forzar GID"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory requiere este modulo para una interfaz internacionalizada."
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory requiere este modulo para comunicarse con distintos tipos de servidores y protocolos."
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory requiere este modulo para la integración con Samba"
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory requiere ya sea el modulo 'mhash' o 'sha1' para usar encripción SSHA"
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Miembros del grupo"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory requiere este modulo para poder hablar con un servidor IMAP."
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Sistema de seguridad"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Modo seguro"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory requiere este modulo para manejar cadenas unicode."
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "desactivado"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory requiere esta extensión para manejar imágenes."
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "Acceso sin restricciones"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "modulo de compresión"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "Permitir el acceso a estos equipos"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory requiere esta extensión para manejar capturas."
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "registr_globals es un mecanismo de PHP para registrar todas las variables globales de tal manera que sean accesible desde scripts sin que cambien su ámbito. Esto puede ser un problema de seguridad."
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Aviso"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Busque 'register_globals' en su php.ini y modifíquelo por 'Off'."
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Tiempo de espera agotado esperando un bloqueo. ¡Ignorando bloqueo!"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP usa este valor en el recolector de basura para eliminar las sesiones antiguas."
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Ajustando este valor a un día impedirá la perdida de sesiones y cookies antes de que realmente se desconecte por tiempo."
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Busque 'sessio.gc_maxlifetime' en su php.ini y modifíquelo a 86400 o mayor."
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Grupo de objetos"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Off"
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Objetos miembros"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Busque 'session.auto_start' en su php.ini y modifíquelo a 'Off'."
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:175
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Lista de grupos"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Acciones"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Crear"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Editar"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Eliminar"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Esta opción está relacionada con el manejo de salida de PHP. Desactive esta opción poniéndola en off para mejorar el rendimiento."
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Busque 'implicit_flush' en su php.ini y modifíquelo a 'Off'."
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "El tiempo de ejecución debe ser de al menos 30 segundos."
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Busque 'max_execution_time' en su php.ini y modifíquelo a '30' o mayor."
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Aumente la seguridad del servidor modificando el parámetro 'expose_php' a 'off'. PHP no debería enviar ningún tipo de información sobre el servidor que esta ejecutando la aplicación."
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Editar características posix"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Busque 'expose_php' en su php.ini y modifíquelo a 'Off'."
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Aumente el rendimiento de su servidor modificando 'magic_quotes_gpc' a 'off'"
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Mostrar grupos primarios"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Busque 'zend.ze1_compatibility_mode' en su php.ini y modifíquelo a 'Off'."
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Bienvenido"
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Bienvenido al asistente de configuración de FusionDirectory"
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Mensaje de Bienvenida"
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Mostrar grupos de correo"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Mostrar grupos de samba"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Migrar"
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Inspección LDAP"
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Analizar el arbol LDAP actual por compatibilidad con FusionDirectory"
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Analizando objetos en la entrada raíz"
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Comprobando permisos en la base de datos LDAP"
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Componentes del dominio"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Comprobando usuarios invisibles"
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Comprobando súper administrador"
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Departamento"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Departamentos"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Comprobando cuentas fuera del árbol de usuarios"
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "departamento"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Comprobando grupos fuera del árbol de grupos"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Comprobando departamentos invisibles"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Comprobando números UID duplicados"
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Categoría"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "La consulta LDAP ha fallado"
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Error"
 
-#: plugins/admin/departments/class_department.inc:80
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Website of this %s"
-msgstr ""
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "Objeto '%s' de FusionDirectory faltante!"
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Gestor"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Por favor compruebe su instalación"
 
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Manager of this %s"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Localización"
-
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Provincia"
-
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "País"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "No se puede un tipo de objeto estructural en su entrada raíz. Por favor intente añadir la clase de objeto '%s' manualmente."
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Dirección"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Error LDAP"
 
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "A postal address for this %s"
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Teléfono"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Número de teléfono"
-
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
-
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Aviso"
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr ""
-
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Usuarios y grupos"
-
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Localidad"
-
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "Se encontraron %s usuarios que no serán visibles en FusionDirectory o están incompletos."
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Dominio"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Error de migración"
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Lista de Departamentos"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organización"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Lista de usuarios"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Apellido"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Crear"
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Nombre de pila"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Usuarios"
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Inicio"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Grupos"
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Usuario"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "No hay una cuenta de administrador FusionDirectory dentro de su LDAP."
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Plantilla"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Error"
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Bloquear usuarios"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Desbloquear usuarios"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Aplicar plantilla"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Nuevo usuario desde plantilla"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Editar usuario"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Mover usuarios al árbol de usuarios configurado"
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Eliminar usuario"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Usuarios"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Gestión de usuarios"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "a"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Las siguientes referencias se actualizaran"
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Permisos"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Encontrados '%s' grupos fuera del árbol configurado '%s'."
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Bloqueo de cuenta"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Se encontraron %s departamentos que no serán visibles en FusionDirectory"
+
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Desbloquear cuenta"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Bloquear cuenta"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Nombre de la localización"
+
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "No hay ACL configuradas en esta categoría"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "URI de conexión"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACLs que tienen estos objetos: %s"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Editar la categoría ACL"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "Conexión TLS"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
-msgstr "Eliminar"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Eliminar la categoría ACL"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Lista de categorías ACL disponibles"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Todos los objetos en el subárbol actual"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Autenticación"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "leer"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "DN del administrador"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "escribir"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Contraseña de administrador"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objeto"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Mostrar/ocultar caracteristicas avanzadas"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Estado"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Crear objetos"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Estado actual"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Mover objetos"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Eliminar Objetos"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Configuración LDAP"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Garantizar permiso al propietario"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Conectividad LDAP"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Objeto completo"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Este dialogo realiza la configuración básica de la conectividad LDAP para FusionDirectory"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Roles ACL"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "¡La conexión anónima al servidor '%s' ha fallado!"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "¡La conexión como usuario '%s' ha fallado!"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Reintento"
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Ldap.inc:174
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Tiene configuraciones de los siguientes objetos: %s"
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "La conexión anónima al servidor '%s' ha tenido exito."
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Roles de control de acceso"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Refresco"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "¡Por Favor especifique un usuario y contraseña!"
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "¡La conexión como usuario '%s' al servidor '%s' ha tenido exito!"
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Terminar"
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Terminar - Escribir el archivo de configuración"
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Escribir archivo de configuración"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "El fichero de configuración es universalmente legible. ¡Por favor modifique los permisos del archivo!"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "En estos momentos la configuración no es accesible o no existe."
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Después de descargar y colocar el archivo en %s, por favor asegúrese de que el usuario bajo el cual está corriendo el servidor web es capaz de leer %s, mientras que otros usuarios no deben poder."
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Error de configuración"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr ""
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Completado"
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
-msgstr ""
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Siguiente"
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
-msgstr ""
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "error interno"
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "Asignación de ACL"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Entrada fallida: %s"
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr ""
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "¡Se ha indicado un objectType vacio o no válido!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Modo"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "Sin configurar"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr ""
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Error del filtro"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr ""
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "¡El filtro está incompleto!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr ""
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Permisos"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr ""
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Error de permisos"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr ""
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "No tiene permisos para crear una instantanea para %s."
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr ""
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "No tiene permisos para recuperar una instantanea para %s."
+
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "No hay declaración de pestaña para '%s' en su archivo de configuración. ¡No se puede crear la instancia del plugin!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Miembros"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Raíz"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr ""
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Enviar"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr ""
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Arriba"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr ""
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Abajo"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
-msgstr ""
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Seleccione todos"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr ""
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "Creado por"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr ""
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Ir al departamento raíz"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr ""
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Subir un departamento"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr ""
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Inicio"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr ""
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Recargar lista"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr ""
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Acciones"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr ""
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Copiar"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Metodo de contraseña"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Mover"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr ""
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Pegar"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Contraseña"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Mover esta entrada"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr ""
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Copiar esta entrada"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr ""
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Recuperar instantánea"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr ""
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Exportar lista"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Información personal"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Recuperar instantanea"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Apellido"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Crear instantánea"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr ""
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "¡Crear una nueva instantánea de este objeto!"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Nombre"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Error fatal"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr ""
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "en"
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
-msgstr ""
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "En linea"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr ""
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Error XML"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr ""
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Error en la configuración"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Número sala"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Página"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Número de habitación"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "No se puede exportar a PDF: no se ha instalado la librería FPDF."
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr ""
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Móvil"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr ""
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "¡El canal requerido no existe!. Por favor  contacte con su Administrador."
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Buscapersonas"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Cancelar todo"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr ""
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "No puedo pegar"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr ""
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Inicio"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Página Web"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Plantilla"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr ""
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Nombre de la plantilla"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr ""
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "Error fatal: no se han definido un emplazamiento para las clases - por favor ejecute '%s' para solucionar esto"
+
+#: include/functions.inc:142
+#, php-format
+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'"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Idioma preferido"
+#: include/functions.inc:512
+#, 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'."
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Error de Autenticación"
+
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Nombre a Mostrar"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Ha ocurrido un problema al añadir un bloqueo. ¡Contacte con los desarrolladores!"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr ""
+#: include/functions.inc:678
+#, 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!"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr ""
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "El servidor LDAP devolvio: %s"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Dirección Postal personal"
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Teléfono privado"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "¡El límite máximo de %d entradas se ha sobrepasado!"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Número de teléfono personal"
+#: include/functions.inc:1132
+#, 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"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Información corporativa"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Configurar"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Título"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "incompleto"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr ""
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Continuar de cualquier manera"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Editar de cualquier manera"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Número departamento"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr "Has decidido editar las siguientes entradas LDAP %s"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Número del departamento"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Entradas por página"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Número empleado"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Aplicar filtro"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Número de empleado"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Categoría profesional"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:2092
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:2094
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Necesita introducir su contraseña actual para continuar."
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nueva contraseña"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "La contraseña actual y la introducida como nueva son demasiado parecidas."
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "La nueva contraseña es demasiado corta."
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "¡No se puede escribir en el archivo de revisión!"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "La clave contiene caracteres unicode posiblemente problemáticos!"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "No se puede leer el archivo de revisión!"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Editar parametros de usuarios POSIX"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Aviso LDAP"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Directorio de usuario"
+#: include/functions.inc:2559
+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!"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Grupo primario"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Estado"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Clase(s) disponibles"
+
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr ""
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "No se puede asignar un identificador (ID) libre:"
+
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "¡método de asignación de id desconocido!"
+
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "¡%sPoolMin >= %sPoolMax!"
+
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "¡sambaUnixIdPool no es único!"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr ""
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "¡No hay ID disponibles!"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Pertenencia a grupo"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "¡Excedido el número de intentos máximo!"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Cuenta"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "¡No se puede asignar un identificador (ID) libre!"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "El usuario debe introducir la contraseña en el primer inicio de sesión"
+#: include/functions.inc:3321
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr ""
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Todos los objetos en esta categoría"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
-msgstr ""
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Por favor solucione el problema y actualize la página."
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr ""
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Error XML en fusiondirectory.conf: %s en la línea %d"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/class_config.inc:280
+#, php-format
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr ""
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "No se puede conectar a LDAP: Por favor consulte con el administrador de sistemas."
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr ""
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/class_config.inc:899
+#, php-format
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr ""
+"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'."
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr ""
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Todas las categorías"
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr ""
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Mi cuenta"
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr ""
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Seleccione para mostrar objetos de tipo '%s'."
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "Sin configurar"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Seleccione para mostrar objetos conteniendo '%s'."
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automático"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Seleccione para mostrar objetos que tengan '%s' activado"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "expiró"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Seleccione para buscar dentro de los subárboles"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "Periodo de gracia activado"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Buscar en subárboles"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "activo"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "¡El objeto será eliminado!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "la contraseña expiró"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "¡El objeto '%s' será eliminado!"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "no puede cambiar la contraseña"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Este objeto será eliminado: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "El objeto '%s' será eliminado: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Este objeto será eliminado"
+
+#: include/class_msgPool.inc:83
 #, php-format
-msgid "Group of user %s"
-msgstr ""
+msgid "This '%s' object will be deleted:"
+msgstr "El objeto '%s' será eliminado:"
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr ""
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Estos objetos serán eliminados: %s"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr ""
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Los objetos '%s' serán eliminados: %s"
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr ""
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "¡No tiene permisos para eliminar este objeto!"
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr ""
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "No tiene permisos para eliminar este objeto:"
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr ""
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "No tiene permisos para eliminar estos objetos:"
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Grupos de objetos"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "¡No tiene permisos para crear este objeto!"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr ""
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "No tiene permisos para crear este objeto:"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr ""
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "No tiene permisos para crear estos objetos:"
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "¡No tiene permisos para modificar este objeto!"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Configuración"
-
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "¡No tiene permisos para ver este objeto!"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Temas y apariencia"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "No tiene permisos para ver el objeto:"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Idioma"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "No tiene permisos para ver estos objetos:"
 
-#: 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 ""
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "¡No tiene permisos para mover este objeto!"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Tema"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "No tiene permisos para mover el objeto:"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr ""
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "No tiene permisos para mover estos objetos:"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Zona de uso horario"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Información de conexión"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr ""
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "¡No se puede conectar a la base de datos %s!"
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr ""
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "¡No se puede seleccionar la base de datos %s!"
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr ""
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "¡No se ha definido el servidor %s!"
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr ""
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "¡No se ha podido ejecutar la consulta %s!"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Parámetros de Contraseña"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "¡El campo '%s' tiene una palabra reservada!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr ""
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "¡El comando especificado como método %s para la extensión '%s' no existe!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr ""
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "¡El comando '%s' no es válido!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr ""
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "¡'%s' comando para la extensión %s no es válido!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr ""
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "¡'%s' comando (%s) no es válido!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Longitud mínima de la contraseña"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "¡'%s' comando (%s) para la extensión %s no es válido!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr ""
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "¡No se puede ejecutar el comando '%s'!"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr ""
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "¡No se puede ejecutar el comando '%s' para la extensión %s!"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr ""
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "¡No se puede ejecutar el comando '%s' (%s)!"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Usar caducidad de cuenta"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "¡No se puede ejecutar el comando '%s' (%s) para la extensión %s!"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr ""
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "¡El valor especificado como '%s' es demasiado grande!"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr ""
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "¡'%s' debe ser menor que %s!"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr ""
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "¡El valor especificado como '%s' es demasiado pequeño!"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr ""
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "¡'%s' debe ser %d o superior!"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr ""
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "¡'%s' depende de '%s' - Por favor introduzca ambos valores!"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Mostrar resumen en listados"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "¡Ya existe una entrada con el atributo '%s' en el sistema!"
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr ""
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "¡El campo obligatorio '%s' está vacio!"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr ""
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "'%s' no está permitido:"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr ""
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "¡'%s' no están permitidos!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr ""
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "¡Extensión PHP %s no encontrada!"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Inicio y sesión"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Atributo de inicio de sesión"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Aplicar"
+
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Guardar"
+
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Añadir"
+
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Añadir %s"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr ""
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Eliminar"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Forzar conexiones seguras"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Eliminar %s"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Editar..."
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Avisar si la sesión no esta codificada"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Editar %s..."
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Atrás"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Duración de sesiones."
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "¡Esta cuenta tiene extensiones %s no validas!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Esta cuenta tiene características %s activadas. Puede desactivarla pulsando aquí"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Esta cuenta tiene las características %s activadas. ¡Para desactivarlas, necesita eliminar las caracteristicas %s primero!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Esta cuenta tiene características %s desactivadas. Puede activarla pulsando aquí"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Esta cuenta tiene las características %s desactivadas. ¡Para activarlas, necesita añadir las caracteristicas %s primero!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Añadir caracteristicas %s"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Eliminar las caracteristicas %s"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Pulse en el botón - Editar - para cambiar la información en esta ventana"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Enero"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Activar instantaneas"
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Febrero"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Marzo"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Base de instantaneas"
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Abril"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Mayo"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Junio"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Julio"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Agosto"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Septiembre"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Octubre"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Noviembre"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Diciembre"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Domingo"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Lunes"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Martes"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Miércoles"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Nombre de equipo"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Jueves"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Viernes"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Puerto"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Sábado"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "Operación de base de datos fallida!"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "lectura"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "adición"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Almacén de grupos y usuarios"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "modificación"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "Atributo 'dn' de los usuarios"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "eliminación"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "busqueda"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "autenticación"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr ""
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "¡LDAP %s ha fallado!"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr ""
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "¡La consulta LDAP ha fallado!"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objeto"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr ""
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "¡Ha fallado el subir archivo!"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr ""
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Ha fallado el subir archivo: %s"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr ""
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "¡Ha fallado la comunciación con el servicio de infraestructura!"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr ""
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Ha fallado la comunciación con el servicio de infraestructura: %s"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr ""
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "'%s' esta todavía en uso por el objeto: %s"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr ""
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "'%s' esta todavía en uso."
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr ""
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "'%s' esta todavía en uso por los objetos: %s"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr ""
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "¡El archivo %s no existe!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr ""
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "¡No se puede abrir el archivo '%s'!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr ""
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "¡No se puede grabar el archivo '%s'!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr ""
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "El valor para '%s' no esta configurado o no es válido.¡Por favor compruebe el archivo de configuración!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr ""
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "¡No se puede eliminar el fichero '%s'!"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr ""
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "¡No se puede crear la carpeta '%s'!"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr ""
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "¡No se puede eliminar la carpeta '%s'!"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr ""
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Comprobando soporte %s"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr ""
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
+msgstr "Instala y activa el módulo de PHP %s."
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr ""
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "No se puede inicializar la clase '%s'! Posiblemente hay un complemento faltante en su instalación de FusionDirectory?"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr ""
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr "¡La base introducida no es válida, se ha dejado el valor anterior!"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Marca de tiempo"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr "Recuperar"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Depurando"
-
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Tiempo de consulta máxima de LDAP"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Archivo"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr ""
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Linea"
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Registrar estadísticas LDAP"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "Error PHP"
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr ""
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "clase"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Nivel de depuración"
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "función"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr ""
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "estático"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Varios"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "método"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr ""
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Traza"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr ""
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Tipo"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr ""
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argumentos"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "Modo"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "¡La generación de esta página ha provocado errores en el interprete PHP!"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr ""
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Enviar informe de errores al equipo de FusionDirectory"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr ""
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Enviar informe de errores"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr ""
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Modificar información"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Métodos"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Aviso e rendimiento"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr ""
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr "El rendimiento LDAP es bajo: ¡la última consulta tardó sobre %.2fs!"
 
-#: plugins/config/class_configInLdap.inc:450
+#: include/class_ldap.inc:846
+#, php-format
 msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "mientras operaba en '%s' usando el servidor LDAP '%s'"
+
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "mientras operaba en el servidor LDAP '%s'"
+
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automatico"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Recuperación de clave"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Ha habido un error importando dn: '%s', ¡Por favor compruebe su LDIF desde la línea %s en adelante!"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Por favor seleccione las entradas que desee"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Opciones de recuperación de clave"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nombre"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Descripción"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Grupo de usuarios"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Ninguno"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Desconocido"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Editar"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Eliminar"
 
-#: plugins/config/class_recoveryConfig.inc:73
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
 msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr ""
-
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "No hay definiciones de extensión para iniciar '%s', por favor compruebe su archivo de configuración."
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Asunto"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+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"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Enlace de recuperación de clave"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: plugins/config/class_recoveryConfig.inc:90
-#, php-format
-msgid "Body (first %s is login, second is link)"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
-#, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Saludos,\nAquí están los datos solicitados:\n\n- Usuario: %s\n- Enlace: %s\n\nEl enlace solo es valido por 10 minutos."
-
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Recuperación de clave realizada con exito"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "segundos"
 
-#: plugins/config/class_recoveryConfig.inc:109
-#, php-format
-msgid "Body (%s is login)"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "minutos"
+
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "horas"
+
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "días"
+
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_simpleManagement.inc:243
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "%s template"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Saludos,\n\nSu clave ha sido cambiada.\nSu nombre de usuario aun es %s."
+msgid "Show %s"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
 msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+"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 ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Arriba"
-
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Abajo"
-
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Seleccione todos"
-
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Error"
-
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "Creado por"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
+msgstr "No puedo leer el archivo: %s"
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Ir al departamento raíz"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "el archivo está vacío"
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Raíz"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "fichero no encontrado"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Subir un departamento"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "fichero no accesible"
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Inicio"
-
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Recargar lista"
-
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr "Enviar"
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Copiar"
-
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Mover"
-
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Pegar"
-
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Mover esta entrada"
-
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Copiar esta entrada"
-
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Recuperar instantánea"
-
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Exportar lista"
-
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Recuperar instantanea"
-
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Crear instantánea"
-
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "¡Crear una nueva instantánea de este objeto!"
-
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Error del filtro"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Descargar"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "¡El filtro está incompleto!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Error de permisos"
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
+#, php-format
+msgid "Invalid value for %s"
+msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "No tiene permisos para crear una instantanea para %s."
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "No tiene permisos para recuperar una instantanea para %s."
+msgid "An integer between %d and %d"
+msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "No hay declaración de pestaña para '%s' en su archivo de configuración. ¡No se puede crear la instancia del plugin!"
+msgid "An integer larger than %d"
+msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "Error XML en fusiondirectory.conf: %s en la línea %d"
+msgid "An integer smaller than %d"
+msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Error en la configuración"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
+#, php-format
+msgid "A float between %f and %f"
+msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Error LDAP"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
+#, php-format
+msgid "A float smaller than %f"
+msgstr ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "No se puede conectar a LDAP: Por favor consulte con el administrador de sistemas."
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr ""
 
-#: include/class_config.inc:357
+#: include/class_plugin.inc:795
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/class_plugin.inc:1322
 #, 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."
+msgid "Tab \"%s\""
+msgstr ""
+
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
+
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Gestión de las Listas de control de acceso"
+
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Roles ACL"
 
-#: include/class_config.inc:898
+#: include/class_acl.inc:118
 #, 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'."
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Todas las categorías"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "¡Entrada desconocida '%s'!"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Mi cuenta"
+#: include/class_acl.inc:173
+#, php-format
+msgid "All users"
+msgstr "Todos los usuarios"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Aviso e rendimiento"
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-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:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "error interno"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "¡No se puede acceder a el directorio de compilación '%s'!"
 
-#: include/class_ldap.inc:846
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+msgstr ""
+
+#: html/index.php:62
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: html/index.php:150
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:994
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "mientras operaba en '%s' usando el servidor LDAP '%s'"
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Error Smarty"
 
-#: include/class_ldap.inc:996
+#: html/index.php:173
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "mientras operaba en el servidor LDAP '%s'"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
+msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Su sesión de FusionDirectory ha expirado!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: html/index.php:214
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_ldap.inc:1151
-#, php-format
-msgid "Error line %s, references to an external file are not supported"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "¡Por favor introduzca un nombre de usuario válido!"
+
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "¡Por favor introduzca una contraseña!"
+
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Por favor compruebe la combinación nombre de usuario/contraseña"
+
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Cuenta bloqueada. ¡Por favor contacte con su administrador de sistemas!"
+
+#: html/index.php:454
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:475
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Ha habido un error importando dn: '%s', ¡Por favor compruebe su LDIF desde la línea %s en adelante!"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:43
+#: html/index.php:485
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Seleccione para mostrar objetos de tipo '%s'."
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:45
+#: html/index.php:547
 #, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Seleccione para mostrar objetos conteniendo '%s'."
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:47
+#: html/index.php:557
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Seleccione para mostrar objetos que tengan '%s' activado"
-
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Seleccione para buscar dentro de los subárboles"
-
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Buscar en subárboles"
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "¡El objeto será eliminado!"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Su navegador tiene las cookies desactivadas. ¡Porfavor active las cookies y recargue esta página antes de iniciar sesión!"
 
-#: include/class_msgPool.inc:69
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "¡El objeto '%s' será eliminado!"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "La configuración de FusionDirectory %s/%s no se puede leer. Cancelado."
 
-#: include/class_msgPool.inc:74
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Este objeto será eliminado: %s"
+msgid "Did not find an account with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "El objeto '%s' será eliminado: %s"
+msgid "Found multiple accounts with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Este objeto será eliminado"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Dirección de correo"
 
-#: include/class_msgPool.inc:83
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "El objeto '%s' será eliminado:"
+msgid "There is no account using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Estos objetos serán eliminados: %s"
+msgid "There are several accounts using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Los objetos '%s' serán eliminados: %s"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "¡No tiene permisos para eliminar este objeto!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Contacte a su administrador, hubo un problema con el servidor de correo"
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "No tiene permisos para eliminar este objeto:"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr "Esta prenda es invalida"
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "No tiene permisos para eliminar estos objetos:"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "¡No tiene permisos para crear este objeto!"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Configuración PHP"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "No tiene permisos para crear este objeto:"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Error Fatal: 'Register globals' está activado. No se permitirá ningun acceso hasta que esto sea solucionado por un administrador."
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "No tiene permisos para crear estos objetos:"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Cambio de contraseña"
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "¡No tiene permisos para modificar este objeto!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Su contraseña va a caducar próximamente, ¡Por favor cambie su contraseña!"
 
-#: include/class_msgPool.inc:151
-#, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
-msgstr ""
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "¡Funcionando sin memoria!"
 
-#: include/class_msgPool.inc:161
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Desactivados chequeos de ACL de usuario"
+
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Extensión"
+
+#: html/main.php:290
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "¡No tiene permisos para ver este objeto!"
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "No tiene permisos para ver el objeto:"
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Error de configuración"
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "No tiene permisos para ver estos objetos:"
+#: html/main.php:306
+#, php-format
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Error fatal: no todas las variables POST fueron transferidas por PHP - por favor informe a su administrador!"
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "¡No tiene permisos para mover este objeto!"
+#: plugins/generic/welcome/main.inc:25
+#, php-format
+msgid "Welcome %s!"
+msgstr "¡Bienvenido %s!"
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "No tiene permisos para mover el objeto:"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Referencias"
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "No tiene permisos para mover estos objetos:"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Información de conexión"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Editar parametros de usuarios POSIX"
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
-msgstr "¡No se puede conectar a la base de datos %s!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Directorio de usuario"
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
-msgstr "¡No se puede seleccionar la base de datos %s!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
-msgstr "¡No se ha definido el servidor %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
-msgstr "¡No se ha podido ejecutar la consulta %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "¡El campo '%s' tiene una palabra reservada!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Grupo primario"
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "¡El comando especificado como método %s para la extensión '%s' no existe!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
-msgstr "¡El comando '%s' no es válido!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "¡'%s' comando para la extensión %s no es válido!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "¡'%s' comando (%s) no es válido!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "¡'%s' comando (%s) para la extensión %s no es válido!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "¡No se puede ejecutar el comando '%s'!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "¡No se puede ejecutar el comando '%s' para la extensión %s!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "¡No se puede ejecutar el comando '%s' (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "¡No se puede ejecutar el comando '%s' (%s) para la extensión %s!"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Pertenencia a grupo"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "¡El valor especificado como '%s' es demasiado grande!"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Cuenta"
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "¡'%s' debe ser menor que %s!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "El usuario debe introducir la contraseña en el primer inicio de sesión"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "¡El valor especificado como '%s' es demasiado pequeño!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "¡'%s' debe ser %d o superior!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "¡'%s' depende de '%s' - Por favor introduzca ambos valores!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "¡Ya existe una entrada con el atributo '%s' en el sistema!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
-msgstr "¡El campo obligatorio '%s' está vacio!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "'%s' no está permitido:"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "¡'%s' no están permitidos!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "¡Extensión PHP %s no encontrada!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Cancelar"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Sistema de seguridad"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Modo seguro"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Aplicar"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Guardar"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "desactivado"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Añadir"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "Acceso sin restricciones"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Añadir %s"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "Permitir el acceso a estos equipos"
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Eliminar %s"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Editar..."
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automático"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Editar %s..."
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "expiró"
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Atrás"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "Periodo de gracia activado"
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "¡Esta cuenta tiene extensiones %s no validas!"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "activo"
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Esta cuenta tiene características %s activadas. Puede desactivarla pulsando aquí"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "la contraseña expiró"
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Esta cuenta tiene las características %s activadas. ¡Para desactivarlas, necesita eliminar las caracteristicas %s primero!"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "no puede cambiar la contraseña"
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Esta cuenta tiene características %s desactivadas. Puede activarla pulsando aquí"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Esta cuenta tiene las características %s desactivadas. ¡Para activarlas, necesita añadir las caracteristicas %s primero!"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Añadir caracteristicas %s"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Tiempo de espera agotado esperando un bloqueo. ¡Ignorando bloqueo!"
 
-#: include/class_msgPool.inc:646
+#: plugins/personal/posix/class_posixAccount.inc:538
 #, php-format
-msgid "Remove %s settings"
-msgstr "Eliminar las caracteristicas %s"
-
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Pulse en el botón - Editar - para cambiar la información en esta ventana"
-
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Enero"
+msgid "Group of user %s"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Febrero"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Marzo"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Abril"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Mayo"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Junio"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Metodo de contraseña"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Julio"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Agosto"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Contraseña"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Septiembre"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Octubre"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Noviembre"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Diciembre"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Usuario"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Domingo"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Lunes"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Martes"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Información personal"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Miércoles"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Apellido"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Jueves"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Viernes"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Nombre"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Sábado"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "Operación de base de datos fallida!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "lectura"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "adición"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "modificación"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "eliminación"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Localización"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "busqueda"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Provincia"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "autenticación"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Dirección"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "¡LDAP %s ha fallado!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "¡La consulta LDAP ha fallado!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Número sala"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "¡Ha fallado el subir archivo!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Número de habitación"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Ha fallado el subir archivo: %s"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Teléfono"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "¡Ha fallado la comunciación con el servicio de infraestructura!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Ha fallado la comunciación con el servicio de infraestructura: %s"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Móvil"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "'%s' esta todavía en uso por el objeto: %s"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "'%s' esta todavía en uso."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Buscapersonas"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "'%s' esta todavía en uso por los objetos: %s"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "¡El archivo %s no existe!"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "¡No se puede abrir el archivo '%s'!"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "¡No se puede grabar el archivo '%s'!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Página Web"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "El valor para '%s' no esta configurado o no es válido.¡Por favor compruebe el archivo de configuración!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "¡No se puede eliminar el fichero '%s'!"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "¡No se puede crear la carpeta '%s'!"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "¡No se puede eliminar la carpeta '%s'!"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Comprobando soporte %s"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Instala y activa el módulo de PHP %s."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Nombre a Mostrar"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "No se puede inicializar la clase '%s'! Posiblemente hay un complemento faltante en su instalación de FusionDirectory?"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr "¡La base introducida no es válida, se ha dejado el valor anterior!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Dirección Postal personal"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "Error fatal: no se han definido un emplazamiento para las clases - por favor ejecute '%s' para solucionar esto"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Teléfono privado"
 
-#: include/functions.inc:142
-#, php-format
-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'"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Número de teléfono personal"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Error fatal"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Información corporativa"
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Título"
 
-#: include/functions.inc:583
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Error de Autenticación"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organización"
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Departamento"
+
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Ha ocurrido un problema al añadir un bloqueo. ¡Contacte con los desarrolladores!"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Número departamento"
 
-#: include/functions.inc:678
-#, 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!"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Número del departamento"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "El servidor LDAP devolvio: %s"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Número empleado"
 
-#: include/functions.inc:859
-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."
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Número de empleado"
 
-#: include/functions.inc:1130
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Categoría profesional"
+
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Gestor"
+
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "¡El límite máximo de %d entradas se ha sobrepasado!"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgstr ""
 
-#: include/functions.inc:1132
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:621
 #, 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"
+msgid "You must wait %d seconds before changing your password again"
+msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Configurar"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "incompleto"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Continuar de cualquier manera"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Necesita introducir su contraseña actual para continuar."
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Editar de cualquier manera"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr "Has decidido editar las siguientes entradas LDAP %s"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nueva contraseña"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Entradas por página"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "La contraseña actual y la introducida como nueva son demasiado parecidas."
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Aplicar filtro"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "La nueva contraseña es demasiado corta."
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "La clave contiene caracteres unicode posiblemente problemáticos!"
+
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Recuperación de clave"
+
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Opciones de recuperación de clave"
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "¡No se puede escribir en el archivo de revisión!"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
+msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "No se puede leer el archivo de revisión!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Aviso LDAP"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr ""
 
-#: include/functions.inc:2586
-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!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Asunto"
+
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:2646
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Enlace de recuperación de clave"
+
+#: plugins/config/class_recoveryConfig.inc:90
 #, php-format
-msgid "Missing optional object class \"%s\"!"
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:2650
+#: plugins/config/class_recoveryConfig.inc:91
 #, php-format
-msgid "Class(es) available"
-msgstr "Clase(s) disponibles"
-
-#: include/functions.inc:2668
 msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/functions.inc:2669
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
 msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Saludos,\nAquí están los datos solicitados:\n\n- Usuario: %s\n- Enlace: %s\n\nEl enlace solo es valido por 10 minutos."
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "No se puede asignar un identificador (ID) libre:"
-
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "¡método de asignación de id desconocido!"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Recuperación de clave realizada con exito"
 
-#: include/functions.inc:3175
+#: plugins/config/class_recoveryConfig.inc:109
 #, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "¡%sPoolMin >= %sPoolMax!"
-
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "¡sambaUnixIdPool no es único!"
-
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "¡No hay ID disponibles!"
-
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "¡Excedido el número de intentos máximo!"
-
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "¡No se puede asignar un identificador (ID) libre!"
+msgid "Body (%s is login)"
+msgstr ""
 
-#: include/functions.inc:3345
+#: plugins/config/class_recoveryConfig.inc:110
 #, 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"
-
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "¡El canal requerido no existe!. Por favor  contacte con su Administrador."
-
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Nombre de la plantilla"
-
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Todos los objetos en esta categoría"
-
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Archivo"
-
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Linea"
-
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "Error PHP"
-
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "clase"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Saludos,\n\nSu clave ha sido cambiada.\nSu nombre de usuario aun es %s."
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "función"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Configuración"
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "estático"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "método"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Traza"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Temas y apariencia"
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Tipo"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Idioma"
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argumentos"
+#: 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 ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "¡La generación de esta página ha provocado errores en el interprete PHP!"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Tema"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Enviar informe de errores al equipo de FusionDirectory"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Enviar informe de errores"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Zona de uso horario"
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Modificar información"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Por favor solucione el problema y actualize la página."
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Marca de tiempo"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Parámetros de Contraseña"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr "Recuperar"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Longitud mínima de la contraseña"
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Página"
-
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
-
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "No se puede exportar a PDF: no se ha instalado la librería FPDF."
-
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
-
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "en"
-
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "En linea"
-
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Error XML"
-
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Usar caducidad de cuenta"
+
+#: plugins/config/class_configInLdap.inc:144
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Cancelar todo"
-
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "No puedo pegar"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Mostrar resumen en listados"
+
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Por favor seleccione las entradas que desee"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Inicio y sesión"
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Atributo de inicio de sesión"
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Forzar conexiones seguras"
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Avisar si la sesión no esta codificada"
+
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Grupo de usuarios"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Duración de sesiones."
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Ninguno"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Desconocido"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "segundos"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Activar instantaneas"
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "minutos"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "horas"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Base de instantaneas"
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "días"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "No puedo leer el archivo: %s"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "el archivo está vacío"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "fichero no encontrado"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Nombre de equipo"
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "fichero no accesible"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Puerto"
+
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Enviar"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Almacén de grupos y usuarios"
+
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "Atributo 'dn' de los usuarios"
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Descargar"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "No hay definiciones de extensión para iniciar '%s', por favor compruebe su archivo de configuración."
-
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-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:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
-
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Gestión de las Listas de control de acceso"
-
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:320
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "¡Entrada desconocida '%s'!"
-
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Todos los usuarios"
-
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Entrada fallida: %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "¡Se ha indicado un objectType vacio o no válido!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
+msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Error Smarty"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Su sesión de FusionDirectory ha expirado!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
+msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "¡Por favor introduzca un nombre de usuario válido!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "¡Por favor introduzca una contraseña!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Por favor compruebe la combinación nombre de usuario/contraseña"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Cuenta bloqueada. ¡Por favor contacte con su administrador de sistemas!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
+msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Depurando"
+
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Tiempo de consulta máxima de LDAP"
+
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Su navegador tiene las cookies desactivadas. ¡Porfavor active las cookies y recargue esta página antes de iniciar sesión!"
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Configuración PHP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Registrar estadísticas LDAP"
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:397
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Error Fatal: 'Register globals' está activado. No se permitirá ningun acceso hasta que esto sea solucionado por un administrador."
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Cambio de contraseña"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Nivel de depuración"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Su contraseña va a caducar próximamente, ¡Por favor cambie su contraseña!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Varios"
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "¡Funcionando sin memoria!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Desactivados chequeos de ACL de usuario"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Extensión"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "Modo"
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Error de configuración"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Error fatal: no todas las variables POST fueron transferidas por PHP - por favor informe a su administrador!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "La configuración de FusionDirectory %s/%s no se puede leer. Cancelado."
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Métodos"
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "¡No se puede acceder a el directorio de compilación '%s'!"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Dirección de correo"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Contacte a su administrador, hubo un problema con el servidor de correo"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
-msgstr "Esta prenda es invalida"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Nombre de la localización"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Grupos de objetos"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "URI de conexión"
-
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "Conexión TLS"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Autenticación"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "DN del administrador"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Contraseña de administrador"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Estado actual"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Configuración LDAP"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Conectividad LDAP"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
+#: plugins/config/class_dashBoardConfig.inc:62
 msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Este dialogo realiza la configuración básica de la conectividad LDAP para FusionDirectory"
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Departamentos"
+
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "departamento"
+
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Propiedades"
+
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "¡La conexión anónima al servidor '%s' ha fallado!"
+msgid "Name of %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "¡La conexión como usuario '%s' ha fallado!"
+msgid "A name for this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Reintento"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Categoría"
+
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "La conexión anónima al servidor '%s' ha tenido exito."
+msgid "Category of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Refresco"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "¡Por Favor especifique un usuario y contraseña!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "¡La conexión como usuario '%s' al servidor '%s' ha tenido exito!"
+msgid "Manager of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "País"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Bienvenido"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Número de teléfono"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Terminar"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Terminar - Escribir el archivo de configuración"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Escribir archivo de configuración"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Dominio"
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "El fichero de configuración es universalmente legible. ¡Por favor modifique los permisos del archivo!"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "En estos momentos la configuración no es accesible o no existe."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Después de descargar y colocar el archivo en %s, por favor asegúrese de que el usuario bajo el cual está corriendo el servidor web es capaz de leer %s, mientras que otros usuarios no deben poder."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Migrar"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Usuarios y grupos"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "Comprobaciones de módulos y extensiones PHP"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Componentes del dominio"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Inspección LDAP"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Analizar el arbol LDAP actual por compatibilidad con FusionDirectory"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Localidad"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Lista de Departamentos"
+
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Gestión de usuarios"
+
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Analizando objetos en la entrada raíz"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Bloqueo de cuenta"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Comprobando permisos en la base de datos LDAP"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Comprobando usuarios invisibles"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Desbloquear cuenta"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Comprobando súper administrador"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Bloquear cuenta"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr ""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Lista de usuarios"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Comprobando cuentas fuera del árbol de usuarios"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Apellido"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Comprobando grupos fuera del árbol de grupos"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Nombre de pila"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Comprobando departamentos invisibles"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Bloquear usuarios"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Comprobando números UID duplicados"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Desbloquear usuarios"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Aplicar plantilla"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "La consulta LDAP ha fallado"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Nuevo usuario desde plantilla"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Editar usuario"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Error"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "Objeto '%s' de FusionDirectory faltante!"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Eliminar usuario"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Por favor compruebe su instalación"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Rol"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "No se puede un tipo de objeto estructural en su entrada raíz. Por favor intente añadir la clase de objeto '%s' manualmente."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "Se encontraron %s usuarios que no serán visibles en FusionDirectory o están incompletos."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Error de migración"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Número de teléfono"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Número de Fax"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Grupos"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "No hay una cuenta de administrador FusionDirectory dentro de su LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Editar características posix"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Mostrar grupos primarios"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Mostrar grupos de correo"
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Mover usuarios al árbol de usuarios configurado"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Mostrar grupos de samba"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "a"
-
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Las siguientes referencias se actualizaran"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Encontrados '%s' grupos fuera del árbol configurado '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Se encontraron %s departamentos que no serán visibles en FusionDirectory"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Selección de idiomas"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Grupo de objetos"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Este paso le permite seleccionar su idioma preferido"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Grupo"
+
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Bienvenido al asistente de configuración de FusionDirectory"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Objetos miembros"
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Mensaje de Bienvenida"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Comprobación de la instalación"
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Comprobación básica de la versión de PHP y las extensiones."
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Lista de grupos"
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Comprobando la versión de PHP"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP debe ser versión '%s' o superior."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Por favor actualize a la versión soportada."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory requiere este modulo para poder hablar con su servidor LDAP."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Forzar GID"
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory requiere este modulo para una interfaz internacionalizada."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory requiere este modulo para comunicarse con distintos tipos de servidores y protocolos."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory requiere este modulo para la integración con Samba"
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Miembros del grupo"
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory requiere ya sea el modulo 'mhash' o 'sha1' para usar encripción SSHA"
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory requiere este modulo para poder hablar con un servidor IMAP."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory requiere este modulo para manejar cadenas unicode."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory requiere esta extensión para manejar imágenes."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "modulo de compresión"
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory requiere esta extensión para manejar capturas."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "registr_globals es un mecanismo de PHP para registrar todas las variables globales de tal manera que sean accesible desde scripts sin que cambien su ámbito. Esto puede ser un problema de seguridad."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "Asignación de ACL"
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Busque 'register_globals' en su php.ini y modifíquelo por 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP usa este valor en el recolector de basura para eliminar las sesiones antiguas."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Ajustando este valor a un día impedirá la perdida de sesiones y cookies antes de que realmente se desconecte por tiempo."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Modo"
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Busque 'sessio.gc_maxlifetime' en su php.ini y modifíquelo a 86400 o mayor."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Busque 'session.auto_start' en su php.ini y modifíquelo a 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Esta opción está relacionada con el manejo de salida de PHP. Desactive esta opción poniéndola en off para mejorar el rendimiento."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Miembros"
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Busque 'implicit_flush' en su php.ini y modifíquelo a 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "El tiempo de ejecución debe ser de al menos 30 segundos."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Busque 'max_execution_time' en su php.ini y modifíquelo a '30' o mayor."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Aumente la seguridad del servidor modificando el parámetro 'expose_php' a 'off'. PHP no debería enviar ningún tipo de información sobre el servidor que esta ejecutando la aplicación."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Busque 'expose_php' en su php.ini y modifíquelo a 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Aumente el rendimiento de su servidor modificando 'magic_quotes_gpc' a 'off'"
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Busque 'zend.ze1_compatibility_mode' en su php.ini y modifíquelo a 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "No hay ACL configuradas en esta categoría"
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Error de configuración"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACLs que tienen estos objetos: %s"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Completado"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Editar la categoría ACL"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Siguiente"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Eliminar la categoría ACL"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "El equipo de FusionDirectory"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Lista de categorías ACL disponibles"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Todos los objetos en el subárbol actual"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Este objeto no tiene relación con otros objetos"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "leer"
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtro"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "escribir"
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Mostrar plantillas"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Mostrar/ocultar caracteristicas avanzadas"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Mostrar usuarios funcionales"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Crear objetos"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "Mostrar usuarios POSIX"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Mover objetos"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Mostrar los usuarios de correo"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Eliminar Objetos"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Mostrar los usuarios samba"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Garantizar permiso al propietario"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Objeto completo"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Tiene configuraciones de los siguientes objetos: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Roles de control de acceso"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "telephoneNumber (Numero de Telefono)"
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "FusionDirectory NO correrá si no se arregla esto."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr ""
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory correrá aun si no se arregla esto."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Crear una nueva cuenta administrador de FusionDirectory"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Este dialogo añadirá automáticamente un nuevo superadministrador a su árbol LDAP."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Identificador (ID) de usuario"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Contraseña (de nuevo)"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Esta parece ser la primera vez que inicia FusionDirectory - no conseguimos ninguna configuración hasta el momento. Este simple asistente trata de ayudarlo a configurar."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "¿Que hará este asistente para usted?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Creara una configuración básica para un único sitio"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Intentando encontrar problemas en la configuración de LDAP y de PHP"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Le permite seleccionar un juego de opciones básicas o avanzadas"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Su cambio de contraseña se ha realizado correctamente. Recuerde cambiarla en todos los programas configurados también."
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Migración guiada de arboles LDAP existentes"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Caracteristicas del usuario"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "¿Que no hará este asistente por usted?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Borrar Contraseña"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Encontrar cada posible error de configuración"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Introducir nueva contraseña"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migración asistidas de cualquier configuración LDAP - ¡creando copias de seguridad!"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Foto"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Foto del usuario"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Eliminar foto"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "No tiene permisos para cambiar su contraseña en estos momentos"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "Añadir las clases de objetos necesarias a la base LDAP"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "No se cambiará su método de hash de la contraseña!"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Actual"
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Detectado conflicto de Bloqueos"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Despues de migrar"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Cerrar"
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Solo lectura"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Continuar"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Si quiere saber que se hará cuando se migren las entradas seleccionadas use el botón 'Mostrar cambios' para ver el LDIF."
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Mostrar cambios"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "La opción 'tamaño limite' permite unas operaciones con LDAP mas rápidas y protege al servidor LDAP de tener una mayor carga. La manera mas fácil de manipular grandes bases de datos sin grandes perdidas de tiempo es limitar la búsqueda a valores pequeños y usar filtros para encontrar las entradas que este buscando."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Durante la inspección del LDAP vamos a verificar varios problemas comunes que pueden ocurrir durante la migración a administración por FusionDirectory de la base LDAP. Puede querer reparar los problemas debajo, para proveer un servicio mas eficiente."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Por favor elija la forma de reaccionar en esta sesión"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Comprobar de nuevo"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "ignore este error y muestre todas las entradas devueltas por el servidor LDAP"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Crear su fichero de configuración"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "ignore este error y muestre todas las entradas que coincidan con el tamaño limite definido y active el uso de filtros en su lugar"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Activar"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Descargar configuración"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Estado: "
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtro"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Entonces, si esta seguro, presione <i>Eliminar</i> para continuar o <i>Cancelar</i> para Abortar."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Pantalla de inicio"
@@ -4971,26 +4869,141 @@ msgstr "Entrando"
 msgid "Click here to log in"
 msgstr "Pulse aquí para iniciar sesión"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "La opción 'tamaño limite' permite unas operaciones con LDAP mas rápidas y protege al servidor LDAP de tener una mayor carga. La manera mas fácil de manipular grandes bases de datos sin grandes perdidas de tiempo es limitar la búsqueda a valores pequeños y usar filtros para encontrar las entradas que este buscando."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Por favor elija la forma de reaccionar en esta sesión"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "ignore este error y muestre todas las entradas devueltas por el servidor LDAP"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "ignore este error y muestre todas las entradas que coincidan con el tamaño limite definido y active el uso de filtros en su lugar"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Activar"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Por favor verifique si realmente quiere hacer esto ya que no hay forma para que FusionDirectory recupere la data."
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Entonces, si esta seguro, presione <i>Eliminar</i> para continuar o <i>Cancelar</i> para Abortar."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Inicio"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Salir"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Entrando"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "La sesión expira en %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Continuar"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Detectado conflicto de Bloqueos"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Solo lectura"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Asistente para copiar y pegar"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr "Algunos valores deben ser únicos en el directorio completo mientras que algunas combinaciones no tienen sentido. FusionDirectory muestra los atributos relevantes. Por favor mantenga los valores de abajo para cumplir con las políticas."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "¡Recuerde que propiedades como gestionar instantáneas no serán copiadas!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "O, si copia o corta una entrada en FusionDirectory y borra el objeto fuente, puede resultar en errores al pegar el objeto nuevamente!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Operación incompleta"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Información"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "Asignando ACL a la entrada actual"
@@ -5035,211 +5048,197 @@ msgstr "ACL que tienen este objeto"
 msgid "Available roles"
 msgstr "Roles disponibles"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Asistente para copiar y pegar"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr "Algunos valores deben ser únicos en el directorio completo mientras que algunas combinaciones no tienen sentido. FusionDirectory muestra los atributos relevantes. Por favor mantenga los valores de abajo para cumplir con las políticas."
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "¡Recuerde que propiedades como gestionar instantáneas no serán copiadas!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
-msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "O, si copia o corta una entrada en FusionDirectory y borra el objeto fuente, puede resultar en errores al pegar el objeto nuevamente!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Operación incompleta"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Información"
-
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Inicio"
-
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Salir"
-
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Entrando"
-
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "La sesión expira en %d!"
-
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "Añadir las clases de objetos necesarias a la base LDAP"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "El equipo de FusionDirectory"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Actual"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Despues de migrar"
+#: plugins/generic/references/contents.tpl.c:5
+msgid ""
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Cerrar"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Este objeto no tiene relación con otros objetos"
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Crear su fichero de configuración"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Caracteristicas del usuario"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Borrar Contraseña"
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Descargar configuración"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Introducir nueva contraseña"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Estado: "
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Foto"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Crear una nueva cuenta administrador de FusionDirectory"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Foto del usuario"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Este dialogo añadirá automáticamente un nuevo superadministrador a su árbol LDAP."
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Eliminar foto"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Identificador (ID) de usuario"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "No tiene permisos para cambiar su contraseña en estos momentos"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Contraseña (de nuevo)"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "No se cambiará su método de hash de la contraseña!"
 
-#: setup/setup_welcome.tpl.c:2
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Esta parece ser la primera vez que inicia FusionDirectory - no conseguimos ninguna configuración hasta el momento. Este simple asistente trata de ayudarlo a configurar."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Su cambio de contraseña se ha realizado correctamente. Recuerde cambiarla en todos los programas configurados también."
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "¿Que hará este asistente para usted?"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Creara una configuración básica para un único sitio"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Intentando encontrar problemas en la configuración de LDAP y de PHP"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Le permite seleccionar un juego de opciones básicas o avanzadas"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Migración guiada de arboles LDAP existentes"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "¿Que no hará este asistente por usted?"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Encontrar cada posible error de configuración"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migración asistidas de cualquier configuración LDAP - ¡creando copias de seguridad!"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "FusionDirectory NO correrá si no se arregla esto."
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "telephoneNumber (Numero de Telefono)"
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory correrá aun si no se arregla esto."
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Si quiere saber que se hará cuando se migren las entradas seleccionadas use el botón 'Mostrar cambios' para ver el LDIF."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Mostrar plantillas"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Mostrar cambios"
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Mostrar usuarios funcionales"
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "Mostrar usuarios POSIX"
+
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Mostrar los usuarios de correo"
+
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Mostrar los usuarios samba"
+
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Durante la inspección del LDAP vamos a verificar varios problemas comunes que pueden ocurrir durante la migración a administración por FusionDirectory de la base LDAP. Puede querer reparar los problemas debajo, para proveer un servicio mas eficiente."
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Comprobar de nuevo"
+#: plugins/admin/acl/remove.tpl.c:5
+msgid ""
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr ""
+
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
diff --git a/locale/es_CO/fusiondirectory.po b/locale/es_CO/fusiondirectory.po
index 0117c458a739ae7673d718c405ebc833d4b0e3b5..dd5ad3566547f15ca2c5dd506ddcb52d1e3b7f13 100644
--- a/locale/es_CO/fusiondirectory.po
+++ b/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n"
@@ -18,4849 +18,4758 @@ msgstr ""
 "Language: es_CO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "¡Bienvenido  %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Referencias"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Rol"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr "Información del Rol"
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr "Rol Profesional"
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Datos"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nombre"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr "Nombre de este grupo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Descripción"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Descripción del Rol"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Teléfono"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Fax"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Agregar usuarios al rol"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Grupo"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr "Información de Grupo POSIX"
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr "Grupo POSIX"
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr "Grupo de Usuarios POSIX"
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Propiedades"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr "Una descripción corta de este grupo."
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Forzar GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr "Forzar GID para este grupo"
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr "Valor GID para este grupo"
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Miembros del Grupo"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Confianza del Sistema"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Modo de Confianza"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr "Tipo de autorización para ésos equipos"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "deshabilitado"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "Acceso Completo"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "Permitir acceso a ésos equipos"
-
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-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:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Advertencia"
-
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Tiempo de espera superado mientras se esperaba el bloqueo. ¡Ignorando el bloqueo!"
-
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr "Tipo desconocido: %s"
-
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr "¡dn: %s Inexsitente!"
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Objeto grupo"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr "Datos del 'objeto grupo'"
-
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Objetos miembro"
-
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr "Objetos miembro de este grupo"
-
-#: plugins/admin/groups/class_ogroup.inc:321
-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."
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Lista de Grupos"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Acciones"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Crear"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Editar"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Borrar"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr "Grupos y Roles"
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr "Administrar grupos y roles"
-
-#: 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 "Editar propiedades de Rol"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Editar propiedades posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr "Mostrar grupos del usuario"
-
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Mostrar grupos primarios"
-
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr "Mostrar roles de Profesionales"
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr "Mostrar grupos de aplicación"
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Mostrar grupos de correo"
-
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Mostrar grupos Samba"
-
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr "Mostrar grupos de servidores"
-
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr "Mostrar grupos de estaciones de trabajo"
-
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr "Mostrar grupos de Windows"
-
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr "Mostrar grupos de Terminales"
-
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr "Mostrar grupos de impresión"
-
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr "Mostrar grupos de teléfono"
-
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Componente de Dominio"
-
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr "componente de dominio"
-
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "División"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Divisiones"
-
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "división"
-
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr "Nombre de  %s"
-
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr "Un nombre para este %s"
-
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
-msgstr "Una descripción de este %s"
-
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "categoría"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Idioma preferido"
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
-msgstr "Categoría de este %s"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Idioma de instalación"
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr ""
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Este paso le permitirá elegir su lenguaje preferido."
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
-msgstr ""
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
+msgstr "En este punto usted puede elegir el idioma por defecto del   sitio. Si elige 'automático'  se utilizará el lenguaje del navegador. Ésta opción puede ser cambiada por el usuario."
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Mánager"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automático"
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
-msgstr "Mánager de este %s"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "Verificación de extensiones y módulos PHP "
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Ubicación"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
+msgstr "Configuración de la instalación de PHP (<a href=\"?info\" target=\"_blank\">Mostrar información</a>)"
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Estado"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Revisión de la instalación"
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "País"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Revisión básica de Extensiones PHP y compatibilidad"
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Dirección"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Revisando la versión PHP"
 
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "A postal address for this %s"
-msgstr "Dirección postal de este  %s"
-
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Teléfono"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Número telefónico"
-
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+msgid "PHP must be of version %s or above."
+msgstr "PHP debe tener una versión %s o superior."
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr "Teléfono alternativo"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Por favor actualice a una versión soportada."
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Administrar categorías"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory requiere este módulo para comunicarse con su servidor LDAP."
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr ""
-
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Usuarios y Grupos"
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory requiere este módulo para una inferfaz internacionalizada."
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Localidad"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory requiere este módulo para comunicarse con diferentes tipos de servidores y protocolos."
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr "localidad"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory necesita éste módulo para la integración con Samba"
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr "país"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory requiere el módulo 'mhash' o bien 'sha1' para usar encripción por SSHA."
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Dominio"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory requiere este módulo para comunicarse con un servidor IMAP."
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr "dominio"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Lista de categorías"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory requiere este módulo para manejar strings unicoide."
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organización"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr "organización"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory requiere esta extensión para manejar imágenes."
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Lista de usuarios"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "módulo de compresión"
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Apellido"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory requiere esta extensión para manejar snapshots."
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Nombre"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "register_globals  es un mecanismo PHP para registrar todas las variables globales y que puedan accederse mediante scripts sin cambiar el foco. Esto puede ser un riesgo de seguridad."
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Cuenta de usuario"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Buscar por 'register_globals' en su archivo php.ini y cámbielo a 'Off'."
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Usuario"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP utiliza este valor para que el colector de basura borre las sesiones obsoletas."
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
-msgstr "A partir de plantilla"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Configurando este valor a 'un día' prevendrá perder sesiones y cookies antes de que realmente expiren."
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Plantilla"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Buscar por  'session.gc_maxlifetime' en su archivo php.ini y configurarlo a 86400 o superior."
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Bloquear usuarios"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Apagado"
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Desbloquear usuarios"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "Para utilizar FusionDirectory sin problemas la opción session.auto_start  en su archivo php.ini debe estar configurada en 'Off'."
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Aplicar plantilla"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Buscar  'session.auto_start'  en su archivo php.ini y configurarlo en 'Off'."
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Nuevo usuario a partir de plantilla"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr "FusionDirectory requiere al menos 128MB de memoria. Si usted utiliza menos que esto ¡puede causar errores que no son reproducibles! aumente la memoria para instalaciones grandes."
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Editar usuario"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr "Buscar 'memory_limit' en su archivo php.ini y configurarlo con '128MB' o superior."
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Esta opción afecta el manejo de la salida PHP. Deshabilitar esta opción con 'off' mejorará el rendimiento."
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Borrar usuario"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Busca 'omplicit_flush' en su archivo php.ini y lo establece como 'Off'."
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Usuarios"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "El tiempo de ejecución debería ser al menos de 30 segundos."
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Administrar usuarios"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Busca 'max_execution_time' en su archivo php.ini y lo establece como '30' o superior."
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Incrementa la seguridad del servidor estableciendo 'expose_php' como 'Off'. PHP no enviará información de su  servidor en este caso."
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Permisos"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Busca 'expose_php' en su archivo php.ini y lo establece como 'Off'."
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Bloqueo de cuentas"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Incrementa el rendimiento del servidor estableciendo 'magic_quotes_gpc' como 'Off'."
 
-#: plugins/admin/users/class_userManagement.inc:188
-#, php-format
+#: setup/class_setupStep_Checks.inc:207
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
-msgstr "El método de contraseña \"%s\" no soporta bloqueos. ¡La cuenta \"%s\" no se ha bloqueado!"
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Busca  'zend.ze1_compatibility_mode' en su archivo php.ini y lo establece como 'Off'."
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Desbloquear cuenta"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Bienvenido"
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Bloquear cuenta"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Bienvenido al asistente de configuración de FusionDirectory."
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
-msgstr "Cuenta de Usuario"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Mensaje de bienvenida"
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
-msgstr "Información de Cuentas de Usuario"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "No hay configuraciones ACL para esta categoría"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Migrar"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL para ésos objetos: %s"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Revisión de LDAP"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Editar categioría ACL"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Se va a analizar la compatibilidad entre LDAP y FusionDirectory"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
-msgstr "Borrar"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr "Otorgar todos los permisos en usuarios que pertenezcan a dicha rama."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Restablecer categoría ACL"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr "Permitir a los usuarios editar su propia información (Pestaña de Inicio y posix, usar únicamente en base)"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Lista de categorías ACL disponibles"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr "Permitir a los usuarios editar su propia contraseña (Solo en las pestañas POSIX e Inicio)"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Todos los objetos en el subárbol actual."
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Revisar las clases del objeto 'root'"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Revisar los permisos para la base de datos LDAP"
+
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "leer"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "escribir"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objeto"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Mostrar/Ocultar configuraciones avanzadas"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Crear objetos"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Revisar si existen Divisiones ocultas"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Mover objetos"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Borrar objetos"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Otorgar permisos al dueño"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Completar objeto"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Roles ACL"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Falló"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr "Administración de Roles \"ACL\""
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "¡No se encuentra el objeto clase '%s' de FusionDirectory!"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Por favor verifique su instalación."
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Contiene configuraciones para ésos objetos: %s"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "No es posible utilizar el tipo de objeto estructurado de su objeto 'root'. Por favor intente agregar el objeto clase '%s' manualmente."
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Roles de control de acceso."
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Error LDAP"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "Rol ACL"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
+msgstr "El usuario \"%s\" especificado no tiene acceso completo a la base de datos LDAP."
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr "Un nombre para este rol"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
+msgstr "El usuario \"%s\" especificado no tiene acceso completo a la base de datos ldap."
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr "Una descripción corta para este rol"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Advertencia"
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr "ACLs"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "Se encontraron %s usuario(s) que no estarán visibles en FusionDirectory o que están incompletos."
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr "ACLs que son parte de este grupo"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr "Migración de Usuario"
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Error de migración"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
+msgstr "No se puede migrar la entrada \"%s\":"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr "Se encontraron cuentas administrativas de FD 1.0.7: %s"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr "Se encontraron grupos administrativos de FD 1.0.7: %s"
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr "Usted debe ejecutar <i>fusiondirectory-setup-migrate-acls</i> después de salvar su archivo de configuración al terminar la configuración general para migrarlo. <br/>"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr "Gestionar ACLs"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr "No hay un administrador válido de FusionDirectory 1.0.8  en su LDAP."
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Crear"
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Usuarios"
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "Gestión de ACL"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Grupos"
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "No hay una cuenta de administrador de FusionDirectory en su LDAP."
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr "Panel de gestión de roles ACL"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr "Dar permisos en todos los objetos."
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Modo"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Error"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr "¿Se aplicará en todo el subárbol o solo en la base?"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr "Los roles ACL por defecto no han sido insertados"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr "Subárbol"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr "No se encuentran algunos de los roles ACL por defecto"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr "Base únicamente"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr "Los roles ACL por defecto han sido insertados"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr "Rol a aplicar"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr "No es posible agregar el rol ACL \"%s\":"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr "Para todos los usuarios"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr "Se encontraron %s usuario(s) fuera del árbol configurado \"%s\"."
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr "Aplicar este ACL a todos los usuarios de LDAP"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Mover usuarios dentro del árbol configurado"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Miembros"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
+msgstr "¡No se pueden mover entradas en la División seleccionada!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr "Usuarios o grupos a los cuales asignar este rol"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr "La entrada será movida desde "
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr "Gestionar ACLs"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "a"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr "Gestionar permisos ACL"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Las siguientes referencias serán actualizadas"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr "Permisos"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Se encontraron %s grupos fuera del árbol configurado '%s'."
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr "Gestión de ACL para esta base"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr "Mover grupos dentro del árbol configurado"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Assignments on object or subtree %s"
-msgstr "Permisos en el objeto o subárbol %s"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Se encontraron %s Division(es) que no serán visibles en FusionDirectory."
+
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr "Migración de Divisiones."
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr "Panel"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr "Estadísticas e información general"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr "Reportes"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr "Estadísticas"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Ubicación"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr "Estadísticas de los usuarios"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
+msgstr "Nombre de esta conexión para mostrar en la lista de servidores de LDAP."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr "Estadísticas de usuario"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "URI de conexión"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr "Estadísticas de los grupos"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr "URI para contactar al servidor LDAP. Usualmente comienza con ldap://"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr "Cuentas expiradas"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "Conexión TLS"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Tipo de contraseña"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr "¿Debería usarse TLS para conectarse a este servidor LDAP?"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Tipo de 'hash' para la contraseña"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Contraseña"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr "El directorio base de LDAP"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Contraseña (deje vacío si usted no desea cambiarla)"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Autenticación"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Su contraseña de nuevo"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
+msgstr "DN de la cuenta admin para conectarse a LDAP. La base se añade automáticamente."
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr "Igual a la contraseña anterior para evitar errores"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "DN para el Administrador"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Información personal"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Contraseña de Administrador"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Apellido"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr "Contraseña para la cuenta de Administrador que será vinculada a LDAP."
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr "Apellido de este usuario"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Estado"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Primer nombre"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Estado Actual"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr "Primer nombre de este usuario"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr "Resultado del último intento al revisar la vinculación con LDAP y los esquemas básicos."
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
-msgstr "Descripción corta para éste usuario"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Configuración de LDAP"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr "Imagen"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Configuración de conexión LDAP"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr "El avatar para este usuario"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Este mensaje muestra una configuración básica de la conectividad de LDAP con FusionDirectory."
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr "Información de contacto Profesional"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "¡La vinculación anónima al servidor %s ha fallado!"
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr "Dirección postal de trabajo"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "Falló la vinculación con el usuario '%s'"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Habitación Nro."
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Número de habitación"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "¡La vinculación anónima al servidor %s ha funcionado!"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr "Número telefónico de trabajo"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Celular"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "¡Por favor especifique su usuario y contraseña!"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr "Celular de trabajo"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "¡Ha funcionado la vinculación del usuario '%s' al servidor '%s'!"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Bíper"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr "Bíper laboral"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Finalizar"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr "Nro. Fax de trabajo"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Finalizar - Crear el archivo de configuración"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Página web"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Crear el archivo de configuración"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr "Página web personal"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Su archivo de configuración no debería tener permisos de lectura para todos los usuarios. ¡Por favor actualice los permisos!"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr "Información de cuenta"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "No se puede acceder al archivo de configuración porque no existe o no tiene permisos de lectura sobre él."
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr "Cuenta de este usuario"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Después de descargar y colocar el archivo en %s, por favor verifique que el usuario con el cual está ejecutándose el servidor web tiene acceso a %s. Otros usuarios no deberían tener acceso."
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Idioma preferido"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Error en la configuración"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr "Contraseña del usuario"
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Completado"
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr "Información de contacto 'Personal'"
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Siguiente"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Error Interno"
+
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr "Dirección personal"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "¡El objectType especificado está vacío o es inválido!"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Código postal personal"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "Aún sin configurar"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Teléfono personal"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Error al filtrar"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Teléfono de domicilio personal"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "¡El filtro está incompleto!"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Información Profesional"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Permisos"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Tratamiento 'Sr, Sra...'"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Error de permisos"
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Usted no tiene permitido crear un 'snashot' para %s."
+
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Usted no tiene permitido restaurar un 'snapshot' para %s"
+
+#: include/class_management.inc:679
+#, php-format
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr "Tratamiento 'Dr, Ing, Sr, Sra ...' en un contexto profesional. Cada tratamiento es un valor de sus múltiples atributos."
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "No se encontró la etiqueta '%s' en su archivo de configuración. ¡No se puede crear la instancia del plugin!"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Root"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "División No."
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Enviar"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Número de División"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Arriba"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Empleado N°"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Abajo"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Número de empleado"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
+msgstr "Ordenar "
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Tipo de empleado"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
+msgstr "Ordenar de modo inverso"
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr "¡No se pudo encontrar la política \"%s\" en LDAP!"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Seleccionar todo"
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr "Usted no tiene permitido cambiar su propia contraseña."
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "creado por"
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr "Usted debe esperar %d segundos antes de cambiar su contraseña de nuevo."
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Ir a la División raíz"
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
-msgstr "La contraseña está en el historial de viejas contraseñas."
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Subir una División"
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
-msgstr "La contraseña no será cambiada por este valor"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
+msgstr "Ir a la División del usuario"
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Usted debe especificar su contraseña actual para poder proceder."
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Home"
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr "Las contraseñas que usted ingresó como \"Nueva contraseña\" y \"Repetir nueva contraseña\" no coinciden."
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Refrescar lista"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nueva contraseña"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Acciones"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "La contraseña anterior y la nueva son muy parecidas."
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Copiar"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "La contraseña nueva es muy corta."
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Cortar"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "La contraseña posiblemente contiene caracteres 'Unicoide' que son problemáticos."
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Pegar"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Cortar esta entrada"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Editar configuración POSIX de los usuarios"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Copiar esta entrada"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "'Home' del usuario"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Restaurar 'snapshots'"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "La ruta al nuevo directorio 'home' del usuario."
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Exportar lista"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Restaurar 'snapshot'"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr "Qué 'shells' deberían usarse cuando este usuario inicie sesión."
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Crear 'snapshot'"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Grupo Primario"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Crear un nuevo 'snapshot' de este objeto"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
-msgstr "Grupo primario para este usuario"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Error fatal"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Estado"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "in"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
-msgstr "Estado de la cuenta Unix de este usuario"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "en línea"
+
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Erro XML"
+
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "No se puede cambiar la contraseña, usuario desconocido '%s'"
+
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
+msgstr "Usted debe completar saslRealm o saslExop en la pantalla de configuración para usar SASL"
+
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Error de configuración"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
-msgstr "Forzar 'id' de usuario/grupo "
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Página"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
-msgstr "Forzar los valores 'id' y 'group id' para éste usuario."
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "No se puede exportar un PDF: no hay una librería FPDF instalada."
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
-msgstr "id de usuario"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
-msgstr "Forzar valor 'id' para este usuario"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr "id de Grupo"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "El canal requerido no existe. Por favor contacte a su administrador."
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr "Forzar valor 'Group id' para este usuario."
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Cancelar todo"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Pertenencia a grupos"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "No se puede pegar"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr "Cuenta de usuario"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "El usuario debe cambiar su contraseña en el primer inicio de sesión."
-
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr "El usuario debe cambiar su contraseña en el primer inicio de sesión (necesita un valor de retraso antes de forzar el cambio de contraseña)"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Plantilla"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
-msgstr ""
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Nombre de la plantilla"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr "Retraso antes de forzar el cambio de contraseña (días)"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
-msgstr "El usuario será forzado a cambiar su contraseña después de este número de días (deje vacío para deshabilitar)"
+"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."
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr "Fecha de caducidad para la contraseña"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "FATAL: Error conectándose a LDAP. El servidor dijo: '%s'"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:583
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr "La fecha tras la cual la contraseña de este usuario va a caducar (deje vacío para deshabilitar)"
+"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."
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr "Retraso de inactividad antes de deshabilitar el usuario (días)"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Error de autenticación"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:617
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr "Luego de que caduque la contraseña del usuario, tiempo máximo de retraso antes de deshabilitar la cuenta del usuario (deje vacío para deshabilitar)"
+"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."
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr "Retraso para avisar al usuario sobre el vencimiento de su contraseña (días)"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Error mientras agregando un bloqueo. ¡Contacte a los desarrolladores!"
 
-#: plugins/personal/posix/class_posixAccount.inc:184
+#: include/functions.inc:678
+#, php-format
 msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr "El usuario será advertido esta cantidad de días antes de que su contraseña caduque (deje vacío para deshabilitar)"
-
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Permitir a este usuario conectarse a esta lista de hosts."
-
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "Aún sin configurar"
-
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automático"
-
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "expirado"
-
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "Período de gracia activo"
-
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "activo"
-
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "Contraseña expirada"
+"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!"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "Contraseña no modificable"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "El servidor LDAP respondió: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:1130
 #, php-format
-msgid "Group of user %s"
-msgstr "Grupo del usuario %s"
+msgid "The size limit of %d entries is exceed!"
+msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr "Editar grupos y roles del usuario"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr "Pertenencia a grupos"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Configurar"
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr "Pertenencia a Roles"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "incompleto"
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr "Configuración de 'plugins'"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Continuar de todos modos"
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr "Configuración de plugins de FusionDirectory"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Editar de todos modos"
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Grupos"
+#: include/functions.inc:1563
+#, 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"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr "OGroup RDN"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Resultados por página"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr "Rama de LDAP donde ser almacenarán los Grupos"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Aplicar filtro"
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr "%sB"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr "Forzar para solicitar la contraseña"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr "%sKiB"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr "Útil si usted agrega un 'hook' utilizando una contraseña cuando las contraseñas de usuario SASL se editan."
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr "%sMiB"
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Configuración"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr "%sGiB"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr "Configuración de FusionDirectory"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr "%sTiB"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
+msgstr "%sPiB"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Look and feel"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
+msgstr "%sEiB"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Idioma"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
+msgstr "%sZiB"
 
-#: 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 "Idioma de la aplicación. Si utiliza 'automático' o no disponible, se preguntará al navegador cuál utilizar. Ésta opción puede ser cambiada por el usuario."
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
+msgstr "%sYiB"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Plantilla"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr "Plantilla a utilizar"
+#: include/functions.inc:2267
+#, 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."
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Zona Horaria"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr "Zona Horaria a utilizar"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr "Configuración del esquema 'LDAP'"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr "Validación del esquema 'LDAP'"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "LDAP - Advertencia"
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr "Habilita la validación del esquema 'LDAP' durante el inicio de sesión."
+#: include/functions.inc:2559
+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'"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Configuraciones de Contraseña"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr "'hash' de contraseña por defecto."
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr "'hash' por defecto"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr "Forzar 'hash' por defecto"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr "Forzar el uso del 'hash' de Contraseña por defecto."
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Longitud mínima de contraseña"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr "Longitud máxima de contraseña para usuarios"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr "Diferencia mínima entre contraseñas"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr "Cantidad mínima de caracteres distintos a partir de la última contraseña"
+#: include/functions.inc:2641
+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."
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Expiración de la cuenta de usuario"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
+#: include/functions.inc:2645
 msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr "Habilita pruebas del atributo 'shadow'  durante el proceso de inicio de sesión en FusionDirectory y fuerza la renovación de contraseña o bloqueo de cuenta."
+"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."
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr "SASL Realm"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr "SASL Exop"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr "Valor que será almacenado en el atributo 'userPassword'"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "¡método 'idAllocation' desconocido!"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr "Configuración del 'Núcleo'"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "%sPoolMin >= %sPoolMax!"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Muestra un resumen en los listados."
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "!sambaUnixIdPool no es un valor único!"
 
-#: plugins/config/class_configInLdap.inc:162
-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 "Determina cuando una barra de estado será mostrada al final de listas, en un resumen corto y cantidad de elementos en la lista."
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr "Editar bloqueo"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr "Mientras tanto, revisar si una entrada que está siendo editada ha sido modificada desde fuera de FusionDirectory."
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr "Habilitar escritura de logs"
+#: include/functions.inc:3321
+#, 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."
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr "Escritura de eventos en logs de FusionDirectory"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Todos los objetos en esta categoría"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr "Tamaño límite LDAP"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Por favor solucione el error anterior y recargue la página."
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr "Determine cuántas entradas se traerán de LDAP por defecto."
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr "La Zona Horaria \"%s\" en su configuración no es válida."
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Cuenta de Usuario y sesión"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Error XML en fusiondirectory.conf: %s en la línea %d"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Cuenta de Usuario"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr "Que atributo LDAP debería usarse como 'cuenta de usuario' en el inicio de sesión."
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "No se puede contactar a LDAP. Por favor contacte al adminsitrador del sistema."
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Forzar las conexiones encriptadas"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
+#: include/class_config.inc:886
+#, php-format
 msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr "Habilita revisiones de seguridad con PHP para forzar el acceso encriptado (https) en la interfaz web."
+"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:899
+#, 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'."
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Alertar si la sesión no se encuentra encriptada"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Todas las categorías"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr "mostrará un mensaje de advertencia al usuario cuando se utilice http en vez de https."
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Mi cuenta"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Tiempo de vida de la sesión "
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Elija para listar todos los objetos del tipo '%s'."
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Elegir para listar los objetos que posean '%s'."
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Elegir para listar todos los objetos que posean '%s' habilitado."
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Seleccione para buscar dentro de subárboles"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Buscar en subárboles"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "¡Este objeto será borrado!"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "¡Este '%s' objeto será borrad<o! "
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Este objeto será borrado: %s"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr "Snapshots"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Este '%s' objeto será borrado: %s"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Habilitar snapshots"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Este objeto será borrado:"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr "Permite que usted salve ciertos estados o entradas para luego restaurarlas."
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Este '%s' objeto será borrado:"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Base para Snapshot "
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Estos objetos serán borrados: %s"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr "La base donde los snapshots deberían ser almacenados dentro de LDAP."
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "These '%s' objects will be deleted: %s"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr "SSL"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "¡Usted no posee permisos para borrar este objeto!"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr "Ruta de la llave "
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Usted no posee permisos para borrar el objeto:"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr "Ruta donde se encuentra la llave de FusionDirectory. Por el momento, sin uso."
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Usted no posee permisos para borrar estos objetos:"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr "Ruta del certificado"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "¡No tienes permisos para crear este objeto!"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr "Ruta donde se encuentra el certificado. Por el momento, sin uso."
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "No tienes permisos para crear este objeto:"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr "Path del certificado CA"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "No tienes permisos para crear estos objetos:"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr "Ruta del certificado CA. Se utiliza para validar el equipo con el 'Servidor Argonaut'."
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "!No tienes permisos para modificar este objeto!"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "!No tienes permisos para ver este objeto!"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Equipo"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "No tienes permisos para ver el objeto:"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "No tienes permisos para para ver estos objetos:"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Puerto"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "!No tienes permisos para mover este objeto!"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "No tienes permisos para mover el objeto:"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "No tienes permisos para mover estos objetos:"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Información de la conexión"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Almacenamiento de 'Usuarios' y 'Grupos'"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "¡No se puede conectar a la base de datos %s!"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "Atributo DN para 'Usuarios'"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "¡No se puede seleccionar la base de datos %s!"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr "Atributo al inicio del \"dn\" de los usuarios"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "¡No se ha definido el servidor %s!"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr "Patrón para CN"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "¡No se puede consultar la base de datos %s!"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr "Este es el patrón que se usará para crear el campo de 'nombre común'"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "¡El campo '%s' tiene una palabra especial reservada por el sistema!"
+
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "¡El comando especificado como %s hook para el plugin '%s' no existe!"
+
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "¡El comando '%s' es inválido!"
+
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "¡El comando '%s' para el plugin %s es inválido!"
+
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "¡El '%s' comando  (%s) es inválido!"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr "Politica de nombres"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "¡'%s' comando (%s) para el plugin %s es inválido!"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr "Habilita la validación estricta de nombres para usuarios o grupos."
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "¡No se puede ejecutar el comando '%s'!"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr "Grupo/usuario min id"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "¡No se puede ejecutar el comando '%s' para el plugin %s!"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr "El número 'id' mínimo asignable a un usuario o grupo para evitar fallas de seguridad como cuentas de usuario con id '0'."
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "¡No se puede ejecutar  '%s' comando (%s)!"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr "Siguiente id hook"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr "Un script que buscará el siguiente número \"id\" libre para usuarios o grupos."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr "Número base para 'id' de usuario"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr "Dónde buscar un id libre de usuario."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr "Número base para 'id' de grupo"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr "Dónde buscar un id libre de grupo"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr "Usuarios RDN"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr "La rama donde los usuarios están guardados."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr "Grupos RDN"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr "La rama donde se guardan los grupos."
+#: include/class_msgPool.inc:435
+msgid "Example:"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr "ACL Rol RDN"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr "La rama donde los rol ACL están almacenados."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Método para asignar 'ids'"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr "Método para asignar 'ids' de grupo/usuario"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Tradicional"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr "Samba unix id pool"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Aplicar"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr "Pool user id min"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Salvar"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr "Valor mínimo para el valor 'id' del usuario cuando utilice el método 'pool'"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Agregar"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr "Pool user id max"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Agregar %s"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr "Valor máximo para el valor 'id' del usuario cuando utilice el método 'pool'"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Borrar"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr "Pool group id min"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Borrar %s"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr "Valor mínimo para id de 'grupo' cuando se utilice el método 'pool'"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Editar..."
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr "Pool group id max"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Editar %s..."
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr "Valor máximo para el group id cuando se utilice el método pool."
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Atrás"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "¡Esta cuenta no tiene extensiones %s válidas!"
 
-#: plugins/config/class_configInLdap.inc:377
+#: include/class_msgPool.inc:582
+#, php-format
 msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Ésta cuenta tiene %s configuraciones habilitadas. Usted puede deshabilitarlas haciendo clic debajo."
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Rastreo de errores"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Ésta cuenta tiene  %s configuraciones habilitadas. ¡Para deshabilitarlas deberá borrar el %s de configuraciones primero!"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr "Mostrar errores"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Ésta cuenta tiene %s configuraciones deshabilitadas. Usted puede habilitarlas haciendo clic debajo."
 
-#: plugins/config/class_configInLdap.inc:387
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
 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 "Muesta los errores PHP en la parte superior de la pantalla. esto debería estar deshabilitado en entornos productivos, ya que, en algunos casos podrían mostrarse contraseñas allí."
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Ésta cuenta tiene %s configuraciones deshabilitadas. ¡Para habilitarlas usted deberá agregar el %s de configuraciones primero!"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Tiempo máximo de consultas LDAP."
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Agregar %s configuraciones "
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr "Detenga las acciones sobre LDAP si no hay respuesta después del tiempo especificado en segundos."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Borrar %s configuraciones "
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Escribir logs de las estadísticas LDAP."
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Clic en el botón 'Editar' justo debajo para cambiar la información en este diálogo."
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr "Registrar estadísticas de tiempo de LDAP en 'syslog'. Esto puede ser útil para encontrar problemas o filtros de búsqueda erróneos."
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Enero"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Nivel del 'Rastreo de Errores'"
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Febrero"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr "Mostrar determinados datos en cada página de carga."
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Marzo"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Miscelánea"
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Abril"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr "'Hooks' que son llamados cuando suceden acciones específicas."
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Mayo"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr "Pestaña"
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Junio"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr "La pestaña que corresponde a este 'hook'"
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Julio"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "modo"
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Agosto"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr "Cuándo llamar este comando"
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Septiembre"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr "cmd"
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Octubre"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr "La línea de comandos que será usada"
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Noviembre"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Hooks"
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Diciembre"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr "Mostrar la salida del 'hook'"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Domingo"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr "Si se  habilita, cuando un 'hook' termine exitosamente se mostrará una ventana de diálogo al usuario."
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Lunes"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr "Shells disponibles"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Martes"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr "Shells POSIX disponibles para usuarios de FD."
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Miércoles"
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr "Mostrar pestaña de ACL en todos los objetos."
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Jueves"
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr "Para el uso de permisos ACLs muy específicos usted podría requerir dar acceso en un objeto particular."
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Viernes"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Sábado"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr ""
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "¡Falló la operación en la base de datos!"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automático"
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "leer operación"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Recuperación de contraseña"
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "agregar operación"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Configuraciones para la característica de recuperación de contraseña."
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "modificar operación"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Configuración de \"Recuperación de Contraseña\""
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "borrar operación"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Habilitar recuperación de contraseña."
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "buscar operación"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr "Elegir cuando activar la característica de recuperación de contraseña."
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "autenticación"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Correo del remitente"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "¡LDAP %s falló!"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "Dirección desde donde se enviarán los correos."
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "¡La operación en LDAP ha fallado!"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Vigencia del 'Link' (minutos)"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objeto"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr "Cantidad de tiempo antes que el link para recuperar expire."
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "¡La subida del archivo ha fallado!"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr "'Salt' para 'tokens''"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "¡La subida del archivo: %s ha fallado!"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Solo una medida de seguridad, usted puede incluir cualquier cosa aquí, incluso caracteres aleatorios."
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "¡Falló la comunicación con el servicio de infraestructura!"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Habilitar el uso de correos alternativos"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "¡Falló la comunicación con el servicio de infraestructura: %s!"
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Los usuarios también podrán una dirección alternativa para recuperar su contraseña."
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "Este '%s' sigue en uso por el objeto: %s"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "Correo principal"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "Este '%s' sigue en uso."
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Asunto"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Asunto del correo principal"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Enlace para recuperar contraseña"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_msgPool.inc:796
 #, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr "Mensaje (primer %s es Cuenta de usuario,  el segundo es 'Enlace')"
+msgid "Cannot open file '%s' for writing!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_msgPool.inc:806
 #, php-format
 msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
-msgstr "Mensaje del primer correo enviado cuando el usuario solicita una nueva contraseña. Utilice %s para la cuenta de usuario y el enlace de recuperación de contraseña."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_msgPool.inc:816
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Hola, \n\nAquí están sus datos:\n- Cuenta de usuario: %s\n- Enlace: %s\n\nEste enlace solo será válido por 10 minutos."
+msgid "Cannot delete file '%s'!"
+msgstr "No se puede eliminar el archivo '%s'!"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Email secundario"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Asunto del email secundario"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "¡No se puede borrar el directorio '%s'!"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] ¡Recuperación de contraseña satisfactoria!"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_msgPool.inc:856
 #, php-format
-msgid "Body (%s is login)"
-msgstr "Mensaje (%s es cuenta de usuario)"
+msgid "Install and activate the %s PHP module."
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_msgPool.inc:866
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr "Mensaje del segundo correo enviado al confirmar el cambio de contraseña. Utilice %s para la cuenta de usuario."
+msgid "Install and activate the %s Pear module."
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_msgPool.inc:876
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Hola,\n\nSu contraseña se ha cambiado.\nSu cuenta de usuario sigue siendo %s."
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "No se puede inicializar la clase '%s'! ¿Quizás hay algún plugin mal instalado en su configuración de FusionDirectory?"
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
-msgstr "Configuración del Panel"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr "FusionDirectory panel de configuración de plugins."
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr "Panel nombre del esquema"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr "Cantidad de dígitos"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Marca de tiempo"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr "Cantidad de dígitos a usar después del prefijo."
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr "Prefijos"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr "Prefijos que se usarán para las 'id' de computadoras."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
-msgstr "Panel de usuarios expirados"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
-msgstr "Cantidad de días"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
-msgstr "Número de días antes previos antes de expirar una cuenta para mostrarlo en el panel de las próximas cuentas por expirar."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
+msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Plugins"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
+msgstr "Snapshots"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr "Configuración de plugins"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
+msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Arriba"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Archivo"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Abajo"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Line"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
-msgstr "Ordenar "
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "Error PHP"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
-msgstr "Ordenar de modo inverso"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "clase"
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Seleccionar todo"
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "función"
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Error"
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "static"
 
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "creado por"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "método"
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Ir a la División raíz"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Trace"
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Root"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Tipo"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Subir una División"
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argumentos"
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
-msgstr "Ir a la División del usuario"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "¡Al generar esta página se han generado errores en el intérprete PHP!"
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Home"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Enviar un reporte de fallo al equipo de FusionDirectory"
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Refrescar lista"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Enviar reporte de errores"
+
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Alternar información"
+
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Advertencia de Rendmiento"
+
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+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:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr ""
+
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgstr ""
+
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "mientras se realizan operaciones en '%s' usando el servidor LDAP %s"
+
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "mientras se realizan operaciones en el servidor LDAP %s"
+
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
+msgstr "proc_open falló al ejecutar ldapsearch"
+
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Enviar"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
+msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Copiar"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Cortar"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
+msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Pegar"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Cortar esta entrada"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Eror mientras se importaba el dn: '%s', por favor revise su LDIF en la línea %s!"
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Copiar esta entrada"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Por favor elija las entradas que desea"
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Restaurar 'snapshots'"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nombre"
 
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Exportar lista"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Descripción"
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Restaurar 'snapshot'"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
+msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Crear 'snapshot'"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
+msgstr "Rol %s"
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Crear un nuevo 'snapshot' de este objeto"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
+msgstr "Grupo %s"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Error al filtrar"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Grupo del usuario"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "¡El filtro está incompleto!"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Ninguno"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Error de permisos"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Desconocido"
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
-#, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Usted no tiene permitido crear un 'snashot' para %s."
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Editar"
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
-#, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Usted no tiene permitido restaurar un 'snapshot' para %s"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Borrar"
 
-#: include/class_management.inc:679
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "No se encontró la etiqueta '%s' en su archivo de configuración. ¡No se puede crear la instancia del plugin!"
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "No se encontraron descripciones para iniciar '%s', por favor revise su archivo de configuración."
 
-#: include/class_config.inc:156
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-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:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Error de configuración"
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "El proceso de borrado fue cancelado por el plugin '%s': %s"
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simpleTabs.inc:401
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Error LDAP"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "No se puede contactar a LDAP. Por favor contacte al adminsitrador del sistema."
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
+msgstr "KB"
 
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
+msgstr "MB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr "GB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
+msgstr "TB"
+
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "segundos"
+
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "minutos"
+
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "horas"
+
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "días"
+
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr "A partir de plantilla"
 
-#: include/class_config.inc:885
+#: include/simpleplugin/class_simpleManagement.inc:243
 #, 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."
+msgid "%s template"
+msgstr "%s plantilla"
 
-#: include/class_config.inc:898
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
 #, 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'."
+msgid "Show %s"
+msgstr "Mostrar %s"
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Todas las categorías"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr "SIN ETIQUETA"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Mi cuenta"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr "Configuraciones de Plantilla"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Advertencia de Rendmiento"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr "Este es el nombre de la plantilla"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr "Solo la pestaña principal puede calcular dn"
+
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr "LDAP tiene un desempeño lento: su última consulta tomó %.2fs!"
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr "No es posible calcular dn: no hay pestaña de clase padre para \"%s\""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Error Interno"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr "No es posible calcular dn: No se encuentra el objectType infos desde la pestaña clase \"%s\""
+
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Error al salvar"
 
-#: include/class_ldap.inc:846
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
-msgstr ""
+msgid "There is already an entry with the same dn : %s"
+msgstr "Ya existe una entrada con el mismo dn: %s"
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "The entry %s is not existing"
+msgstr "La entrada %s no existe"
+
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "mientras se realizan operaciones en '%s' usando el servidor LDAP %s"
+msgid "Unknown field \"%s\""
+msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "mientras se realizan operaciones en el servidor LDAP %s"
+msgid "%s (required)"
+msgstr "%s (necesario)"
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
-msgstr "proc_open falló al ejecutar ldapsearch"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr "Objeto base"
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
-msgstr ""
+msgid "Cannot read uploaded file: %s"
+msgstr "No se puede leer el archivo subido: %s"
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "el archivo está vacio"
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "archivo no encontrado"
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "archivo sin privilegios de lectura"
 
-#: include/class_ldap.inc:1194
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
+msgid "%s (%d bytes)"
+msgstr "%s (%d bytes)"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Subir"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Descargar"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Eror mientras se importaba el dn: '%s', por favor revise su LDIF en la línea %s!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr ""
 
-#: include/class_msgPool.inc:43
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Elija para listar todos los objetos del tipo '%s'."
+msgid "Invalid value for %s"
+msgstr "Valor inválido para %s"
 
-#: include/class_msgPool.inc:45
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Elegir para listar los objetos que posean '%s'."
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_msgPool.inc:47
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Elegir para listar todos los objetos que posean '%s' habilitado."
-
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Seleccione para buscar dentro de subárboles"
+msgid "An integer between %d and %d"
+msgstr "Un número entero entre %d y %d"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Buscar en subárboles"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
+msgstr "Un número entero mayor que %d"
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "¡Este objeto será borrado!"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
+msgstr "Un número entero menor a %d"
 
-#: include/class_msgPool.inc:69
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "¡Este '%s' objeto será borrad<o! "
+msgid "A float between %f and %f"
+msgstr "Un número flotante entre %f y %f"
 
-#: include/class_msgPool.inc:74
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Este objeto será borrado: %s"
+msgid "A float larger than %f"
+msgstr "Un número flotante mayor que %f"
 
-#: include/class_msgPool.inc:76
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Este '%s' objeto será borrado: %s"
+msgid "A float smaller than %f"
+msgstr "Un número flotante menor que %f"
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Este objeto será borrado:"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr "Hubo un problema descomprimiendo la información del snapshot."
 
-#: include/class_msgPool.inc:83
+#: include/class_plugin.inc:795
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Este '%s' objeto será borrado:"
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Estos objetos serán borrados: %s"
+msgid "Tab \"%s\""
+msgstr "Pestaña \"%s\""
 
-#: include/class_msgPool.inc:89
-#, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "These '%s' objects will be deleted: %s"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "¡Usted no posee permisos para borrar este objeto!"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Administrar listas de control de acceso"
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Usted no posee permisos para borrar el objeto:"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Roles ACL"
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Usted no posee permisos para borrar estos objetos:"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr "¡Tipo de ACL '%s' desconocido!\nPuede que usted necesite ejecutar \"fusiondirectory-setup --migrate-acls\"  para migrar sus acls al nuevo formato."
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "¡No tienes permisos para crear este objeto!"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "¡Entrada desconocida '%s'!"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "No tienes permisos para crear este objeto:"
+#: include/class_acl.inc:173
+#, php-format
+msgid "All users"
+msgstr "Todos los usuarios"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "No tienes permisos para crear estos objetos:"
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "!No tienes permisos para modificar este objeto!"
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "¡No se puede acceder al directorio '%s' especificado para compilar!"
 
-#: include/class_msgPool.inc:151
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:150
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"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:171
+msgid "Smarty error"
+msgstr "Error en Smarty"
+
+#: html/index.php:173
+#, php-format
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "!No tienes permisos para ver este objeto!"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "¡Su sesión de FusionDirectory ha expirado!"
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "No tienes permisos para ver el objeto:"
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr "¡Tu IP ha cambiado!"
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "No tienes permisos para para ver estos objetos:"
+#: html/index.php:214
+#, php-format
+msgid "Invalid plugin parameter \"%s\"!"
+msgstr "¡Parámetro \"%s\" de plugin inválido!"
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "!No tienes permisos para mover este objeto!"
+#: html/index.php:217
+msgid "No session found!"
+msgstr "¡No se encuentra la sesión!"
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "No tienes permisos para mover el objeto:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "No tienes permisos para mover estos objetos:"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Información de la conexión"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "¡Por favor especifique un nombre de usuario válido!"
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
-msgstr "¡No se puede conectar a la base de datos %s!"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "¡Por favor especifique su contraseña!"
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
-msgstr "¡No se puede seleccionar la base de datos %s!"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Por favor verifique su combinación de usuario/contraseña"
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
-msgstr "¡No se ha definido el servidor %s!"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Cuenta bloqueada. ¡Por favor contacte a su administrador!"
 
-#: include/class_msgPool.inc:275
+#: html/index.php:454
 #, php-format
-msgid "Cannot query %s database!"
-msgstr "¡No se puede consultar la base de datos %s!"
+msgid "No value found in HTTP header \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:285
+#: html/index.php:475
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "¡El campo '%s' tiene una palabra especial reservada por el sistema!"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:297
+#: html/index.php:485
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "¡El comando especificado como %s hook para el plugin '%s' no existe!"
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:313
+#: html/index.php:547
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "¡El comando '%s' es inválido!"
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:315
+#: html/index.php:557
 #, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "¡El comando '%s' para el plugin %s es inválido!"
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "¡El '%s' comando  (%s) es inválido!"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Su navegador tiene las cookies deshabilitadas. ¡Por favor habilítelas y recarge la página antes de iniciar sesión!"
 
-#: include/class_msgPool.inc:321
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "¡'%s' comando (%s) para el plugin %s es inválido!"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "La configuración %s/%s de FusionDirectory no tiene permisos de lectura. Abortado."
 
-#: include/class_msgPool.inc:339
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "¡No se puede ejecutar el comando '%s'!"
+msgid "Did not find an account with login \"%s\""
+msgstr "No se encontró la cuenta de usuario: \"%s\""
 
-#: include/class_msgPool.inc:341
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "¡No se puede ejecutar el comando '%s' para el plugin %s!"
+msgid "Found multiple accounts with login \"%s\""
+msgstr "Se encontraron varias cuentas identificadas como: \"%s\""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "¡No se puede ejecutar  '%s' comando (%s)!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Dirección de correo"
 
-#: include/class_msgPool.inc:347
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:362
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Value for '%s' is too large!"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:364
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "'%s' must be smaller than %s!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr ""
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Contacte a su administrador, hubo un problema con el servidor de correo."
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr ""
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr "Este token es inválido"
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr ""
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr "Hay un problema con el servidor de correo, la confirmación de email no será enviada."
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr ""
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Configuración PHP"
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
-msgstr ""
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Error fatal: Registrar 'globales' está habilitado. FusionDirectory rechazará el inicio de sesión hasta que esto sea solucionado por un administrador."
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
-msgstr ""
+#: html/main.php:142
+msgid "Password change"
+msgstr "Cambio de contraseña"
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
-msgstr ""
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Su contraseña está a punto de expirar, ¡por favor cambie su contraseña!"
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:456
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "¡El sistema se está quedando sin memoria!"
+
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Checks  ACL de usuario deshabiltiados"
+
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Plugin"
+
+#: html/main.php:290
 #, php-format
-msgid "'%s' is not allowed:"
-msgstr ""
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr "Error Fatal: ¡No es posible encontrar ninguna definición de plugin para el plugin '%s' ('%s' no es un archivo)!"
 
-#: include/class_msgPool.inc:456
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Error de configuración"
+
+#: html/main.php:306
 #, php-format
-msgid "'%s' are not allowed!"
-msgstr ""
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Error Fatal: ¡Algunas de las variables POST no se han transferido por PHP - por favor informe a su administrador!"
 
-#: include/class_msgPool.inc:470
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Missing %s PHP extension!"
-msgstr ""
+msgid "Welcome %s!"
+msgstr "¡Bienvenido  %s!"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Cancelar"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Referencias"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Aplicar"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Editar configuración POSIX de los usuarios"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "'Home' del usuario"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "La ruta al nuevo directorio 'home' del usuario."
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr "Qué 'shells' deberían usarse cuando este usuario inicie sesión."
+
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Grupo Primario"
+
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr "Grupo primario para este usuario"
+
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr "Estado de la cuenta Unix de este usuario"
+
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr "Forzar 'id' de usuario/grupo "
+
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr "Forzar los valores 'id' y 'group id' para éste usuario."
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr "id de usuario"
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr "Forzar valor 'id' para este usuario"
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr "id de Grupo"
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Salvar"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr "Forzar valor 'Group id' para este usuario."
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Agregar"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Pertenencia a grupos"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Agregar %s"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Cuenta de usuario"
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Borrar %s"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "El usuario debe cambiar su contraseña en el primer inicio de sesión."
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Editar..."
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr "El usuario debe cambiar su contraseña en el primer inicio de sesión (necesita un valor de retraso antes de forzar el cambio de contraseña)"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Editar %s..."
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Atrás"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "¡Esta cuenta no tiene extensiones %s válidas!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr "Retraso antes de forzar el cambio de contraseña (días)"
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Ésta cuenta tiene %s configuraciones habilitadas. Usted puede deshabilitarlas haciendo clic debajo."
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr "El usuario será forzado a cambiar su contraseña después de este número de días (deje vacío para deshabilitar)"
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr "Fecha de caducidad para la contraseña"
+
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Ésta cuenta tiene  %s configuraciones habilitadas. ¡Para deshabilitarlas deberá borrar el %s de configuraciones primero!"
+"Date after which this user password will expire (leave empty to disable)"
+msgstr "La fecha tras la cual la contraseña de este usuario va a caducar (deje vacío para deshabilitar)"
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr "Retraso de inactividad antes de deshabilitar el usuario (días)"
+
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Ésta cuenta tiene %s configuraciones deshabilitadas. Usted puede habilitarlas haciendo clic debajo."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr "Luego de que caduque la contraseña del usuario, tiempo máximo de retraso antes de deshabilitar la cuenta del usuario (deje vacío para deshabilitar)"
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr "Retraso para avisar al usuario sobre el vencimiento de su contraseña (días)"
+
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Ésta cuenta tiene %s configuraciones deshabilitadas. ¡Para habilitarlas usted deberá agregar el %s de configuraciones primero!"
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr "El usuario será advertido esta cantidad de días antes de que su contraseña caduque (deje vacío para deshabilitar)"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Agregar %s configuraciones "
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Confianza del Sistema"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "Borrar %s configuraciones "
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Modo de Confianza"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Clic en el botón 'Editar' justo debajo para cambiar la información en este diálogo."
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr "Tipo de autorización para ésos equipos"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Enero"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "deshabilitado"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Febrero"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "Acceso Completo"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Marzo"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "Permitir acceso a ésos equipos"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Abril"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Permitir a este usuario conectarse a esta lista de hosts."
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Mayo"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automático"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Junio"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "expirado"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Julio"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "Período de gracia activo"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Agosto"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "activo"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Septiembre"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "Contraseña expirada"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Octubre"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "Contraseña no modificable"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Noviembre"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Diciembre"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Domingo"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Tiempo de espera superado mientras se esperaba el bloqueo. ¡Ignorando el bloqueo!"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Lunes"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr "Grupo del usuario %s"
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Martes"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr "Grupos y Roles"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Miércoles"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr "Editar grupos y roles del usuario"
+
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr "Pertenencia a grupos"
+
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr "Pertenencia a Roles"
+
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Tipo de contraseña"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Jueves"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Tipo de 'hash' para la contraseña"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Viernes"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Contraseña"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Sábado"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Contraseña (deje vacío si usted no desea cambiarla)"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "¡Falló la operación en la base de datos!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Su contraseña de nuevo"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "leer operación"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr "Igual a la contraseña anterior para evitar errores"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "agregar operación"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Usuario"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "modificar operación"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr "Información de Cuentas de Usuario"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "borrar operación"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr "Cuenta de Usuario"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "buscar operación"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Información personal"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "autenticación"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Apellido"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "¡LDAP %s falló!"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr "Apellido de este usuario"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "¡La operación en LDAP ha fallado!"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Primer nombre"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "¡La subida del archivo ha fallado!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr "Primer nombre de este usuario"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "¡La subida del archivo: %s ha fallado!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr "Descripción corta para éste usuario"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "¡Falló la comunicación con el servicio de infraestructura!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr "Imagen"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "¡Falló la comunicación con el servicio de infraestructura: %s!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr "El avatar para este usuario"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "Este '%s' sigue en uso por el objeto: %s"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr "Información de contacto Profesional"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "Este '%s' sigue en uso."
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Ubicación"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Estado"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Dirección"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr "Dirección postal de trabajo"
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Habitación Nro."
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Número de habitación"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "No se puede eliminar el archivo '%s'!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Teléfono"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr "Número telefónico de trabajo"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "¡No se puede borrar el directorio '%s'!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Celular"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr "Celular de trabajo"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Bíper"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr "Bíper laboral"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "No se puede inicializar la clase '%s'! ¿Quizás hay algún plugin mal instalado en su configuración de FusionDirectory?"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr "Nro. Fax de trabajo"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Página web"
 
-#: include/functions.inc:142
-#, php-format
-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."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr "Página web personal"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Error fatal"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr "Información de cuenta"
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
-msgstr "FATAL: Error conectándose a LDAP. El servidor dijo: '%s'"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr "Cuenta de este usuario"
 
-#: include/functions.inc:583
-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."
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr "Contraseña del usuario"
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Error de autenticación"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr "Información de contacto 'Personal'"
 
-#: include/functions.inc:617
-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."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Error mientras agregando un bloqueo. ¡Contacte a los desarrolladores!"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr ""
 
-#: include/functions.inc:678
-#, 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!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr "Dirección personal"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "El servidor LDAP respondió: %s"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Código postal personal"
 
-#: include/functions.inc:859
-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."
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Teléfono personal"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Teléfono de domicilio personal"
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Información Profesional"
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Configurar"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Tratamiento 'Sr, Sra...'"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "incompleto"
+#: plugins/personal/generic/class_user.inc:415
+msgid ""
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr "Tratamiento 'Dr, Ing, Sr, Sra ...' en un contexto profesional. Cada tratamiento es un valor de sus múltiples atributos."
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Continuar de todos modos"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organización"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Editar de todos modos"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "División"
 
-#: include/functions.inc:1563
-#, 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"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
+msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Resultados por página"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "División No."
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Aplicar filtro"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Número de División"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr "%sB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Empleado N°"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr "%sKiB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Número de empleado"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr "%sMiB"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Tipo de empleado"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
-msgstr "%sGiB"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Mánager"
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sTiB"
-msgstr "%sTiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgstr "¡No se pudo encontrar la política \"%s\" en LDAP!"
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
-msgstr "%sPiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr "Usted no tiene permitido cambiar su propia contraseña."
 
-#: include/functions.inc:2123
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sEiB"
-msgstr "%sEiB"
+msgid "You must wait %d seconds before changing your password again"
+msgstr "Usted debe esperar %d segundos antes de cambiar su contraseña de nuevo."
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
-msgstr "%sZiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr "La contraseña está en el historial de viejas contraseñas."
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
-msgstr "%sYiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr "La contraseña no será cambiada por este valor"
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Usted debe especificar su contraseña actual para poder proceder."
 
-#: include/functions.inc:2294
-#, php-format
+#: plugins/personal/generic/class_user.inc:653
 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:2336
-msgid "Cannot write to revision file!"
-msgstr ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr "Las contraseñas que usted ingresó como \"Nueva contraseña\" y \"Repetir nueva contraseña\" no coinciden."
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nueva contraseña"
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "La contraseña anterior y la nueva son muy parecidas."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "LDAP - Advertencia"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "La contraseña nueva es muy corta."
 
-#: include/functions.inc:2586
-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'"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "La contraseña posiblemente contiene caracteres 'Unicoide' que son problemáticos."
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr "Estadísticas de los usuarios"
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
+msgstr "Estadísticas de usuario"
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
+msgstr "Estadísticas de los grupos"
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
+msgstr "Cuentas expiradas"
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
+msgstr "Panel"
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr "Estadísticas e información general"
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
+msgstr "Reportes"
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr "Estadísticas"
 
-#: include/functions.inc:2668
-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."
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Recuperación de contraseña"
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Configuraciones para la característica de recuperación de contraseña."
 
-#: include/functions.inc:2672
-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."
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Configuración de \"Recuperación de Contraseña\""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Habilitar recuperación de contraseña."
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
+msgstr "Elegir cuando activar la característica de recuperación de contraseña."
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "¡método 'idAllocation' desconocido!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Correo del remitente"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "Dirección desde donde se enviarán los correos."
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "!sambaUnixIdPool no es un valor único!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Vigencia del 'Link' (minutos)"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr "Cantidad de tiempo antes que el link para recuperar expire."
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr "'Salt' para 'tokens''"
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Solo una medida de seguridad, usted puede incluir cualquier cosa aquí, incluso caracteres aleatorios."
 
-#: include/functions.inc:3345
-#, 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."
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Habilitar el uso de correos alternativos"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "El canal requerido no existe. Por favor contacte a su administrador."
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Los usuarios también podrán una dirección alternativa para recuperar su contraseña."
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "Correo principal"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Nombre de la plantilla"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Asunto"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Todos los objetos en esta categoría"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Asunto del correo principal"
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Archivo"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Enlace para recuperar contraseña"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Line"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr "Mensaje (primer %s es Cuenta de usuario,  el segundo es 'Enlace')"
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "Error PHP"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr "Mensaje del primer correo enviado cuando el usuario solicita una nueva contraseña. Utilice %s para la cuenta de usuario y el enlace de recuperación de contraseña."
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "clase"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Hola, \n\nAquí están sus datos:\n- Cuenta de usuario: %s\n- Enlace: %s\n\nEste enlace solo será válido por 10 minutos."
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "función"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Email secundario"
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "static"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Asunto del email secundario"
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "método"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] ¡Recuperación de contraseña satisfactoria!"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Trace"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr "Mensaje (%s es cuenta de usuario)"
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Tipo"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr "Mensaje del segundo correo enviado al confirmar el cambio de contraseña. Utilice %s para la cuenta de usuario."
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argumentos"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Hola,\n\nSu contraseña se ha cambiado.\nSu cuenta de usuario sigue siendo %s."
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "¡Al generar esta página se han generado errores en el intérprete PHP!"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Configuración"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Enviar un reporte de fallo al equipo de FusionDirectory"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr "Configuración de FusionDirectory"
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Enviar reporte de errores"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Alternar información"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Look and feel"
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Por favor solucione el error anterior y recargue la página."
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Idioma"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
-msgstr ""
+#: 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 "Idioma de la aplicación. Si utiliza 'automático' o no disponible, se preguntará al navegador cuál utilizar. Ésta opción puede ser cambiada por el usuario."
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Plantilla"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Marca de tiempo"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr "Plantilla a utilizar"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Zona Horaria"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr "Zona Horaria a utilizar"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr "Configuración del esquema 'LDAP'"
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
+msgstr "Validación del esquema 'LDAP'"
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr "Habilita la validación del esquema 'LDAP' durante el inicio de sesión."
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Configuraciones de Contraseña"
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr "'hash' de contraseña por defecto."
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Página"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr "'hash' por defecto"
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr "Forzar 'hash' por defecto"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "No se puede exportar un PDF: no hay una librería FPDF instalada."
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr "Forzar el uso del 'hash' de Contraseña por defecto."
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Longitud mínima de contraseña"
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "in"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr "Longitud máxima de contraseña para usuarios"
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "en línea"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr "Diferencia mínima entre contraseñas"
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Erro XML"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr "Cantidad mínima de caracteres distintos a partir de la última contraseña"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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 ""
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Expiración de la cuenta de usuario"
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:144
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
+msgstr "Habilita pruebas del atributo 'shadow'  durante el proceso de inicio de sesión en FusionDirectory y fuerza la renovación de contraseña o bloqueo de cuenta."
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
-msgstr "Pestaña \"%s\""
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
+msgstr "SASL Realm"
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Cancelar todo"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr "SASL Exop"
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "No se puede pegar"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
+msgstr "Valor que será almacenado en el atributo 'userPassword'"
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
-msgstr "Configuraciones de Plantilla"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
+msgstr "Configuración del 'Núcleo'"
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
-msgstr "Este es el nombre de la plantilla"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Muestra un resumen en los listados."
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
-msgstr "Solo la pestaña principal puede calcular dn"
+#: plugins/config/class_configInLdap.inc:162
+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 "Determina cuando una barra de estado será mostrada al final de listas, en un resumen corto y cantidad de elementos en la lista."
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
-msgstr "No es posible calcular dn: no hay pestaña de clase padre para \"%s\""
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr "Editar bloqueo"
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
-msgstr "No es posible calcular dn: No se encuentra el objectType infos desde la pestaña clase \"%s\""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr "Mientras tanto, revisar si una entrada que está siendo editada ha sido modificada desde fuera de FusionDirectory."
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Error al salvar"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr "Habilitar escritura de logs"
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "Ya existe una entrada con el mismo dn: %s"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr "Escritura de eventos en logs de FusionDirectory"
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "La entrada %s no existe"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr "Tamaño límite LDAP"
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr "Determine cuántas entradas se traerán de LDAP por defecto."
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Por favor elija las entradas que desea"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Cuenta de Usuario y sesión"
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr "%s plantilla"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Cuenta de Usuario"
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
-msgstr "Mostrar %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
+msgstr "Que atributo LDAP debería usarse como 'cuenta de usuario' en el inicio de sesión."
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Forzar las conexiones encriptadas"
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
-msgstr "Rol %s"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
+msgstr "Habilita revisiones de seguridad con PHP para forzar el acceso encriptado (https) en la interfaz web."
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
-msgstr "Grupo %s"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Alertar si la sesión no se encuentra encriptada"
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Grupo del usuario"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr "mostrará un mensaje de advertencia al usuario cuando se utilice http en vez de https."
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Ninguno"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Tiempo de vida de la sesión "
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Desconocido"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
-msgstr "KB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
-msgstr "MB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
-msgstr "GB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
-msgstr "TB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "segundos"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "minutos"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Habilitar snapshots"
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "horas"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr "Permite que usted salve ciertos estados o entradas para luego restaurarlas."
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "días"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Base para Snapshot "
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (necesario)"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr "La base donde los snapshots deberían ser almacenados dentro de LDAP."
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
+msgstr "SSL"
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "Un número entero entre %d y %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
+msgstr "Ruta de la llave "
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "Un número entero mayor que %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
+msgstr "Ruta donde se encuentra la llave de FusionDirectory. Por el momento, sin uso."
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "Un número entero menor a %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
+msgstr "Ruta del certificado"
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Un número flotante entre %f y %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
+msgstr "Ruta donde se encuentra el certificado. Por el momento, sin uso."
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr "Un número flotante mayor que %f"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
+msgstr "Path del certificado CA"
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
-msgstr "Un número flotante menor que %f"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+msgstr "Ruta del certificado CA. Se utiliza para validar el equipo con el 'Servidor Argonaut'."
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "No se puede leer el archivo subido: %s"
-
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "el archivo está vacio"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "archivo no encontrado"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "archivo sin privilegios de lectura"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
-msgstr "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Equipo"
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Subir"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Descargar"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Puerto"
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
-msgstr "Objeto base"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
-msgstr "Valor inválido para %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Almacenamiento de 'Usuarios' y 'Grupos'"
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr "SIN ETIQUETA"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "Atributo DN para 'Usuarios'"
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "No se encontraron descripciones para iniciar '%s', por favor revise su archivo de configuración."
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr "Atributo al inicio del \"dn\" de los usuarios"
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "El proceso de borrado fue cancelado por el plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr "Patrón para CN"
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
+msgstr "Este es el patrón que se usará para crear el campo de 'nombre común'"
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
-msgstr "La Zona Horaria \"%s\" en su configuración no es válida."
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr "Politica de nombres"
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr "Habilita la validación estricta de nombres para usuarios o grupos."
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Administrar listas de control de acceso"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr "Grupo/usuario min id"
 
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
-msgstr "¡Tipo de ACL '%s' desconocido!\nPuede que usted necesite ejecutar \"fusiondirectory-setup --migrate-acls\"  para migrar sus acls al nuevo formato."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
+msgstr "El número 'id' mínimo asignable a un usuario o grupo para evitar fallas de seguridad como cuentas de usuario con id '0'."
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "¡Entrada desconocida '%s'!"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr "Siguiente id hook"
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Todos los usuarios"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr "Un script que buscará el siguiente número \"id\" libre para usuarios o grupos."
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "No se puede cambiar la contraseña, usuario desconocido '%s'"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr "Número base para 'id' de usuario"
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
-msgstr "Usted debe completar saslRealm o saslExop en la pantalla de configuración para usar SASL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr "Dónde buscar un id libre de usuario."
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
-msgstr "Hubo un problema descomprimiendo la información del snapshot."
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr "Número base para 'id' de grupo"
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr "Dónde buscar un id libre de grupo"
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
+msgstr "Usuarios RDN"
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "¡El objectType especificado está vacío o es inválido!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
+msgstr "La rama donde los usuarios están guardados."
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
+msgstr "Grupos RDN"
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr "La rama donde se guardan los grupos."
+
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
+msgstr "ACL Rol RDN"
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"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."
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr "La rama donde los rol ACL están almacenados."
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Error en Smarty"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Método para asignar 'ids'"
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
+msgstr "Método para asignar 'ids' de grupo/usuario"
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "¡Su sesión de FusionDirectory ha expirado!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Tradicional"
 
-#: html/index.php:211
-msgid "Your IP has changed!"
-msgstr "¡Tu IP ha cambiado!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr "Samba unix id pool"
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
-msgstr "¡Parámetro \"%s\" de plugin inválido!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
+msgstr "Pool user id min"
 
-#: html/index.php:217
-msgid "No session found!"
-msgstr "¡No se encuentra la sesión!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
+msgstr "Valor mínimo para el valor 'id' del usuario cuando utilice el método 'pool'"
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
+msgstr "Pool user id max"
 
-#: html/index.php:255
-msgid "LDAP schema error"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr "Valor máximo para el valor 'id' del usuario cuando utilice el método 'pool'"
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "¡Por favor especifique un nombre de usuario válido!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr "Pool group id min"
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "¡Por favor especifique su contraseña!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr "Valor mínimo para id de 'grupo' cuando se utilice el método 'pool'"
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Por favor verifique su combinación de usuario/contraseña"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
+msgstr "Pool group id max"
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Cuenta bloqueada. ¡Por favor contacte a su administrador!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
+msgstr "Valor máximo para el group id cuando se utilice el método pool."
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Rastreo de errores"
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr "Mostrar errores"
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:387
+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 "Muesta los errores PHP en la parte superior de la pantalla. esto debería estar deshabilitado en entornos productivos, ya que, en algunos casos podrían mostrarse contraseñas allí."
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Tiempo máximo de consultas LDAP."
+
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Su navegador tiene las cookies deshabilitadas. ¡Por favor habilítelas y recarge la página antes de iniciar sesión!"
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr "Detenga las acciones sobre LDAP si no hay respuesta después del tiempo especificado en segundos."
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Configuración PHP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Escribir logs de las estadísticas LDAP."
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:397
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Error fatal: Registrar 'globales' está habilitado. FusionDirectory rechazará el inicio de sesión hasta que esto sea solucionado por un administrador."
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr "Registrar estadísticas de tiempo de LDAP en 'syslog'. Esto puede ser útil para encontrar problemas o filtros de búsqueda erróneos."
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Cambio de contraseña"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Nivel del 'Rastreo de Errores'"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Su contraseña está a punto de expirar, ¡por favor cambie su contraseña!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr "Mostrar determinados datos en cada página de carga."
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Miscelánea"
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "¡El sistema se está quedando sin memoria!"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
+msgstr "'Hooks' que son llamados cuando suceden acciones específicas."
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Checks  ACL de usuario deshabiltiados"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr "Pestaña"
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Plugin"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr "La pestaña que corresponde a este 'hook'"
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
-msgstr "Error Fatal: ¡No es posible encontrar ninguna definición de plugin para el plugin '%s' ('%s' no es un archivo)!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "modo"
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Error de configuración"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr "Cuándo llamar este comando"
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Error Fatal: ¡Algunas de las variables POST no se han transferido por PHP - por favor informe a su administrador!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr "cmd"
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "La configuración %s/%s de FusionDirectory no tiene permisos de lectura. Abortado."
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr "La línea de comandos que será usada"
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "¡No se puede acceder al directorio '%s' especificado para compilar!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Hooks"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
-msgstr "No se encontró la cuenta de usuario: \"%s\""
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr "Mostrar la salida del 'hook'"
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
-msgstr "Se encontraron varias cuentas identificadas como: \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
+msgstr "Si se  habilita, cuando un 'hook' termine exitosamente se mostrará una ventana de diálogo al usuario."
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Dirección de correo"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr "Shells disponibles"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr "Shells POSIX disponibles para usuarios de FD."
+
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr "Mostrar pestaña de ACL en todos los objetos."
+
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
+msgstr "Para el uso de permisos ACLs muy específicos usted podría requerir dar acceso en un objeto particular."
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Contacte a su administrador, hubo un problema con el servidor de correo."
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Plugins"
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
-msgstr "Este token es inválido"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr "Configuración de plugins"
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
-msgstr "Hay un problema con el servidor de correo, la confirmación de email no será enviada."
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr "Configuración de 'plugins'"
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr "Configuración de plugins de FusionDirectory"
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Grupos"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Ubicación"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
+msgstr "OGroup RDN"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
-msgstr "Nombre de esta conexión para mostrar en la lista de servidores de LDAP."
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
+msgstr "Rama de LDAP donde ser almacenarán los Grupos"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "URI de conexión"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
-msgstr "URI para contactar al servidor LDAP. Usualmente comienza con ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
+msgstr "Forzar para solicitar la contraseña"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "Conexión TLS"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
+msgstr "Útil si usted agrega un 'hook' utilizando una contraseña cuando las contraseñas de usuario SASL se editan."
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
-msgstr "¿Debería usarse TLS para conectarse a este servidor LDAP?"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr "Configuración del Panel"
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
-msgstr "El directorio base de LDAP"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr "FusionDirectory panel de configuración de plugins."
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Autenticación"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr "Panel nombre del esquema"
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
-msgstr "DN de la cuenta admin para conectarse a LDAP. La base se añade automáticamente."
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr "Cantidad de dígitos"
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "DN para el Administrador"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr "Cantidad de dígitos a usar después del prefijo."
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Contraseña de Administrador"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr "Prefijos"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
-msgstr "Contraseña para la cuenta de Administrador que será vinculada a LDAP."
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr "Prefijos que se usarán para las 'id' de computadoras."
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Estado Actual"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
+msgstr "Panel de usuarios expirados"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
-msgstr "Resultado del último intento al revisar la vinculación con LDAP y los esquemas básicos."
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr "Cantidad de días"
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Configuración de LDAP"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
+msgstr "Número de días antes previos antes de expirar una cuenta para mostrarlo en el panel de las próximas cuentas por expirar."
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Configuración de conexión LDAP"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Divisiones"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Este mensaje muestra una configuración básica de la conectividad de LDAP con FusionDirectory."
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "división"
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Propiedades"
+
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "¡La vinculación anónima al servidor %s ha fallado!"
+msgid "Name of %s"
+msgstr "Nombre de  %s"
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Falló la vinculación con el usuario '%s'"
+msgid "A name for this %s"
+msgstr "Un nombre para este %s"
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
+msgstr "Una descripción de este %s"
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "categoría"
+
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "¡La vinculación anónima al servidor %s ha funcionado!"
+msgid "Category of this %s"
+msgstr "Categoría de este %s"
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "¡Por favor especifique su usuario y contraseña!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "¡Ha funcionado la vinculación del usuario '%s' al servidor '%s'!"
+msgid "Manager of this %s"
+msgstr "Mánager de este %s"
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "País"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
-msgstr ""
+msgid "A postal address for this %s"
+msgstr "Dirección postal de este  %s"
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Bienvenido"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Número telefónico"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Finalizar"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr "Teléfono alternativo"
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Finalizar - Crear el archivo de configuración"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr "organización"
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Crear el archivo de configuración"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Dominio"
+
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr "dominio"
+
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Administrar categorías"
 
-#: setup/class_setupStep_Finish.inc:89
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Su archivo de configuración no debería tener permisos de lectura para todos los usuarios. ¡Por favor actualice los permisos!"
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "No se puede acceder al archivo de configuración porque no existe o no tiene permisos de lectura sobre él."
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Usuarios y Grupos"
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Después de descargar y colocar el archivo en %s, por favor verifique que el usuario con el cual está ejecutándose el servidor web tiene acceso a %s. Otros usuarios no deberían tener acceso."
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Componente de Dominio"
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Migrar"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr "componente de dominio"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "Verificación de extensiones y módulos PHP "
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Localidad"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Revisión de LDAP"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
+msgstr "localidad"
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Se va a analizar la compatibilidad entre LDAP y FusionDirectory"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Lista de categorías"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
-msgstr "Otorgar todos los permisos en usuarios que pertenezcan a dicha rama."
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr "país"
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr "Permitir a los usuarios editar su propia información (Pestaña de Inicio y posix, usar únicamente en base)"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Administrar usuarios"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
-msgstr "Permitir a los usuarios editar su propia contraseña (Solo en las pestañas POSIX e Inicio)"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Revisar las clases del objeto 'root'"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Bloqueo de cuentas"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Revisar los permisos para la base de datos LDAP"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr "El método de contraseña \"%s\" no soporta bloqueos. ¡La cuenta \"%s\" no se ha bloqueado!"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Desbloquear cuenta"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Bloquear cuenta"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr ""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Lista de usuarios"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr ""
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Apellido"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr ""
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Nombre"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Revisar si existen Divisiones ocultas"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Bloquear usuarios"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Desbloquear usuarios"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Aplicar plantilla"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr ""
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Nuevo usuario a partir de plantilla"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Editar usuario"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Falló"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "¡No se encuentra el objeto clase '%s' de FusionDirectory!"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Borrar usuario"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Por favor verifique su instalación."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Rol"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "No es posible utilizar el tipo de objeto estructurado de su objeto 'root'. Por favor intente agregar el objeto clase '%s' manualmente."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr "Información del Rol"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr "El usuario \"%s\" especificado no tiene acceso completo a la base de datos LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
+msgstr "Rol Profesional"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
-msgstr "El usuario \"%s\" especificado no tiene acceso completo a la base de datos ldap."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Datos"
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "Se encontraron %s usuario(s) que no estarán visibles en FusionDirectory o que están incompletos."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr "Nombre de este grupo"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr "Migración de Usuario"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Descripción del Rol"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Error de migración"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Teléfono"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
-msgstr "No se puede migrar la entrada \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Fax"
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr "Se encontraron cuentas administrativas de FD 1.0.7: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
-msgstr "Se encontraron grupos administrativos de FD 1.0.7: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Agregar usuarios al rol"
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
-msgstr "Usted debe ejecutar <i>fusiondirectory-setup-migrate-acls</i> después de salvar su archivo de configuración al terminar la configuración general para migrarlo. <br/>"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
+msgstr "Administrar grupos y roles"
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
-msgstr "No hay un administrador válido de FusionDirectory 1.0.8  en su LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Grupos"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
+msgstr "Editar propiedades de Rol"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "No hay una cuenta de administrador de FusionDirectory en su LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
-msgstr "Dar permisos en todos los objetos."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Editar propiedades posix"
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr "Los roles ACL por defecto no han sido insertados"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
+msgstr "Mostrar grupos del usuario"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
-msgstr "No se encuentran algunos de los roles ACL por defecto"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Mostrar grupos primarios"
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
-msgstr "Los roles ACL por defecto han sido insertados"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
+msgstr "Mostrar roles de Profesionales"
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
-msgstr "No es posible agregar el rol ACL \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
+msgstr "Mostrar grupos de aplicación"
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr "Se encontraron %s usuario(s) fuera del árbol configurado \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Mover usuarios dentro del árbol configurado"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Mostrar grupos de correo"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
-msgstr "¡No se pueden mover entradas en la División seleccionada!"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Mostrar grupos Samba"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
-msgstr "La entrada será movida desde "
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "a"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
+msgstr "Mostrar grupos de servidores"
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Las siguientes referencias serán actualizadas"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr "Mostrar grupos de estaciones de trabajo"
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Se encontraron %s grupos fuera del árbol configurado '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr "Mostrar grupos de Windows"
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
-msgstr "Mover grupos dentro del árbol configurado"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
+msgstr "Mostrar grupos de Terminales"
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Se encontraron %s Division(es) que no serán visibles en FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr "Mostrar grupos de impresión"
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
-msgstr "Migración de Divisiones."
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
+msgstr "Mostrar grupos de teléfono"
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
-msgstr ""
+msgid "Unknown type : %s"
+msgstr "Tipo desconocido: %s"
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
-msgstr ""
+msgid "Non existing dn: %s"
+msgstr "¡dn: %s Inexsitente!"
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Idioma de instalación"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Objeto grupo"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Este paso le permitirá elegir su lenguaje preferido."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr "Datos del 'objeto grupo'"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
-msgstr "En este punto usted puede elegir el idioma por defecto del   sitio. Si elige 'automático'  se utilizará el lenguaje del navegador. Ésta opción puede ser cambiada por el usuario."
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Grupo"
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Bienvenido al asistente de configuración de FusionDirectory."
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr "Una descripción corta de este grupo."
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Mensaje de bienvenida"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Objetos miembro"
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
-msgstr "Configuración de la instalación de PHP (<a href=\"?info\" target=\"_blank\">Mostrar información</a>)"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr "Objetos miembro de este grupo"
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Revisión de la instalación"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+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."
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Revisión básica de Extensiones PHP y compatibilidad"
+#: plugins/admin/groups/class_ogroup.inc:321
+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."
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Revisando la versión PHP"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Lista de Grupos"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP debe tener una versión %s o superior."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr "Información de Grupo POSIX"
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Por favor actualice a una versión soportada."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr "Grupo POSIX"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory requiere este módulo para comunicarse con su servidor LDAP."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr "Grupo de Usuarios POSIX"
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory requiere este módulo para una inferfaz internacionalizada."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Forzar GID"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory requiere este módulo para comunicarse con diferentes tipos de servidores y protocolos."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr "Forzar GID para este grupo"
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory necesita éste módulo para la integración con Samba"
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr "Valor GID para este grupo"
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory requiere el módulo 'mhash' o bien 'sha1' para usar encripción por SSHA."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Miembros del Grupo"
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory requiere este módulo para comunicarse con un servidor IMAP."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory requiere este módulo para manejar strings unicoide."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory requiere esta extensión para manejar imágenes."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "módulo de compresión"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr "Gestionar ACLs"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory requiere esta extensión para manejar snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "register_globals  es un mecanismo PHP para registrar todas las variables globales y que puedan accederse mediante scripts sin cambiar el foco. Esto puede ser un riesgo de seguridad."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Buscar por 'register_globals' en su archivo php.ini y cámbielo a 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "Gestión de ACL"
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP utiliza este valor para que el colector de basura borre las sesiones obsoletas."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Configurando este valor a 'un día' prevendrá perder sesiones y cookies antes de que realmente expiren."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr "Panel de gestión de roles ACL"
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Buscar por  'session.gc_maxlifetime' en su archivo php.ini y configurarlo a 86400 o superior."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Modo"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Apagado"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr "¿Se aplicará en todo el subárbol o solo en la base?"
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "Para utilizar FusionDirectory sin problemas la opción session.auto_start  en su archivo php.ini debe estar configurada en 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr "Subárbol"
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Buscar  'session.auto_start'  en su archivo php.ini y configurarlo en 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr "Base únicamente"
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
-msgstr "FusionDirectory requiere al menos 128MB de memoria. Si usted utiliza menos que esto ¡puede causar errores que no son reproducibles! aumente la memoria para instalaciones grandes."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr "Rol a aplicar"
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
-msgstr "Buscar 'memory_limit' en su archivo php.ini y configurarlo con '128MB' o superior."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr "Para todos los usuarios"
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Esta opción afecta el manejo de la salida PHP. Deshabilitar esta opción con 'off' mejorará el rendimiento."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr "Aplicar este ACL a todos los usuarios de LDAP"
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Busca 'omplicit_flush' en su archivo php.ini y lo establece como 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Miembros"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "El tiempo de ejecución debería ser al menos de 30 segundos."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr "Usuarios o grupos a los cuales asignar este rol"
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Busca 'max_execution_time' en su archivo php.ini y lo establece como '30' o superior."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr "Gestionar ACLs"
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Incrementa la seguridad del servidor estableciendo 'expose_php' como 'Off'. PHP no enviará información de su  servidor en este caso."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr "Gestionar permisos ACL"
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Busca 'expose_php' en su archivo php.ini y lo establece como 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr "Permisos"
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Incrementa el rendimiento del servidor estableciendo 'magic_quotes_gpc' como 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr "Gestión de ACL para esta base"
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Busca  'zend.ze1_compatibility_mode' en su archivo php.ini y lo establece como 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr "Permisos en el objeto o subárbol %s"
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Error en la configuración"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "No hay configuraciones ACL para esta categoría"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Completado"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL para ésos objetos: %s"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Siguiente"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Editar categioría ACL"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "El equipo de FusionDirectory"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Restablecer categoría ACL"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr "<strong>%1</strong>referencia nuestro<strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Lista de categorías ACL disponibles"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr "<strong>%1</strong> referencia nuestro campo <strong>%3</strong> en el tab <strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Todos los objetos en el subárbol actual."
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Este objeto no tiene relación con otros objetos"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtro"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "leer"
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Mostrar plantillas"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "escribir"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Mostrar usuarios funcionales"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Mostrar/Ocultar configuraciones avanzadas"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "Mostrar usuarios POSIX"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Crear objetos"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Mostrar usuarios de correo"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Mover objetos"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Mostrar usuarios de Samba"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Borrar objetos"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Otorgar permisos al dueño"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
-msgstr "Aquí se incluyen todos los permisos ACL de este nodo(s). Si desea la lista de esas asignaciones, por favor presione cancelar y abra los objetos."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Completar objeto"
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Presione 'Borrar' para continuar o 'Cancelar' para abortar."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
+msgstr "Administración de Roles \"ACL\""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] "Existe una cuenta expirada"
-msgstr[1] "Existen %1 cuentas expiradas"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr "No hay una cuenta expirada"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Contiene configuraciones para ésos objetos: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
-msgstr "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Roles de control de acceso."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "Rol ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
+msgstr "Un nombre para este rol"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
+msgstr "Una descripción corta para este rol"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
-msgstr "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
+msgstr "ACLs"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
-msgstr "administrador"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
+msgstr "ACLs que son parte de este grupo"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr "correo"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "FusionDirectory no se ejecutará sin arreglar esto."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] "Existe una cuenta por expirar en %1 días."
-msgstr[1] "Existen %2 cuentas por exipirar en los siguientes %1 días"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory intentará ejecutarse sin arreglar esto."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr "No hay cuentas por expirar por los próximos %1 días"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Crear una nueva cuenta de administrador para FusionDirectory"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr "Cuentas por expirar"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "En este paso agregará automáticamente un nuevo super administrador a su árbol LDAP."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] "Existe 1 grupo:"
-msgstr[1] "Existen %1 grupos:"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "ID de usuario"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] "Uno de ellos es un %1 grupo"
-msgstr[1] "%2 son %1 grupos"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Contraseña (de nuevo)"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr "No existe el grupo %1"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Parece que es la primera vez que usted inicia FusionDirectory  - aún no se ha encontrado una configuración. Éste fácil asistente intentará ayudarle mientras realiza la configuración inicial."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] "Existe 1 usuario:"
-msgstr[1] "Existen %1 usuarios:"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "¿Qué hará el asistente por usted?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] "Uno de ellos tiene una %1 cuenta"
-msgstr[1] "%2 de ellos tienen una %1 cuenta"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Crear una configuración básica del sitio."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr "Ninguno de ellos tiene una %1 cuenta"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Se buscarán problemas dentro de su configuración de LDAP y PHP."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] "Uno de ellos está bloqueado"
-msgstr[1] "%1 de ellos está bloqueado"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Le permite elegir entre diversas opciones básicas o avanzadas."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr "Ninguno de ellos está bloqueado"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Migración asistida de los árbol LDAP existentes"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Usted ha cambiado exitosamente su contraseña. Recuerde cambiar todos los programas configurados para usarla también."
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "¿Qué NO hará el asistente por usted?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Configuraciones de usuario"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Buscar cualquier posible error en la configuración."
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Borrar contraseña"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migrar todas las configuraciones posibles de LDAP - ¡ Por favor cree una copia de seguridad!"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Establecer nueva contraseña"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr "Para continuar:"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Fotografía personal"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr "Por motivos de seguridad usted necesita autenticarse para esta instalación creando el archivo '%1' con el ID de la sesión actual en el servidor local. Esto se puede hacer ejecutando el siguiente comando:"
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Avatar"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Cuando haya terminado haga clic en 'Siguiente'."
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Borrar Avatar"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "Agregar  'object classes' requeridos en la base de LDAP"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "No tienes permisos para cambiar tu contraseña en este momento"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Actual"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "¡Su metodo de contraseña hash no será cambiado!"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Luego de la migración"
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Conflicto de bloqueo detectado"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Cerrar"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
-msgstr ""
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
+msgstr "Este cuadro de mensaje le permite mover un par de entradas al árbol LDAP configurado. Hacer esto podría arreglar su servicio LDAP."
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
-msgstr ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
+msgstr "¡Cuidado con ésta opción! Pueden haber referencias que apuntan a ésas entradas. La 'configuración' de FusionDirectory no puede migrar ésas referencias, así que usted podría querer cancelar la migración en éste caso."
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Solo lectura"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr "Mover las entradas seleccionadas a éste árbol."
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
-msgstr "Crear un nuevo objeto utilizando plantillas"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
+msgstr "Las entradas que se listan actualmente no son visibles en la interfaz de FusionDirectory. Si desea cambiar ésto para un par de entradas únicamente, solo debe seleccionarlas y usar el botón \"Migrar\"."
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Si usted desea saber qué se hará cuando se migren las entradas seleccionadas, utilice el botón de \"Mostrar Cambios\" para ver el LDIF."
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Continuar"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Mostrar cambios"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Mientras revisamos LDAP vamos a buscar algunos inconvenientes comunes que pueden ocurrir cuando se migra a una administración de FusionDirectory con LDAP.  Para mejorar su experiencia con los servicios, usted podría solucionar los siguientes problemas."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Por favor elija la forma de interactuar con esta sesión"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Verificar de nuevo"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "ignore este error y muestre todas las entradas que regresa el servidor LDAP"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Crear su archivo de configuración"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "ignore este error y muestre todas las entradas que cumplen con el tamaño límite definido y en cambio permitame utilizar filtros "
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr "Ejecute %1 para corregir los permisos en fusiondirectory.conf"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Asignar"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Descargar configuración"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Estado:"
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtro"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4934,17 +4843,6 @@ msgid ""
 "contact your administrator"
 msgstr "La recuperación de contraseña no está disponible. Si usted perdió su contraseña por favor contacte a su administrador."
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Si está seguro presione 'Eliminar' para continuar o 'Cancelar' para abortar."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Pantalla de Acceso"
@@ -4972,26 +4870,141 @@ msgstr "Acceder"
 msgid "Click here to log in"
 msgstr "Clic aquí para ingresar"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Por favor elija la forma de interactuar con esta sesión"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "ignore este error y muestre todas las entradas que regresa el servidor LDAP"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "ignore este error y muestre todas las entradas que cumplen con el tamaño límite definido y en cambio permitame utilizar filtros "
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Asignar"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr "¡Advertencia!: Usted está a punto de borrar los siguientes objetos"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Por favor revise dos veces y asegúrese que desea hacer esto ya que no hay forma de que FusionDirectory recupere sus datos."
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Si está seguro presione 'Eliminar' para continuar o 'Cancelar' para abortar."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Inicio"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Salir"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Accedió como:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "¡La sesión va a expirar en %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Continuar"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Conflicto de bloqueo detectado"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Solo lectura"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Asistente de copiado y pegado"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr "Algunos valores necesitan ser únicos en todo el directorio, algunas combinaciones no serán posibles. FusionDirectory muestra los atributos pertinentes. Por favor mantenga bajos los valores para cumplir con las políticas."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "¡Recuerde que algunas de las propiedades como los 'snapshots' realizados no serán copiadas!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "O si usted copia o corta na entrada dentro de FusionDirectory y borra el objeto original, usted podría tener errores en el futuro cuando pegue este objeto nuevamente."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Operación completa"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr "Crear un nuevo objeto utilizando plantillas"
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Información"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "ACL asignad a la entrada actual"
@@ -5036,211 +5049,197 @@ msgstr "ACL para este objeto"
 msgid "Available roles"
 msgstr "Roles disponibles"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr "¡Advertencia!: Usted está a punto de borrar los siguientes objetos"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Asistente de copiado y pegado"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr "Algunos valores necesitan ser únicos en todo el directorio, algunas combinaciones no serán posibles. FusionDirectory muestra los atributos pertinentes. Por favor mantenga bajos los valores para cumplir con las políticas."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "El equipo de FusionDirectory"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "¡Recuerde que algunas de las propiedades como los 'snapshots' realizados no serán copiadas!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr "<strong>%1</strong>referencia nuestro<strong>%3</strong>"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "O si usted copia o corta na entrada dentro de FusionDirectory y borra el objeto original, usted podría tener errores en el futuro cuando pegue este objeto nuevamente."
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Operación completa"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Información"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr "<strong>%1</strong> referencia nuestro campo <strong>%3</strong> en el tab <strong>%2</strong>"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Inicio"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Este objeto no tiene relación con otros objetos"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Salir"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Configuraciones de usuario"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Accedió como:"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Borrar contraseña"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "¡La sesión va a expirar en %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Establecer nueva contraseña"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "Agregar  'object classes' requeridos en la base de LDAP"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Fotografía personal"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Actual"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Avatar"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Luego de la migración"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Borrar Avatar"
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Cerrar"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "No tienes permisos para cambiar tu contraseña en este momento"
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Crear su archivo de configuración"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "¡Su metodo de contraseña hash no será cambiado!"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr "Ejecute %1 para corregir los permisos en fusiondirectory.conf"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Usted ha cambiado exitosamente su contraseña. Recuerde cambiar todos los programas configurados para usarla también."
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Descargar configuración"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] "Existe 1 grupo:"
+msgstr[1] "Existen %1 grupos:"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Estado:"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] "Uno de ellos es un %1 grupo"
+msgstr[1] "%2 son %1 grupos"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Crear una nueva cuenta de administrador para FusionDirectory"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr "No existe el grupo %1"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "En este paso agregará automáticamente un nuevo super administrador a su árbol LDAP."
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] "Existe 1 usuario:"
+msgstr[1] "Existen %1 usuarios:"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "ID de usuario"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] "Uno de ellos tiene una %1 cuenta"
+msgstr[1] "%2 de ellos tienen una %1 cuenta"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Contraseña (de nuevo)"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr "Ninguno de ellos tiene una %1 cuenta"
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Parece que es la primera vez que usted inicia FusionDirectory  - aún no se ha encontrado una configuración. Éste fácil asistente intentará ayudarle mientras realiza la configuración inicial."
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] "Uno de ellos está bloqueado"
+msgstr[1] "%1 de ellos está bloqueado"
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "¿Qué hará el asistente por usted?"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr "Ninguno de ellos está bloqueado"
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Crear una configuración básica del sitio."
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] "Existe una cuenta expirada"
+msgstr[1] "Existen %1 cuentas expiradas"
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Se buscarán problemas dentro de su configuración de LDAP y PHP."
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr "No hay una cuenta expirada"
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Le permite elegir entre diversas opciones básicas o avanzadas."
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
+msgstr "Manager concerned"
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Migración asistida de los árbol LDAP existentes"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "¿Qué NO hará el asistente por usted?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr "cn"
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Buscar cualquier posible error en la configuración."
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "telephoneNumber"
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migrar todas las configuraciones posibles de LDAP - ¡ Por favor cree una copia de seguridad!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr "shadowExpire"
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
-msgstr "Para continuar:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
+msgstr "administrador"
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr "Por motivos de seguridad usted necesita autenticarse para esta instalación creando el archivo '%1' con el ID de la sesión actual en el servidor local. Esto se puede hacer ejecutando el siguiente comando:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
+msgstr "correo"
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Cuando haya terminado haga clic en 'Siguiente'."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] "Existe una cuenta por expirar en %1 días."
+msgstr[1] "Existen %2 cuentas por exipirar en los siguientes %1 días"
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "FusionDirectory no se ejecutará sin arreglar esto."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
+msgstr "No hay cuentas por expirar por los próximos %1 días"
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory intentará ejecutarse sin arreglar esto."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
+msgstr "Cuentas por expirar"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
-msgstr "Este cuadro de mensaje le permite mover un par de entradas al árbol LDAP configurado. Hacer esto podría arreglar su servicio LDAP."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Mostrar plantillas"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
-msgstr "¡Cuidado con ésta opción! Pueden haber referencias que apuntan a ésas entradas. La 'configuración' de FusionDirectory no puede migrar ésas referencias, así que usted podría querer cancelar la migración en éste caso."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Mostrar usuarios funcionales"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
-msgstr "Mover las entradas seleccionadas a éste árbol."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "Mostrar usuarios POSIX"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
-msgstr "Las entradas que se listan actualmente no son visibles en la interfaz de FusionDirectory. Si desea cambiar ésto para un par de entradas únicamente, solo debe seleccionarlas y usar el botón \"Migrar\"."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Mostrar usuarios de correo"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Si usted desea saber qué se hará cuando se migren las entradas seleccionadas, utilice el botón de \"Mostrar Cambios\" para ver el LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Mostrar usuarios de Samba"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Mostrar cambios"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Mientras revisamos LDAP vamos a buscar algunos inconvenientes comunes que pueden ocurrir cuando se migra a una administración de FusionDirectory con LDAP.  Para mejorar su experiencia con los servicios, usted podría solucionar los siguientes problemas."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr "Aquí se incluyen todos los permisos ACL de este nodo(s). Si desea la lista de esas asignaciones, por favor presione cancelar y abra los objetos."
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Verificar de nuevo"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Presione 'Borrar' para continuar o 'Cancelar' para abortar."
diff --git a/locale/es_VE/fusiondirectory.po b/locale/es_VE/fusiondirectory.po
index deca508627be926c936ff5b2b87e06664b60326e..b0abf9116fa78cdc7f5a65a72cd80779fa02a902 100644
--- a/locale/es_VE/fusiondirectory.po
+++ b/locale/es_VE/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n"
@@ -17,4849 +17,4758 @@ msgstr ""
 "Language: es_VE\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "¡Bienvenido %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Referencias"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Rol"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nombre"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Descripción"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Número de teléfono"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Número de Fax"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Grupo"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Propiedades"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Forzar GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Miembros del grupo"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Idioma preferido"
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Sistema de seguridad"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Selección de idiomas"
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Modo seguro"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Este paso le permite seleccionar su idioma preferido"
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "desactivado"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "Acceso sin restricciones"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automatico"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "Permitir el acceso a estos equipos"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "Comprobaciones de módulos y extensiones PHP"
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Aviso"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Comprobación de la instalación"
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Tiempo de espera agotado esperando un bloqueo. ¡Ignorando bloqueo!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Comprobación básica de la versión de PHP y las extensiones."
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Comprobando la versión de PHP"
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Grupo de objetos"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr ""
+msgid "PHP must be of version %s or above."
+msgstr "PHP debe ser versión '%s' o superior."
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Objetos miembros"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Por favor actualize a la versión soportada."
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory requiere este modulo para poder hablar con su servidor LDAP."
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Lista de grupos"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Acciones"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Crear"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Editar"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Eliminar"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr ""
-
-#: 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:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Editar características posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Mostrar grupos primarios"
-
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory requiere este modulo para una interfaz internacionalizada."
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Mostrar grupos de correo"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory requiere este modulo para comunicarse con distintos tipos de servidores y protocolos."
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Mostrar grupos de samba"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory requiere este modulo para la integración con Samba"
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory requiere ya sea el modulo 'mhash' o 'sha1' para usar encripción SSHA"
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory requiere este modulo para poder hablar con un servidor IMAP."
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory requiere este modulo para manejar cadenas unicode."
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory requiere esta extensión para manejar imágenes."
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "modulo de compresión"
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Componentes del dominio"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory requiere esta extensión para manejar capturas."
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "registr_globals es un mecanismo de PHP para registrar todas las variables globales de tal manera que sean accesible desde scripts sin que cambien su ámbito. Esto puede ser un problema de seguridad."
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Departamento"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Busque 'register_globals' en su php.ini y modifíquelo por 'Off'."
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Departamentos"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP usa este valor en el recolector de basura para eliminar las sesiones antiguas."
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "departamento"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Ajustando este valor a un día impedirá la perdida de sesiones y cookies antes de que realmente se desconecte por tiempo."
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Busque 'sessio.gc_maxlifetime' en su php.ini y modifíquelo a 86400 o mayor."
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Off"
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "Para poder usar FusionDirectory sin problemas, la opción session.auto_start debe estar configurada en 'Off' en su php.ini."
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Categoría"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Busque 'session.auto_start' en su php.ini y modifíquelo a 'Off'."
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Esta opción está relacionada con el manejo de salida de PHP. Desactive esta opción poniéndola en off para mejorar el rendimiento."
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Gestor"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Busque 'implicit_flush' en su php.ini y modifíquelo a 'Off'."
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "El tiempo de ejecución debe ser de al menos 30 segundos."
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Localización"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Busque 'max_execution_time' en su php.ini y modifíquelo a '30' o mayor."
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Provincia"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Aumente la seguridad del servidor modificando el parámetro 'expose_php' a 'off'. PHP no debería enviar ningún tipo de información sobre el servidor que esta ejecutando la aplicación."
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "País"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Busque 'expose_php' en su php.ini y modifíquelo a 'Off'."
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Dirección"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Aumente el rendimiento de su servidor modificando 'magic_quotes_gpc' a 'off'"
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Busque 'zend.ze1_compatibility_mode' en su php.ini y modifíquelo a 'Off'."
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Teléfono"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Bienvenido"
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Número de teléfono"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Bienvenido al asistente de configuración de FusionDirectory"
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Mensaje de Bienvenida"
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Migrar"
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Inspección LDAP"
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Usuarios y grupos"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Analizar el arbol LDAP actual por compatibilidad con FusionDirectory"
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Localidad"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Dominio"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Analizando objetos en la entrada raíz"
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Comprobando permisos en la base de datos LDAP"
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Lista de Departamentos"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Comprobando usuarios invisibles"
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organización"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Comprobando súper administrador"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Lista de usuarios"
-
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Apellido"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Comprobando cuentas fuera del árbol de usuarios"
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Nombre de pila"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Comprobando grupos fuera del árbol de grupos"
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Inicio"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Comprobando departamentos invisibles"
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Usuario"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Comprobando números UID duplicados"
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Plantilla"
-
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Bloquear usuarios"
-
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Desbloquear usuarios"
-
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Aplicar plantilla"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "La consulta LDAP ha fallado"
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Nuevo usuario desde plantilla"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Editar usuario"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Error"
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "Objeto '%s' de FusionDirectory faltante!"
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Eliminar usuario"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Por favor compruebe su instalación"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Usuarios"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "No se puede un tipo de objeto estructural en su entrada raíz. Por favor intente añadir la clase de objeto '%s' manualmente."
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Gestión de usuarios"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Error LDAP"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Permisos"
-
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Bloqueo de cuenta"
-
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:511
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Desbloquear cuenta"
-
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Bloquear cuenta"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Aviso"
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "Se encontraron %s usuarios que no serán visibles en FusionDirectory o están incompletos."
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "No hay ACL configuradas en esta categoría"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Error de migración"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACLs que tienen estos objetos: %s"
+msgid "Cannot migrate entry \"%s\":"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Editar la categoría ACL"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:860
 #, php-format
-msgid "Delete"
-msgstr "Eliminar"
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Eliminar la categoría ACL"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Lista de categorías ACL disponibles"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Todos los objetos en el subárbol actual"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Crear"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Usuarios"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "leer"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Grupos"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "escribir"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "No hay una cuenta de administrador FusionDirectory dentro de su LDAP."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objeto"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Mostrar/ocultar caracteristicas avanzadas"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Error"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Crear objetos"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Mover objetos"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Eliminar Objetos"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Garantizar permiso al propietario"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Objeto completo"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Roles ACL"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Mover usuarios al árbol de usuarios configurado"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Tiene configuraciones de los siguientes objetos: %s"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "a"
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Roles de control de acceso"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Las siguientes referencias se actualizaran"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Encontrados '%s' grupos fuera del árbol configurado '%s'."
+
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Se encontraron %s departamentos que no serán visibles en FusionDirectory"
+
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Nombre de la localización"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "URI de conexión"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "Conexión TLS"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "Asignación de ACL"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Autenticación"
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "DN del administrador"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Modo"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Contraseña de administrador"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Estado"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Estado actual"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Configuración LDAP"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Conectividad LDAP"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Miembros"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Este dialogo realiza la configuración básica de la conectividad LDAP para FusionDirectory"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "¡La conexión anónima al servidor '%s' ha fallado!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "¡La conexión como usuario '%s' ha fallado!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Reintento"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "La conexión anónima al servidor '%s' ha tenido exito."
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Refresco"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "¡Por Favor especifique un usuario y contraseña!"
+
+#: setup/class_setupStep_Ldap.inc:178
 #, php-format
-msgid "Assignments on object or subtree %s"
-msgstr ""
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "¡La conexión como usuario '%s' al servidor '%s' ha tenido exito!"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Terminar"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Terminar - Escribir el archivo de configuración"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Escribir archivo de configuración"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "El fichero de configuración es universalmente legible. ¡Por favor modifique los permisos del archivo!"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "En estos momentos la configuración no es accesible o no existe."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Después de descargar y colocar el archivo en %s, por favor asegúrese de que el usuario bajo el cual está corriendo el servidor web es capaz de leer %s, mientras que otros usuarios no deben poder."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Error de configuración"
+
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Completado"
+
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Siguiente"
+
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "error interno"
+
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Entrada fallida: %s"
+
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Metodo de contraseña"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "¡Se ha indicado un objectType vacio o no válido!"
+
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "Sin configurar"
+
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Error del filtro"
+
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "¡El filtro está incompleto!"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr ""
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Permisos"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Contraseña"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Error de permisos"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr ""
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "No tiene permisos para crear una instantanea para %s."
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr ""
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "No tiene permisos para recuperar una instantanea para %s."
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr ""
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "No hay declaración de pestaña para '%s' en su archivo de configuración. ¡No se puede crear la instancia del plugin!"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Información personal"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Raíz"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Apellido"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Enviar"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr ""
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Arriba"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Nombre"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Abajo"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr ""
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Seleccione todos"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr ""
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "Creado por"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr ""
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Ir al departamento raíz"
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Subir un departamento"
+
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Número sala"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Inicio"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Número de habitación"
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Recargar lista"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr ""
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Acciones"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Móvil"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Copiar"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr ""
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Mover"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Buscapersonas"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Pegar"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr ""
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Mover esta entrada"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr ""
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Copiar esta entrada"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Página Web"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Recuperar instantánea"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr ""
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Exportar lista"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr ""
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Recuperar instantanea"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr ""
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Crear instantánea"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Idioma preferido"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "¡Crear una nueva instantánea de este objeto!"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr ""
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Error fatal"
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr ""
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "en"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Nombre a Mostrar"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "En linea"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr ""
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Error XML"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "No se puede cambiar la clave, usuario '%s' desconocido"
+
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Dirección Postal personal"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Error en la configuración"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Teléfono privado"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Página"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Número de teléfono personal"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "No se puede exportar a PDF: no se ha instalado la librería FPDF."
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Información corporativa"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Título"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr ""
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "¡El canal requerido no existe!. Por favor  contacte con su Administrador."
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Cancelar todo"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Número departamento"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "No puedo pegar"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Número del departamento"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Inicio"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Número empleado"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Plantilla"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Número de empleado"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Categoría profesional"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Nombre de la plantilla"
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:123
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr ""
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "Error fatal: no se han definido un emplazamiento para las clases - por favor ejecute '%s' para solucionar esto"
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr ""
+#: include/functions.inc:142
+#, php-format
+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'"
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:512
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr ""
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "FATAL: Ha habido un error conectando a LDAP. El servidor comunicó '%s'."
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Error de Autenticación"
+
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Necesita introducir su contraseña actual para continuar."
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Ha ocurrido un problema al añadir un bloqueo. ¡Contacte con los desarrolladores!"
 
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:678
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr ""
+"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!"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nueva contraseña"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "El servidor LDAP devolvio: %s"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "La contraseña actual y la introducida como nueva son demasiado parecidas."
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "La nueva contraseña es demasiado corta."
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "¡El límite máximo de %d entradas se ha sobrepasado!"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "La clave contiene caracteres unicode posiblemente problemáticos!"
+#: include/functions.inc:1132
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr ""
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Configurar"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Editar parametros de usuarios POSIX"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "incompleto"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Directorio de usuario"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Continuar de cualquier manera"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr ""
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Editar de cualquier manera"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr "Has decidido editar las siguientes entradas LDAP %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Entradas por página"
+
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Aplicar filtro"
+
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Grupo primario"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Estado"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "¡No se puede escribir en el archivo de revisión!"
+
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "No se puede leer el archivo de revisión!"
+
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Pertenencia a grupo"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Aviso LDAP"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Cuenta"
+#: include/functions.inc:2559
+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!"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "El usuario debe introducir la contraseña en el primer inicio de sesión"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Clase(s) disponibles"
+
+#: include/functions.inc:2641
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2645
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr ""
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "No se puede asignar un identificador (ID) libre:"
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr ""
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "¡método de asignación de id desconocido!"
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "Sin configurar"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "¡%sPoolMin >= %sPoolMax!"
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automático"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "¡sambaUnixIdPool no es único!"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "expiró"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "¡No hay ID disponibles!"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "Periodo de gracia activado"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "¡Excedido el número de intentos máximo!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "activo"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "¡No se puede asignar un identificador (ID) libre!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "la contraseña expiró"
+#: include/functions.inc:3321
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "no puede cambiar la contraseña"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Todos los objetos en esta categoría"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Por favor solucione el problema y actualize la página."
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_timezone.inc:52
 #, php-format
-msgid "Group of user %s"
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr ""
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Error XML en fusiondirectory.conf: %s en la línea %d"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr ""
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "No se puede conectar a LDAP: Por favor consulte con el administrador de sistemas."
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr ""
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Grupos de objetos"
+#: include/class_config.inc:899
+#, 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'."
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr ""
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Todas las categorías"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr ""
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Mi cuenta"
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Seleccione para mostrar objetos de tipo '%s'."
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr ""
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Seleccione para mostrar objetos conteniendo '%s'."
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr ""
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Seleccione para mostrar objetos que tengan '%s' activado"
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Configuración"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Seleccione para buscar dentro de los subárboles"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr ""
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Buscar en subárboles"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "¡El objeto será eliminado!"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Temas y apariencia"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "¡El objeto '%s' será eliminado!"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Idioma"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Este objeto será eliminado: %s"
 
-#: 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 ""
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "El objeto '%s' será eliminado: %s"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Tema"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Este objeto será eliminado"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr ""
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "El objeto '%s' será eliminado:"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Zona de uso horario"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Estos objetos serán eliminados: %s"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Los objetos '%s' serán eliminados: %s"
+
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "¡No tiene permisos para eliminar este objeto!"
+
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "No tiene permisos para eliminar este objeto:"
+
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "No tiene permisos para eliminar estos objetos:"
+
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "¡No tiene permisos para crear este objeto!"
+
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "No tiene permisos para crear este objeto:"
+
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "No tiene permisos para crear estos objetos:"
+
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "¡No tiene permisos para modificar este objeto!"
+
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr ""
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "¡No tiene permisos para ver este objeto!"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Parámetros de Contraseña"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "No tiene permisos para ver el objeto:"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr ""
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "No tiene permisos para ver estos objetos:"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr ""
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "¡No tiene permisos para mover este objeto!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr ""
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "No tiene permisos para mover el objeto:"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr ""
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "No tiene permisos para mover estos objetos:"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Longitud mínima de la contraseña"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Información de conexión"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr ""
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "¡No se puede conectar a la base de datos %s!"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr ""
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "¡No se puede seleccionar la base de datos %s!"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr ""
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "¡No se ha definido el servidor %s!"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Usar caducidad de cuenta"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "¡No se ha podido ejecutar la consulta %s!"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr ""
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "¡El campo '%s' tiene una palabra reservada!"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr ""
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "¡El comando especificado como método %s para la extensión '%s' no existe!"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr ""
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "¡El comando '%s' no es válido!"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr ""
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "¡'%s' comando para la extensión %s no es válido!"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr ""
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "¡'%s' comando (%s) no es válido!"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Mostrar resumen en listados"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "¡'%s' comando (%s) para la extensión %s no es válido!"
 
-#: plugins/config/class_configInLdap.inc:162
-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 ""
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "¡No se puede ejecutar el comando '%s'!"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr ""
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "¡No se puede ejecutar el comando '%s' para la extensión %s!"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr ""
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "¡No se puede ejecutar el comando '%s' (%s)!"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr ""
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "¡No se puede ejecutar el comando '%s' (%s) para la extensión %s!"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr ""
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "¡El valor especificado como '%s' es demasiado grande!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr ""
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "¡'%s' debe ser menor que %s!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr ""
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "¡El valor especificado como '%s' es demasiado pequeño!"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Inicio y sesión"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "¡'%s' debe ser %d o superior!"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Atributo de inicio de sesión"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "¡'%s' depende de '%s' - Por favor introduzca ambos valores!"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "¡Ya existe una entrada con el atributo '%s' en el sistema!"
+
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Forzar conexiones seguras"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "¡El campo obligatorio '%s' está vacio!"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Avisar si la sesión no esta codificada"
-
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Duración de sesiones."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "'%s' no está permitido:"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "¡'%s' no están permitidos!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "¡Extensión PHP %s no encontrada!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Aplicar"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Guardar"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Añadir"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Añadir %s"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Eliminar"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr ""
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Eliminar %s"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Activar instantaneas"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Editar..."
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Editar %s..."
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Base de instantaneas"
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Atrás"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr ""
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "¡Esta cuenta tiene extensiones %s no validas!"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr ""
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Esta cuenta tiene características %s activadas. Puede desactivarla pulsando aquí"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr ""
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Esta cuenta tiene las características %s activadas. ¡Para desactivarlas, necesita eliminar las caracteristicas %s primero!"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Esta cuenta tiene características %s desactivadas. Puede activarla pulsando aquí"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr ""
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Esta cuenta tiene las características %s desactivadas. ¡Para activarlas, necesita añadir las caracteristicas %s primero!"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Añadir caracteristicas %s"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr ""
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Eliminar las caracteristicas %s"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Pulse en el botón - Editar - para cambiar la información en esta ventana"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Enero"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Febrero"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Marzo"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Abril"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Nombre de equipo"
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Mayo"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Junio"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Puerto"
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Julio"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Agosto"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Septiembre"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Octubre"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Almacén de grupos y usuarios"
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Noviembre"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "Atributo 'dn' de los usuarios"
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Diciembre"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Domingo"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Lunes"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Martes"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Miércoles"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Jueves"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Viernes"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Sábado"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr ""
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "Operación de base de datos fallida!"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "lectura"
+
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "adición"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "modificación"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "eliminación"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "busqueda"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "autenticación"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr ""
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "¡LDAP %s ha fallado!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr ""
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "¡La consulta LDAP ha fallado!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objeto"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr ""
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "¡Ha fallado el subir archivo!"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr ""
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Ha fallado el subir archivo: %s"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr ""
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "¡Ha fallado la comunciación con el servicio de infraestructura!"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr ""
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Ha fallado la comunciación con el servicio de infraestructura: %s"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr ""
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "'%s' esta todavía en uso por el objeto: %s"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr ""
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "'%s' esta todavía en uso."
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr ""
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "'%s' esta todavía en uso por los objetos: %s"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr ""
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "¡El archivo %s no existe!"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "¡No se puede abrir el archivo '%s'!"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr ""
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "¡No se puede grabar el archivo '%s'!"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "El valor para '%s' no esta configurado o no es válido.¡Por favor compruebe el archivo de configuración!"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr ""
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "¡No se puede eliminar el fichero '%s'!"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "¡No se puede crear la carpeta '%s'!"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr ""
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "¡No se puede eliminar la carpeta '%s'!"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Comprobando soporte %s"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
+msgstr "Instala y activa el módulo de PHP %s."
 
-#: plugins/config/class_configInLdap.inc:377
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
+msgstr "Instale y active el module Pear %s. "
+
+#: include/class_msgPool.inc:876
+#, php-format
 msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "No se puede inicializar la clase '%s'! Posiblemente hay un complemento faltante en su instalación de FusionDirectory?"
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Depurando"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr "¡La base introducida no es válida, se ha dejado el valor anterior!"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Tiempo de consulta máxima de LDAP"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Marca de tiempo"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Registrar estadísticas LDAP"
-
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Nivel de depuración"
-
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Varios"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr "Recuperar"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "Modo"
-
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr ""
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Archivo"
+
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Linea"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr ""
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "Error PHP"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Métodos"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "clase"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr ""
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "función"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr ""
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "estático"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr ""
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "método"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr ""
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Traza"
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr ""
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Tipo"
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr ""
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argumentos"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr ""
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "¡La generación de esta página ha provocado errores en el interprete PHP!"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr ""
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Enviar informe de errores al equipo de FusionDirectory"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automatico"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Enviar informe de errores"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Recuperación de clave"
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Modificar información"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr ""
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Aviso e rendimiento"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Opciones de recuperación de clave"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr "El rendimiento LDAP es bajo: ¡la última consulta tardó sobre %.2fs!"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr ""
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "mientras operaba en '%s' usando el servidor LDAP '%s'"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr ""
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "mientras operaba en el servidor LDAP '%s'"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr ""
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Ha habido un error importando dn: '%s', ¡Por favor compruebe su LDIF desde la línea %s en adelante!"
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Asunto"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Por favor seleccione las entradas que desee"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nombre"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Enlace de recuperación de clave"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Descripción"
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Saludos,\nAquí están los datos solicitados:\n\n- Usuario: %s\n- Enlace: %s\n\nEl enlace solo es valido por 10 minutos."
-
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Grupo de usuarios"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Recuperación de clave realizada con exito"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Ninguno"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Desconocido"
+
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Editar"
+
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Eliminar"
+
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "No hay definiciones de extensión para iniciar '%s', por favor compruebe su archivo de configuración."
+
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-msgid "Body (%s is login)"
-msgstr ""
+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"
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_simpleTabs.inc:401
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Saludos,\n\nSu clave ha sido cambiada.\nSu nombre de usuario aun es %s."
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "segundos"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "minutos"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "horas"
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "días"
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Arriba"
-
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Abajo"
-
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Seleccione todos"
-
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Error"
-
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "Creado por"
-
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Ir al departamento raíz"
-
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Raíz"
-
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Subir un departamento"
-
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Inicio"
-
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Recargar lista"
-
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Enviar"
-
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Copiar"
-
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Mover"
-
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Pegar"
-
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Mover esta entrada"
-
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Copiar esta entrada"
-
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Recuperar instantánea"
-
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Exportar lista"
-
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Recuperar instantanea"
-
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Crear instantánea"
-
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "¡Crear una nueva instantánea de este objeto!"
-
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Error del filtro"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "¡El filtro está incompleto!"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Error de permisos"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "No tiene permisos para crear una instantanea para %s."
+msgid "There is already an entry with the same dn : %s"
+msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "No tiene permisos para recuperar una instantanea para %s."
+msgid "The entry %s is not existing"
+msgstr ""
 
-#: include/class_management.inc:679
-#, php-format
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "No hay declaración de pestaña para '%s' en su archivo de configuración. ¡No se puede crear la instancia del plugin!"
+"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 ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-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:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Error en la configuración"
+msgid "Unknown field \"%s\""
+msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Error LDAP"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "No se puede conectar a LDAP: Por favor consulte con el administrador de sistemas."
-
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, 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."
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+msgstr ""
 
-#: include/class_config.inc:898
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, 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'."
+msgid "Cannot read uploaded file: %s"
+msgstr "No puedo leer el archivo: %s"
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Todas las categorías"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "el archivo está vacío"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Mi cuenta"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "archivo no encontrado"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Aviso e rendimiento"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "archivo no accesible"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr "El rendimiento LDAP es bajo: ¡la última consulta tardó sobre %.2fs!"
+msgid "%s (%d bytes)"
+msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "error interno"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Enviar"
 
-#: include/class_ldap.inc:846
-#, php-format
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Descargar"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "mientras operaba en '%s' usando el servidor LDAP '%s'"
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "mientras operaba en el servidor LDAP '%s'"
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "A float smaller than %f"
+msgstr ""
+
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Ha habido un error importando dn: '%s', ¡Por favor compruebe su LDIF desde la línea %s en adelante!"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr ""
 
-#: include/class_msgPool.inc:43
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Seleccione para mostrar objetos de tipo '%s'."
+msgid "Tab \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Seleccione para mostrar objetos conteniendo '%s'."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Seleccione para mostrar objetos que tengan '%s' activado"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Gestión de las Listas de control de acceso"
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Seleccione para buscar dentro de los subárboles"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Roles ACL"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Buscar en subárboles"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "¡El objeto será eliminado!"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "¡Entrada desconocida '%s'!"
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "¡El objeto '%s' será eliminado!"
+msgid "All users"
+msgstr "Todos los usuarios"
 
-#: include/class_msgPool.inc:74
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
+
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Este objeto será eliminado: %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "¡No se puede acceder a el directorio de compilación '%s'!"
 
-#: include/class_msgPool.inc:76
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "El objeto '%s' será eliminado: %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Este objeto será eliminado"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
+msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:150
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "El objeto '%s' será eliminado:"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Error Smarty"
+
+#: html/index.php:173
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Estos objetos serán eliminados: %s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
+msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Su sesión de FusionDirectory ha expirado!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr ""
+
+#: html/index.php:214
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Los objetos '%s' serán eliminados: %s"
+msgid "Invalid plugin parameter \"%s\"!"
+msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "¡No tiene permisos para eliminar este objeto!"
+#: html/index.php:217
+msgid "No session found!"
+msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "No tiene permisos para eliminar este objeto:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "No tiene permisos para eliminar estos objetos:"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "¡No tiene permisos para crear este objeto!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "¡Por favor introduzca un nombre de usuario válido!"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "No tiene permisos para crear este objeto:"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "¡Por favor introduzca una contraseña!"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "No tiene permisos para crear estos objetos:"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Por favor compruebe la combinación nombre de usuario/contraseña"
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "¡No tiene permisos para modificar este objeto!"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Cuenta bloqueada. ¡Por favor contacte con su administrador de sistemas!"
 
-#: include/class_msgPool.inc:151
+#: html/index.php:454
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:475
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:485
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "¡No tiene permisos para ver este objeto!"
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "No tiene permisos para ver el objeto:"
-
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "No tiene permisos para ver estos objetos:"
-
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "¡No tiene permisos para mover este objeto!"
-
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "No tiene permisos para mover el objeto:"
-
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "No tiene permisos para mover estos objetos:"
-
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Información de conexión"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:225
+#: html/index.php:557
 #, php-format
-msgid "Cannot connect to %s database!"
-msgstr "¡No se puede conectar a la base de datos %s!"
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
+
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Su navegador tiene las cookies desactivadas. ¡Porfavor active las cookies y recargue esta página antes de iniciar sesión!"
 
-#: include/class_msgPool.inc:245
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "Cannot select %s database!"
-msgstr "¡No se puede seleccionar la base de datos %s!"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "La configuración de FusionDirectory %s/%s no se puede leer. Cancelado."
 
-#: include/class_msgPool.inc:255
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "No %s server defined!"
-msgstr "¡No se ha definido el servidor %s!"
+msgid "Did not find an account with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:275
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "Cannot query %s database!"
-msgstr "¡No se ha podido ejecutar la consulta %s!"
+msgid "Found multiple accounts with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "¡El campo '%s' tiene una palabra reservada!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Dirección de correo"
 
-#: include/class_msgPool.inc:297
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "¡El comando especificado como método %s para la extensión '%s' no existe!"
+msgid "There is no account using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:313
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "¡El comando '%s' no es válido!"
+msgid "There are several accounts using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:315
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "¡'%s' comando para la extensión %s no es válido!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "¡'%s' comando (%s) no es válido!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Contacte a su administrador, hubo un problema con el servidor de correo"
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "¡'%s' comando (%s) para la extensión %s no es válido!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr "Esta prenda es invalida"
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "¡No se puede ejecutar el comando '%s'!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "¡No se puede ejecutar el comando '%s' para la extensión %s!"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Configuración PHP"
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "¡No se puede ejecutar el comando '%s' (%s)!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Error Fatal: 'Register globals' está activado. No se permitirá ningun acceso hasta que esto sea solucionado por un administrador."
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "¡No se puede ejecutar el comando '%s' (%s) para la extensión %s!"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Cambio de contraseña"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "¡El valor especificado como '%s' es demasiado grande!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Su contraseña va a caducar próximamente, ¡Por favor cambie su contraseña!"
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "¡'%s' debe ser menor que %s!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "¡El valor especificado como '%s' es demasiado pequeño!"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "¡Funcionando sin memoria!"
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "¡'%s' debe ser %d o superior!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Desactivados chequeos de ACL de usuario"
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "¡'%s' depende de '%s' - Por favor introduzca ambos valores!"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Extensión"
 
-#: include/class_msgPool.inc:404
+#: html/main.php:290
 #, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "¡Ya existe una entrada con el atributo '%s' en el sistema!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr ""
 
-#: include/class_msgPool.inc:406
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Error de configuración"
+
+#: html/main.php:306
 #, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
-msgstr ""
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Error fatal: no todas las variables POST fueron transferidas por PHP - por favor informe a su administrador!"
 
-#: include/class_msgPool.inc:417
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "The required field '%s' is empty!"
-msgstr "¡El campo obligatorio '%s' está vacio!"
+msgid "Welcome %s!"
+msgstr "¡Bienvenido %s!"
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Referencias"
+
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Editar parametros de usuarios POSIX"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Directorio de usuario"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "'%s' no está permitido:"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "¡'%s' no están permitidos!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "¡Extensión PHP %s no encontrada!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Grupo primario"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Cancelar"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Aplicar"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Guardar"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Añadir"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Añadir %s"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Eliminar %s"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Editar..."
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Editar %s..."
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Pertenencia a grupo"
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Atrás"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Cuenta"
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "¡Esta cuenta tiene extensiones %s no validas!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "El usuario debe introducir la contraseña en el primer inicio de sesión"
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:160
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Esta cuenta tiene características %s activadas. Puede desactivarla pulsando aquí"
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:164
 msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Esta cuenta tiene las características %s activadas. ¡Para desactivarlas, necesita eliminar las caracteristicas %s primero!"
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Esta cuenta tiene características %s desactivadas. Puede activarla pulsando aquí"
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Esta cuenta tiene las características %s desactivadas. ¡Para activarlas, necesita añadir las caracteristicas %s primero!"
+"Date after which this user password will expire (leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Añadir caracteristicas %s"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "Eliminar las caracteristicas %s"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Pulse en el botón - Editar - para cambiar la información en esta ventana"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Enero"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Febrero"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Sistema de seguridad"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Marzo"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Modo seguro"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Abril"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Mayo"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "desactivado"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Junio"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "Acceso sin restricciones"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Julio"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "Permitir el acceso a estos equipos"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Agosto"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Septiembre"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automático"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Octubre"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "expiró"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Noviembre"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "Periodo de gracia activado"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Diciembre"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "activo"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Domingo"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "la contraseña expiró"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Lunes"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "no puede cambiar la contraseña"
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Martes"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Miércoles"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Jueves"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Tiempo de espera agotado esperando un bloqueo. ¡Ignorando bloqueo!"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Viernes"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Sábado"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "Operación de base de datos fallida!"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "lectura"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "adición"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "modificación"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Metodo de contraseña"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "eliminación"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "busqueda"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Contraseña"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "autenticación"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "¡LDAP %s ha fallado!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "¡La consulta LDAP ha fallado!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "¡Ha fallado el subir archivo!"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Usuario"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Ha fallado el subir archivo: %s"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "¡Ha fallado la comunciación con el servicio de infraestructura!"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Ha fallado la comunciación con el servicio de infraestructura: %s"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Información personal"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "'%s' esta todavía en uso por el objeto: %s"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Apellido"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "'%s' esta todavía en uso."
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "'%s' esta todavía en uso por los objetos: %s"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Nombre"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "¡El archivo %s no existe!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "¡No se puede abrir el archivo '%s'!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "¡No se puede grabar el archivo '%s'!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "El valor para '%s' no esta configurado o no es válido.¡Por favor compruebe el archivo de configuración!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "¡No se puede eliminar el fichero '%s'!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "¡No se puede crear la carpeta '%s'!"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Localización"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "¡No se puede eliminar la carpeta '%s'!"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Provincia"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Comprobando soporte %s"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Dirección"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Instala y activa el módulo de PHP %s."
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr "Instale y active el module Pear %s. "
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Número sala"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "No se puede inicializar la clase '%s'! Posiblemente hay un complemento faltante en su instalación de FusionDirectory?"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Número de habitación"
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr "¡La base introducida no es válida, se ha dejado el valor anterior!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Teléfono"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "Error fatal: no se han definido un emplazamiento para las clases - por favor ejecute '%s' para solucionar esto"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-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'"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Móvil"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Error fatal"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr ""
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Buscapersonas"
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Error de Autenticación"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Ha ocurrido un problema al añadir un bloqueo. ¡Contacte con los desarrolladores!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Página Web"
 
-#: include/functions.inc:678
-#, 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!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "El servidor LDAP devolvio: %s"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr ""
 
-#: include/functions.inc:859
-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."
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "¡El límite máximo de %d entradas se ha sobrepasado!"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr ""
 
-#: include/functions.inc:1132
-#, 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"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Nombre a Mostrar"
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Configurar"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "incompleto"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Continuar de cualquier manera"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Dirección Postal personal"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Editar de cualquier manera"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Teléfono privado"
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr "Has decidido editar las siguientes entradas LDAP %s"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Número de teléfono personal"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Entradas por página"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Información corporativa"
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Aplicar filtro"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Título"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/personal/generic/class_user.inc:415
+msgid ""
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organización"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Departamento"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Número departamento"
+
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Número del departamento"
+
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Número empleado"
+
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Número de empleado"
+
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Categoría profesional"
+
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Gestor"
+
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sTiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2123
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sEiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Necesita introducir su contraseña actual para continuar."
 
-#: include/functions.inc:2294
-#, php-format
+#: plugins/personal/generic/class_user.inc:653
 msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "¡No se puede escribir en el archivo de revisión!"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nueva contraseña"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "No se puede leer el archivo de revisión!"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "La contraseña actual y la introducida como nueva son demasiado parecidas."
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "La nueva contraseña es demasiado corta."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Aviso LDAP"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "La clave contiene caracteres unicode posiblemente problemáticos!"
 
-#: include/functions.inc:2586
-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!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Clase(s) disponibles"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Recuperación de clave"
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Opciones de recuperación de clave"
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "No se puede asignar un identificador (ID) libre:"
-
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "¡método de asignación de id desconocido!"
-
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "¡%sPoolMin >= %sPoolMax!"
-
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "¡sambaUnixIdPool no es único!"
-
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "¡No hay ID disponibles!"
-
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "¡Excedido el número de intentos máximo!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "¡No se puede asignar un identificador (ID) libre!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr ""
 
-#: include/functions.inc:3345
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "¡El canal requerido no existe!. Por favor  contacte con su Administrador."
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Nombre de la plantilla"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Todos los objetos en esta categoría"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Archivo"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Linea"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "Error PHP"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Asunto"
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "clase"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "función"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Enlace de recuperación de clave"
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "estático"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "método"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Traza"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Saludos,\nAquí están los datos solicitados:\n\n- Usuario: %s\n- Enlace: %s\n\nEl enlace solo es valido por 10 minutos."
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Tipo"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argumentos"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "¡La generación de esta página ha provocado errores en el interprete PHP!"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Recuperación de clave realizada con exito"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Enviar informe de errores al equipo de FusionDirectory"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Enviar informe de errores"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Modificar información"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Saludos,\n\nSu clave ha sido cambiada.\nSu nombre de usuario aun es %s."
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Por favor solucione el problema y actualize la página."
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Configuración"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Marca de tiempo"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Temas y apariencia"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Idioma"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: 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 ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Tema"
+
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Zona de uso horario"
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr "Recuperar"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Página"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Parámetros de Contraseña"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "No se puede exportar a PDF: no se ha instalado la librería FPDF."
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "en"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "En linea"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Error XML"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Longitud mínima de la contraseña"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Usar caducidad de cuenta"
+
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Cancelar todo"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
+msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "No puedo pegar"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Mostrar resumen en listados"
+
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Por favor seleccione las entradas que desee"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Inicio y sesión"
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Atributo de inicio de sesión"
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Forzar conexiones seguras"
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Avisar si la sesión no esta codificada"
+
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Grupo de usuarios"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Duración de sesiones."
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Ninguno"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Desconocido"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "segundos"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Activar instantaneas"
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "minutos"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "horas"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Base de instantaneas"
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "días"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "No puedo leer el archivo: %s"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "el archivo está vacío"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "archivo no encontrado"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Nombre de equipo"
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "archivo no accesible"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Puerto"
+
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Enviar"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Descargar"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Almacén de grupos y usuarios"
+
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "Atributo 'dn' de los usuarios"
+
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "No hay definiciones de extensión para iniciar '%s', por favor compruebe su archivo de configuración."
-
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-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:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Gestión de las Listas de control de acceso"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "¡Entrada desconocida '%s'!"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Todos los usuarios"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "No se puede cambiar la clave, usuario '%s' desconocido"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
+msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Entrada fallida: %s"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "¡Se ha indicado un objectType vacio o no válido!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Error Smarty"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Su sesión de FusionDirectory ha expirado!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
+msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "¡Por favor introduzca un nombre de usuario válido!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "¡Por favor introduzca una contraseña!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Por favor compruebe la combinación nombre de usuario/contraseña"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
+msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Cuenta bloqueada. ¡Por favor contacte con su administrador de sistemas!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Depurando"
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Tiempo de consulta máxima de LDAP"
+
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Registrar estadísticas LDAP"
+
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Nivel de depuración"
+
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Su navegador tiene las cookies desactivadas. ¡Porfavor active las cookies y recargue esta página antes de iniciar sesión!"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Varios"
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Configuración PHP"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
+msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Error Fatal: 'Register globals' está activado. No se permitirá ningun acceso hasta que esto sea solucionado por un administrador."
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Cambio de contraseña"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "Modo"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Su contraseña va a caducar próximamente, ¡Por favor cambie su contraseña!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "¡Funcionando sin memoria!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Desactivados chequeos de ACL de usuario"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Métodos"
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Extensión"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr ""
 
-#: html/main.php:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Error de configuración"
-
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Error fatal: no todas las variables POST fueron transferidas por PHP - por favor informe a su administrador!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "La configuración de FusionDirectory %s/%s no se puede leer. Cancelado."
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "¡No se puede acceder a el directorio de compilación '%s'!"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Dirección de correo"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Contacte a su administrador, hubo un problema con el servidor de correo"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
-msgstr "Esta prenda es invalida"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Grupos de objetos"
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
-
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Nombre de la localización"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "URI de conexión"
-
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "Conexión TLS"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Autenticación"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "DN del administrador"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Contraseña de administrador"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Estado actual"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Configuración LDAP"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Departamentos"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Conectividad LDAP"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "departamento"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Este dialogo realiza la configuración básica de la conectividad LDAP para FusionDirectory"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Propiedades"
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "¡La conexión anónima al servidor '%s' ha fallado!"
+msgid "Name of %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "¡La conexión como usuario '%s' ha fallado!"
+msgid "A name for this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Reintento"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Categoría"
+
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "La conexión anónima al servidor '%s' ha tenido exito."
+msgid "Category of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Refresco"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "¡Por Favor especifique un usuario y contraseña!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "¡La conexión como usuario '%s' al servidor '%s' ha tenido exito!"
+msgid "Manager of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "País"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Bienvenido"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Número de teléfono"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Terminar"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Terminar - Escribir el archivo de configuración"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Escribir archivo de configuración"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Dominio"
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "El fichero de configuración es universalmente legible. ¡Por favor modifique los permisos del archivo!"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "En estos momentos la configuración no es accesible o no existe."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Después de descargar y colocar el archivo en %s, por favor asegúrese de que el usuario bajo el cual está corriendo el servidor web es capaz de leer %s, mientras que otros usuarios no deben poder."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Migrar"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Usuarios y grupos"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "Comprobaciones de módulos y extensiones PHP"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Componentes del dominio"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Inspección LDAP"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Analizar el arbol LDAP actual por compatibilidad con FusionDirectory"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Localidad"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Lista de Departamentos"
+
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Gestión de usuarios"
+
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Analizando objetos en la entrada raíz"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Bloqueo de cuenta"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Comprobando permisos en la base de datos LDAP"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Comprobando usuarios invisibles"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Desbloquear cuenta"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Comprobando súper administrador"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Bloquear cuenta"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr ""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Lista de usuarios"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Comprobando cuentas fuera del árbol de usuarios"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Apellido"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Comprobando grupos fuera del árbol de grupos"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Nombre de pila"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Comprobando departamentos invisibles"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Bloquear usuarios"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Comprobando números UID duplicados"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Desbloquear usuarios"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Aplicar plantilla"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "La consulta LDAP ha fallado"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Nuevo usuario desde plantilla"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Editar usuario"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Error"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "Objeto '%s' de FusionDirectory faltante!"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Eliminar usuario"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Por favor compruebe su instalación"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Rol"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "No se puede un tipo de objeto estructural en su entrada raíz. Por favor intente añadir la clase de objeto '%s' manualmente."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "Se encontraron %s usuarios que no serán visibles en FusionDirectory o están incompletos."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Error de migración"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Número de teléfono"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Número de Fax"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Grupos"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "No hay una cuenta de administrador FusionDirectory dentro de su LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Editar características posix"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Mostrar grupos primarios"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Mostrar grupos de correo"
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Mover usuarios al árbol de usuarios configurado"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Mostrar grupos de samba"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "a"
-
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Las siguientes referencias se actualizaran"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Encontrados '%s' grupos fuera del árbol configurado '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Se encontraron %s departamentos que no serán visibles en FusionDirectory"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Selección de idiomas"
-
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Este paso le permite seleccionar su idioma preferido"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Grupo de objetos"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Bienvenido al asistente de configuración de FusionDirectory"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Grupo"
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Mensaje de Bienvenida"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Objetos miembros"
+
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Comprobación de la instalación"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Comprobación básica de la versión de PHP y las extensiones."
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Comprobando la versión de PHP"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Lista de grupos"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP debe ser versión '%s' o superior."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Por favor actualize a la versión soportada."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory requiere este modulo para poder hablar con su servidor LDAP."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory requiere este modulo para una interfaz internacionalizada."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Forzar GID"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory requiere este modulo para comunicarse con distintos tipos de servidores y protocolos."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory requiere este modulo para la integración con Samba"
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory requiere ya sea el modulo 'mhash' o 'sha1' para usar encripción SSHA"
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Miembros del grupo"
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory requiere este modulo para poder hablar con un servidor IMAP."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory requiere este modulo para manejar cadenas unicode."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory requiere esta extensión para manejar imágenes."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "modulo de compresión"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory requiere esta extensión para manejar capturas."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "registr_globals es un mecanismo de PHP para registrar todas las variables globales de tal manera que sean accesible desde scripts sin que cambien su ámbito. Esto puede ser un problema de seguridad."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Busque 'register_globals' en su php.ini y modifíquelo por 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "Asignación de ACL"
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP usa este valor en el recolector de basura para eliminar las sesiones antiguas."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Ajustando este valor a un día impedirá la perdida de sesiones y cookies antes de que realmente se desconecte por tiempo."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Busque 'sessio.gc_maxlifetime' en su php.ini y modifíquelo a 86400 o mayor."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Modo"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "Para poder usar FusionDirectory sin problemas, la opción session.auto_start debe estar configurada en 'Off' en su php.ini."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Busque 'session.auto_start' en su php.ini y modifíquelo a 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Esta opción está relacionada con el manejo de salida de PHP. Desactive esta opción poniéndola en off para mejorar el rendimiento."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Busque 'implicit_flush' en su php.ini y modifíquelo a 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Miembros"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "El tiempo de ejecución debe ser de al menos 30 segundos."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Busque 'max_execution_time' en su php.ini y modifíquelo a '30' o mayor."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Aumente la seguridad del servidor modificando el parámetro 'expose_php' a 'off'. PHP no debería enviar ningún tipo de información sobre el servidor que esta ejecutando la aplicación."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Busque 'expose_php' en su php.ini y modifíquelo a 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Aumente el rendimiento de su servidor modificando 'magic_quotes_gpc' a 'off'"
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Busque 'zend.ze1_compatibility_mode' en su php.ini y modifíquelo a 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Error de configuración"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "No hay ACL configuradas en esta categoría"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Completado"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACLs que tienen estos objetos: %s"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Siguiente"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Editar la categoría ACL"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "El equipo de FusionDirectory"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Eliminar la categoría ACL"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Lista de categorías ACL disponibles"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Todos los objetos en el subárbol actual"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Este objeto no tiene relación con otros objetos"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "leer"
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtro"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "escribir"
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Mostrar plantillas"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Mostrar/ocultar caracteristicas avanzadas"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Mostrar usuarios funcionales"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Crear objetos"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "Mostrar usuarios POSIX"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Mover objetos"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Mostrar los usuarios de correo"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Eliminar Objetos"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Mostrar los usuarios samba"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Garantizar permiso al propietario"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Objeto completo"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Tiene configuraciones de los siguientes objetos: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Roles de control de acceso"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "telephoneNumber (Numero de Telefono)"
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "FusionDirectory NO correrá si no se arregla esto."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr ""
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory correrá aun si no se arregla esto."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Crear una nueva cuenta administrador de FusionDirectory"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Este dialogo añadirá automáticamente un nuevo superadministrador a su árbol LDAP."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Identificador (ID) de usuario"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Contraseña (de nuevo)"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Esta parece ser la primera vez que inicia FusionDirectory - no conseguimos ninguna configuración hasta el momento. Este simple asistente trata de ayudarlo a configurar."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "¿Que hará este asistente para usted?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Creara una configuración básica para un único sitio"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Intentando encontrar problemas en la configuración de LDAP y de PHP"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Le permite seleccionar un juego de opciones básicas o avanzadas"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Su cambio de contraseña se ha realizado correctamente. Recuerde cambiarla en todos los programas configurados también."
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Migración guiada de arboles LDAP existentes"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Caracteristicas del usuario"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "¿Que no hará este asistente por usted?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Borrar Contraseña"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Encontrar cada posible error de configuración"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Introducir nueva contraseña"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migración asistidas de cualquier configuración LDAP - ¡creando copias de seguridad!"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Foto"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Foto del usuario"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Eliminar foto"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "No tiene permisos para cambiar su contraseña en estos momentos"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "Añadir las clases de objetos necesarias a la base LDAP"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "No se cambiará su método de hash de la contraseña!"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Actual"
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Detectado conflicto de Bloqueos"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Despues de migrar"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Cerrar"
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Solo lectura"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Continuar"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Si quiere saber que se hará cuando se migren las entradas seleccionadas use el botón 'Mostrar cambios' para ver el LDIF."
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Mostrar cambios"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "La opción 'tamaño limite' permite unas operaciones con LDAP mas rápidas y protege al servidor LDAP de tener una mayor carga. La manera mas fácil de manipular grandes bases de datos sin grandes perdidas de tiempo es limitar la búsqueda a valores pequeños y usar filtros para encontrar las entradas que este buscando."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Durante la inspección del LDAP vamos a verificar varios problemas comunes que pueden ocurrir durante la migración a administración por FusionDirectory de la base LDAP. Puede querer reparar los problemas debajo, para proveer un servicio mas eficiente."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Por favor elija la forma de reaccionar en esta sesión"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Comprobar de nuevo"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "ignore este error y muestre todas las entradas devueltas por el servidor LDAP"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Crear su fichero de configuración"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "ignore este error y muestre todas las entradas que coincidan con el tamaño limite definido y active el uso de filtros en su lugar"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Activar"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Descargar configuración"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Estado: "
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtro"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr "La recuperación de claves no está activada. Si ha perdido su clave por favor contacte a su administrador."
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Entonces, si esta seguro, presione <i>Eliminar</i> para continuar o <i>Cancelar</i> para Abortar."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Pantalla de inicio"
@@ -4971,26 +4869,141 @@ msgstr "Entrando"
 msgid "Click here to log in"
 msgstr "Pulse aquí para iniciar sesión"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "La opción 'tamaño limite' permite unas operaciones con LDAP mas rápidas y protege al servidor LDAP de tener una mayor carga. La manera mas fácil de manipular grandes bases de datos sin grandes perdidas de tiempo es limitar la búsqueda a valores pequeños y usar filtros para encontrar las entradas que este buscando."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Por favor elija la forma de reaccionar en esta sesión"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "ignore este error y muestre todas las entradas devueltas por el servidor LDAP"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "ignore este error y muestre todas las entradas que coincidan con el tamaño limite definido y active el uso de filtros en su lugar"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Activar"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Por favor verifique si realmente quiere hacer esto ya que FusionDirectory no tiene forma de recuperar la data."
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Entonces, si esta seguro, presione <i>Eliminar</i> para continuar o <i>Cancelar</i> para Abortar."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Inicio"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Salir"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Entrando"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "La sesión expira en %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Continuar"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Detectado conflicto de Bloqueos"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Solo lectura"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Asistente para copiar y pegar"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr "Algunos valores deben ser únicos en el directorio completo mientras que algunas combinaciones no tienen sentido. FusionDirectory muestra los atributos relevantes. Por favor mantenga los valores de abajo para cumplir con las políticas."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "¡Recuerde que propiedades como gestionar instantáneas no serán copiadas!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "O, si copia o corta una entrada en FusionDirectory y borra el objeto fuente, puede resultar en errores al pegar el objeto nuevamente!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Operación incompleta"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Información"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "Asignando ACL a la entrada actual"
@@ -5035,211 +5048,197 @@ msgstr "ACL que tienen este objeto"
 msgid "Available roles"
 msgstr "Roles disponibles"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Asistente para copiar y pegar"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr "Algunos valores deben ser únicos en el directorio completo mientras que algunas combinaciones no tienen sentido. FusionDirectory muestra los atributos relevantes. Por favor mantenga los valores de abajo para cumplir con las políticas."
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "¡Recuerde que propiedades como gestionar instantáneas no serán copiadas!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
-msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "O, si copia o corta una entrada en FusionDirectory y borra el objeto fuente, puede resultar en errores al pegar el objeto nuevamente!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Operación incompleta"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Información"
-
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Inicio"
-
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Salir"
-
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Entrando"
-
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "La sesión expira en %d!"
-
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "Añadir las clases de objetos necesarias a la base LDAP"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "El equipo de FusionDirectory"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Actual"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Despues de migrar"
+#: plugins/generic/references/contents.tpl.c:5
+msgid ""
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Cerrar"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Este objeto no tiene relación con otros objetos"
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Crear su fichero de configuración"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Caracteristicas del usuario"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Borrar Contraseña"
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Descargar configuración"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Introducir nueva contraseña"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Estado: "
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Foto"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Crear una nueva cuenta administrador de FusionDirectory"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Foto del usuario"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Este dialogo añadirá automáticamente un nuevo superadministrador a su árbol LDAP."
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Eliminar foto"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Identificador (ID) de usuario"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "No tiene permisos para cambiar su contraseña en estos momentos"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Contraseña (de nuevo)"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "No se cambiará su método de hash de la contraseña!"
 
-#: setup/setup_welcome.tpl.c:2
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Esta parece ser la primera vez que inicia FusionDirectory - no conseguimos ninguna configuración hasta el momento. Este simple asistente trata de ayudarlo a configurar."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Su cambio de contraseña se ha realizado correctamente. Recuerde cambiarla en todos los programas configurados también."
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "¿Que hará este asistente para usted?"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Creara una configuración básica para un único sitio"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Intentando encontrar problemas en la configuración de LDAP y de PHP"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Le permite seleccionar un juego de opciones básicas o avanzadas"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Migración guiada de arboles LDAP existentes"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "¿Que no hará este asistente por usted?"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Encontrar cada posible error de configuración"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migración asistidas de cualquier configuración LDAP - ¡creando copias de seguridad!"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "FusionDirectory NO correrá si no se arregla esto."
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "telephoneNumber (Numero de Telefono)"
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory correrá aun si no se arregla esto."
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Si quiere saber que se hará cuando se migren las entradas seleccionadas use el botón 'Mostrar cambios' para ver el LDIF."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Mostrar plantillas"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Mostrar cambios"
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Mostrar usuarios funcionales"
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "Mostrar usuarios POSIX"
+
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Mostrar los usuarios de correo"
+
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Mostrar los usuarios samba"
+
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Durante la inspección del LDAP vamos a verificar varios problemas comunes que pueden ocurrir durante la migración a administración por FusionDirectory de la base LDAP. Puede querer reparar los problemas debajo, para proveer un servicio mas eficiente."
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Comprobar de nuevo"
+#: plugins/admin/acl/remove.tpl.c:5
+msgid ""
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr ""
+
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
diff --git a/locale/fa_IR/fusiondirectory.po b/locale/fa_IR/fusiondirectory.po
index b08be7f530d7e4ae6e64105740cdf68c0b5105db..f2464fe559dae865f559481d81106eb3d50064a6 100644
--- a/locale/fa_IR/fusiondirectory.po
+++ b/locale/fa_IR/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n"
@@ -17,4841 +17,4757 @@ msgstr ""
 "Language: fa_IR\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "شماره فکس"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
-msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "دپارتمان"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "خطا"
 
-#: plugins/admin/departments/class_department.inc:67
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Name of %s"
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Short description of this %s"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "خطای LDAP"
 
-#: plugins/admin/departments/class_department.inc:76
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "Category of this %s"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
+#: setup/class_setupStep_Migrate.inc:511
 #, php-format
-msgid "Website of this %s"
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:574
 #, php-format
-msgid "Manager of this %s"
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "کشور"
-
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "آدرس"
-
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "A postal address for this %s"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "تلفن"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Migrate.inc:862
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr ""
-
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr ""
-
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr ""
-
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr ""
-
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr ""
-
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr ""
-
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr ""
-
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr ""
-
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr ""
-
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr ""
-
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr ""
-
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr ""
-
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr ""
-
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr ""
-
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr ""
-
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
-msgstr ""
-
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "خطا"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "جواز"
-
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1084
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "ACL for these objects: %s"
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Delete"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "خطای داخلی"
+
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "جواز"
+
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
 #, php-format
-msgid "Assignments on object or subtree %s"
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "اطلاعات شخصی"
-
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "فامیل"
-
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "نام"
-
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "شماره اتاق."
-
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "شماره اتاق"
-
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "تلفن همراه"
-
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "پیجر"
-
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr ""
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "خطا"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "آدرس پستی منزل"
-
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "شماره تماس خصوصی"
-
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "شماره تلفن منزل"
-
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "اطلاعات سازمان"
-
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "شماره دپارتمان."
-
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "شماره دپارتمان"
-
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "شماره کارمندی."
-
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "شماره کارمندی"
-
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "کلمه عبور جدید"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
-#, php-format
-msgid "Group of user %s"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr ""
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgstr "فایل '%s' را نمی توانم پیدا کنم برای رفع مشکل دستور '%s' را بزنید."
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
+#: include/class_config.inc:886
+#, php-format
 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."
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
+#: include/class_msgPool.inc:884
 msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/php_setup.inc:132
+msgid "Type"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
-#, php-format
-msgid "Body (first %s is login, second is link)"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
-#, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
 #, php-format
-msgid "Body (%s is login)"
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:846
 #, php-format
 msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:882
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr ""
-
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
+#: include/class_ldap.inc:1170
+#, php-format
 msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "خطا"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
-#, php-format
-msgid "You are not allowed to create a snapshot for %s."
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/class_simplePlugin.inc:290
 #, php-format
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_config.inc:156
-#, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "خطای LDAP"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
+
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "%s (required)"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "خطای داخلی"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr ""
 
-#: include/class_ldap.inc:846
-#, php-format
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "while operating on LDAP server %s"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_msgPool.inc:43
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects of type '%s'."
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted!"
+msgid "All users"
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/setup.php:59
+msgid "Smarty"
+msgstr ""
+
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "This '%s' object will be deleted: %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:150
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:171
+msgid "Smarty error"
+msgstr ""
+
+#: html/index.php:173
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr ""
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr ""
+
+#: html/index.php:214
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/index.php:454
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:475
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:485
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
 msgstr ""
 
-#: include/class_msgPool.inc:225
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "Cannot connect to %s database!"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:245
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Cannot select %s database!"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "No %s server defined!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "پیکربندی PHP"
+
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr ""
+#: html/main.php:142
+msgid "Password change"
+msgstr "تغییر کلمه عبور"
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr ""
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "اعتبار کلمه عبور شما در حال اتمام است، لطفا کلمه عبور خود را تغییر دهید!"
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr ""
+#: html/main.php:289
+msgid "Plugin"
+msgstr "پلاگین"
 
-#: include/class_msgPool.inc:347
+#: html/main.php:290
 #, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:364
+#: html/main.php:306
 #, php-format
-msgid "'%s' must be smaller than %s!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:378
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Value for '%s' is too small!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:164
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "اطلاعات شخصی"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "فامیل"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "نام"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "آدرس"
+
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "شماره اتاق."
+
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "شماره اتاق"
+
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "تلفن"
+
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "تلفن همراه"
+
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "پیجر"
+
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "خطا"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "آدرس پستی منزل"
+
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "شماره تماس خصوصی"
+
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "شماره تلفن منزل"
+
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "اطلاعات سازمان"
+
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "دپارتمان"
+
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "شماره دپارتمان."
+
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "شماره دپارتمان"
+
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "شماره کارمندی."
+
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "شماره کارمندی"
+
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:1563
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:621
+#, php-format
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "کلمه عبور جدید"
+
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2669
+#: plugins/config/class_recoveryConfig.inc:66
 msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:2672
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr ""
+
+#: plugins/config/class_recoveryConfig.inc:73
 msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr ""
+
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr ""
+
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:3175
+#: plugins/config/class_recoveryConfig.inc:91
 #, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/functions.inc:3345
+#: plugins/config/class_recoveryConfig.inc:109
 #, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr "فایل '%s' را نمی توانم پیدا کنم برای رفع مشکل دستور '%s' را بزنید."
-
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr ""
-
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr ""
-
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: 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 ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
+#: plugins/config/class_configInLdap.inc:168
 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!"
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:197
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:315
+msgid ""
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "پیکربندی PHP"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "تغییر کلمه عبور"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "اعتبار کلمه عبور شما در حال اتمام است، لطفا کلمه عبور خود را تغییر دهید!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "پلاگین"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:463
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
+#: plugins/config/class_dashBoardConfig.inc:62
 msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
+msgstr ""
+
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "کشور"
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr ""
+
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
 msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "خطا"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr ""
+
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "شماره فکس"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_ogroup.inc:63
+#, php-format
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr ""
+
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
+#: setup/setup_welcome.tpl.c:32
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "تنظیمات کاربر"
-
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "حذف کلمه عبور"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "ثبت کلمه عبور جدید"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "عکس کاربر"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4926,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4964,6 +4869,65 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:2
 msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
@@ -4972,16 +4936,72 @@ msgstr ""
 msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"FusionDirectory to get your data back."
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr ""
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
 msgstr ""
 
 #: ihtml/themes/breezy/acl.tpl.c:2
@@ -5028,211 +5048,190 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "تنظیمات کاربر"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "حذف کلمه عبور"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "ثبت کلمه عبور جدید"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "عکس کاربر"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/fi_FI/fusiondirectory.po b/locale/fi_FI/fusiondirectory.po
index 29767862b3276b97ce80608913ad28ba55677794..447e98b661e37676dcbe42b4e57f0d88ecdf0fee 100644
--- a/locale/fi_FI/fusiondirectory.po
+++ b/locale/fi_FI/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n"
@@ -17,4848 +17,4757 @@ msgstr ""
 "Language: fi_FI\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nimi"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Kuvaus"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Ominaisuudet"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Varoitus"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:191
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Toiminnot"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Luo"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Poista"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Short description of this %s"
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Category of this %s"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "LDAP virhe"
 
-#: plugins/admin/departments/class_department.inc:80
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "Website of this %s"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:511
 #, php-format
-msgid "Manager of this %s"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Valtio"
-
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Maa"
-
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Osoite"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Varoitus"
 
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Migrate.inc:574
 #, php-format
-msgid "A postal address for this %s"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Puhelin"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Puhelinnumero"
-
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Faksi"
-
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr ""
-
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr ""
-
-#: 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 ""
-
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr ""
-
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr ""
-
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr ""
-
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr ""
-
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr ""
-
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr ""
-
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr ""
-
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Etunimi"
-
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Luo"
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Virhe"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Lupa"
-
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1084
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "ACL for these objects: %s"
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Delete"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr ""
+
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr ""
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Virhe"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Lupa"
+
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
 #, php-format
-msgid "Assignments on object or subtree %s"
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Salasana"
-
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Sukunimi"
-
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Etunimi"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Toiminnot"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Mobiili"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:678
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:1130
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr ""
+
+#: include/functions.inc:2641
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:2645
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_config.inc:280
 #, php-format
-msgid "Group of user %s"
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr ""
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Peruta"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr ""
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Talenna"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Portti"
-
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
+#: include/class_msgPool.inc:806
+#, php-format
 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."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Tyyppi"
+
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
+#: include/class_ldap.inc:846
+#, php-format
 msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr ""
+
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:1134
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:1139
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:1170
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nimi"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Kuvaus"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (%s is login)"
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Poista"
+
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Virhe"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
+msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Lataa"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "LDAP virhe"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
+#, php-format
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:885
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/class_plugin.inc:1322
+#, php-format
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Virhe"
-
-#: include/class_ldap.inc:846
+#: include/class_acl.inc:118
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
-msgstr ""
-
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/class_acl.inc:170
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/class_acl.inc:173
 #, php-format
-msgid "while operating on LDAP server %s"
+msgid "All users"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: html/index.php:150
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:173
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_msgPool.inc:47
+#: html/index.php:214
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:69
-#, php-format
-msgid "This '%s' object will be deleted!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:74
-#, php-format
-msgid "This object will be deleted: %s"
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:76
-#, php-format
-msgid "This '%s' object will be deleted: %s"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:454
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:475
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:485
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr ""
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Sähköpostiosoite"
 
-#: include/class_msgPool.inc:151
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:285
+#: html/main.php:290
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:313
+#: html/main.php:306
 #, php-format
-msgid "'%s' command is invalid!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:315
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "'%s' command for plugin %s is invalid!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Peruta"
-
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Talenna"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Salasana"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Sukunimi"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Etunimi"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Valtio"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Osoite"
+
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Puhelin"
+
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Mobiili"
+
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Faksi"
+
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:859
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:2117
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2119
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sMiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:3345
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Tyyppi"
-
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: 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 ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Portti"
+
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Lataa"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Sähköpostiosoite"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Ominaisuudet"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Maa"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Puhelinnumero"
+
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr ""
+
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Etunimi"
+
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr ""
+
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr ""
+
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Käyttäjätunnus"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4971,6 +4869,65 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:2
 msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
@@ -4979,16 +4936,72 @@ msgstr ""
 msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"FusionDirectory to get your data back."
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr ""
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
 msgstr ""
 
 #: ihtml/themes/breezy/acl.tpl.c:2
@@ -5035,211 +5048,197 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Käyttäjätunnus"
-
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/fr/fusiondirectory.po b/locale/fr/fusiondirectory.po
index 9b764bf7b3f8edbc4aa07e3ee250e6241e0f719b..4df63fcc0870928be68e174beaa9627f2e95ed9a 100644
--- a/locale/fr/fusiondirectory.po
+++ b/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 19:03+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n"
 "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n"
@@ -21,4849 +21,4758 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Bienvenue %s !"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Références"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Rôle"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr "Information du rôle"
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr "Rôle organisationnel"
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Informations"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nom"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr "Nom du groupe"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Description"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Description du rôle"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Numéro de téléphone"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Numéro de fax"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr "Les membres du rôle"
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Ajouter des utilisateurs au rôle"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Groupe"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr "Information du groupe POSIX"
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr "Groupe POSIX"
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr "Groupe d’utilisateurs POSIX"
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Propriétés"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr "Description courte pour ce groupe"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Forcer le GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr "Forcer la valeur du GID pour ce groupe"
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr "GID de ce groupe"
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Membres du groupe"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Système de confiance"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Mode de confiance"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr "Type d'autorisation pour ces hôtes"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "désactivé"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "accès complet"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "permettre l'accès a ces hôtes"
-
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-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:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Avertissement"
-
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Le temps d'attente du verrou a été dépassé. Verrou ignoré !"
-
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr "Type Inconnu : %s"
-
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr "Dn inexistant : %s"
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Groupe d'objet"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr "Information du groupe d’objets"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Langue préférée"
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Objets membres"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Configuration de la langue"
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr "Objets membres de ce groupe"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Cette étape vous permet de sélectionner votre langue préférée."
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Language.inc:62
 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"
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Liste des groupes"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Actions"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Créer"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Éditer"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Supprimer"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr "Groupes et rôles"
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-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 "Permet de gérer des groupes d'objets, des groupes POSIX et des rôles "
-
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr "Éditer les propriétés du role"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Modifier les propriétés posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr "Afficher les groupes utilisateurs"
-
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Afficher les groupes principaux"
-
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr "Afficher les rôles organisationnels "
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr "Afficher les groupes d’applications"
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr "Afficher des groupes non identifiés"
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
+msgstr "Maintenant vous pouvez choisir la langue par défaut. «Automatique» utilisera la langue demandée par le navigateur. Ce paramètre peut être configuré par utilisateur."
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Afficher les groupes de courriel"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automatique"
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Afficher les groupes Samba"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "Vérification des modules et extensions PHP"
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr "Afficher les entrées DSA"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
+msgstr "Configuration de PHP (<a href=\"?info\" target=\"_blank\">montrer les informations)</a>)"
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr "Afficher les groupes de serveurs"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Vérification de l'installation"
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr "Afficher les groupes de stations de travail"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Vérification basique de la version de PHP et des extensions nécessaires."
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr "Afficher les groupes de stations Windows"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Vérification de la version de PHP"
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr "Afficher les groupes de terminaux"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP doit être à la version %s ou supérieure."
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr "Afficher les groupes d’imprimantes"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Veuillez faire la mise à jour vers une version supportée."
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr "Afficher les groupes de téléphones"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory a besoin de ce module pour dialoguer avec votre annuaire LDAP."
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Composant de domaine"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory a besoin de ce module pour afficher l'interface multilingue."
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr "composant de domaine"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory a besoin de ce module pour dialoguer avec les différents types de serveurs et de protocoles."
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Département"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory a besoin de ce module pour dialoguer avec Samba."
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Départements"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory a besoin du module 'mhash' ou 'sha1' pour l'utilisation du chiffrage SSHA."
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "département"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory a besoin de ce module pour dialoguer avec un serveur IMAP."
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr "Nom de %s"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr "Un nom pour ce %s"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory a besoin de ce module pour gérer les chaînes de caractère unicode."
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
-msgstr "Une courte description de ce %s"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Catégorie"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory a besoin de ce module pour gérer les images."
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
-msgstr "Catégorie de ce %s"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "Module de compression"
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr "Site Web"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory a besoin de ce module pour gérer les instantanés."
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
-msgstr "Site Web de %s"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "register_globals est un mécanisme PHP pour enregistrer toutes les variables globales afin que les scripts puissent y accéder sans changer la porté des variables. Cela peut constituer un risque de sécurité."
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Responsable"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Recherchez l'option 'register_globals' dans votre php.ini et mettez la à 'Off'."
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
-msgstr "Responsable de ce %s"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP utilise cette variable pour effacer les vieilles sessions."
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Lieu"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Mettre cette valeur à 1 jour permet d'éviter de perde les cookies et les sessions avant qu'elles ne soient réellement expirées."
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "État"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Cherchez 'session.gc_maxlifetime' dans votre php.ini et mettez le à 86400 ou plus."
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Pays"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Off"
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Adresse"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "Pour pouvoir utiliser FusionDirectory sans problème, la variable session.auto_start doit être à 'Off' dans votre php.ini."
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
-msgstr "Adresse postale pour ce %s"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Recherchez la variable 'session.auto_start' dans votre php.ini et mettez la à 'Off'."
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Téléphone"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr "FusionDirectory a besoin au minimum de 128MB de mémoire. Allouer moins causera des erreurs imprévisibles, qui ne seront pas reproductibles ! Augmentez la mémoire pour les installations plus complexes."
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Numéro de téléphone"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr "Recherchez 'memory_limit' dans votre fichier php.ini votre et mettez le à '128M' ou plus."
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Cette option définit la gestion des sorties, mettez cette option à 'Off' pour améliorer la performance."
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr "Numéro de fax"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Recherchez 'implicit_flush' dans votre php.ini et mettez le à 'Off'."
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Gérer les départements"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "Le temps d'exécution doit être au moins de 30 secondes."
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Checks.inc:191
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr "Gérer les départements, pays, composants de domaine, les domaines, les localités et les nœuds des organisations"
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Rechercher l'option 'max_execution_time' dans votre php.ini et mettez la à '30' ou plus."
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Utilisateurs et groupes"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Augmentez la sécurité de votre serveur en mettant l'option expose_php à 'Off'. PHP n'enverra pas d'information à propos du serveur."
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Lieu"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Recherchez 'expose_php' dans votre php.ini et mettez le à 'Off'."
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr "lieu"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Améliorez la performance de votre serveur en mettant magic_quotes_gpc à 'off'."
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr "pays"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Recherchez l'option 'zend.ze1_compatibility_mode' dans votre php.ini et mettez la à 'Off'."
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Domaine"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Bienvenue"
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr "domaine"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Bienvenue dans l'assistant de configuration FusionDirectory"
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Liste des départements"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Le message d'accueil"
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organisme"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr "organisme"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Migrer"
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Liste des utilisateurs"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Inspection LDAP"
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Nom de famille"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Analyse votre annuaire LDAP pour la compatibilité avec FusionDirectory"
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Prénom"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr "Donner tous les droits sur les utilisateurs de cette branche"
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Identifiant"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr "Permet aux utilisateurs d'éditer leur propres informations (onglet principal et posix, à n'utiliser que sur la base)"
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Utilisateur"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr "Permet aux utilisateurs de changer leur mot de passe (à n’utiliser que sur la base)"
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
-msgstr "Depuis un modèle"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Inspection des classes d'objets de l'objet racine"
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Modèle"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Vérification des permissions sur l'annuaire LDAP"
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Verrouiller les utilisateurs"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Recherche d’utilisateurs invisibles"
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Déverrouiller les utilisateurs"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Vérification du super administrateur"
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Appliquer le modèle"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr "Vérification des rôles ACL et groupes par défaut"
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Créer un nouvel utilisateur depuis un modèle"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Recherche d'utilisateurs en dehors de la branche utilisateurs"
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Éditer l’utilisateur"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Recherche de groupes en dehors de la branche groupes"
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Recherche de départements invisibles"
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Supprimer l'utilisateur"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Recherche d’UID en double"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Utilisateurs"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr "Recherche de GID en double"
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Gérer les utilisateurs"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "La requête LDAP a échoué"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
-msgstr "Gérer les comptes utilisateurs et leurs propriétés"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
+msgstr "L'objet racine est probablement manquant."
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Permission"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Échec"
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Verrouillage du compte"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "Object class FusionDirectory obligatoire '%s' manquante !"
+
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Veuillez vérifier votre installation."
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
-msgstr "La méthode \"%s\" ne permet pas le verrouillage du mot de passe. Le compte \"%s\" n'a pas été verrouillé !"
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "Impossible de gérer le type structural de votre objet racine. S'il vous plaît essayez d’ajouter la classe d'objet '%s' à la main."
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Déverrouiller le compte"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Erreur LDAP"
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Verrouiller le compte"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
+msgstr "L'utilisateur \"%s\" n'a pas un accès complet à votre annuaire LDAP."
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
-msgstr "Compte utilisateur"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
+msgstr "L'utilisateur \"%s\" n'a pas un accès complet à votre annuaire LDAP."
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
-msgstr "Information du compte utilisateur"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Avertissement"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Pas d'ACL pour cette catégorie"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "%s utilisateur(s) trouvé(s) qui ne seront pas visibles dans FusionDirectory ou qui sont incomplets."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr "Migration des utilisateurs"
+
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Erreur de migration"
+
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL pour ces objets : %s"
+msgid "Cannot migrate entry \"%s\":"
+msgstr "Impossible de migrer l'entrée '%s' :"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Éditer les catégories ACL"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr "Comptes administratifs de FusionDirectory 1.0.7 trouvés : %s"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:860
 #, php-format
-msgid "Delete"
-msgstr "Supprimer"
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr "Comptes administratifs de FusionDirectory 1.0.7 trouvés : %s"
+
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr "Vous pouvez exécuter <i>fusiondirectory-setup --migrate-acls</i> après avoir sauvegardé le fichier de configuration à la fin de l'installation pour migrer les acls. <br/>"
+
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr "Il n’y a pas d'administrateur FusionDirectory 1.0.8 valide dans votre annuaire LDAP."
+
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Créer"
+
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Utilisateurs"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Remettre à zéro les catégories ACL"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Groupes"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Liste des catégories d'ACL disponibles"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "Il n'y a pas d'administrateur FusionDirectory dans votre annuaire LDAP."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Tous les objets dans le sous arbre actuel"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr "Donner tous les droits sur tous les objets"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
-msgstr "Modifier ACL pour \"%s\""
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Erreur"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "lecture"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr "Les rôles ACL par défaut n'ont pas été insérés"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "écrire"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr "Certains rôles ACL par défaut sont absents"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objet"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr "Les rôles ACL par défaut on été insérés"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Afficher/Cacher la configuration avancée"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr "Impossible d’ajouter un rôle ACL pour '%s' :"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Créer des objets"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr "%s utilsateur(s) trouvé(s) en dehors de la branche configurée \"%s\"."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Déplacer des objets"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Déplacer les utilisateurs dans la branche utilisateur configurée"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Supprimer des objets"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
+msgstr "Impossible de déplacer les utilisateurs vers le département spécifié !"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Donner la permission au propriétaire"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr "Les entrées seront déplacées depuis"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "L'objet complet"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "vers"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Rôles ACL"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Les références suivantes seront mises à jour"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr "Gestion des rôles ACL"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "%s groupes trouvés en dehors de la branche configurée '%s'."
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
-msgstr "Gérer les rôles ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr "Déplacer les groupes dans la branche configurée"
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Contient les paramètres pour ces objets : %s"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "%s département(s) trouvé(s) qui ne seront pas visible dans FusionDirectory."
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Contrôle d'accès (ACL)"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr "Migration des départements"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "Rôle ACL"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgstr "%s valeurs dupliquées trouvées pour l'attribut \"uidNumber\" : %s"
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr "Un nom pour ce rôle"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr "%s valeurs dupliquées trouvées pour l'attribut \"gidNumber\" : %s"
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr "Description courte pour ce rôle"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
+msgstr "Connexion LDAP"
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr "ACLs"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Nom de l'emplacement"
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr "ACLs qui font partie de ce groupe"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
+msgstr "Nom de cette connexion à afficher dans la liste des serveurs LDAP"
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr "création d'affectation ACL"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "URI de connexion"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr "Créer une affectation d'ACL sur un dn arbitraire"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr "URI pour contacter le serveur LDAP. Commence habituellement par ldap://"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr "Dn"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "Connexion TLS"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr "DN auquel vous souhaitez ajouter des affectations"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr "Est ce que TLS doit être utilisé pour se connecter à ce serveur LDAP ?"
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr "Impossible de trouver le dn demande dans l'annuaire LDAP"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr "Affectations ACL"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr "La base de l’annuaire LDAP"
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
-msgstr "gestion des affectations ACL "
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Authentification"
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
-msgstr "Affectations des rôles ACL pour les utilisateurs"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
+msgstr "DN du compte admin à utiliser pour la liaison au LDAP. La base est automatiquement ajoutée."
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "Affectation ACL"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "DN de l'administrateur"
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
-msgstr "Boite de dialogue d’affectation ACL"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Mot de passe administrateur"
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr "Boite de dialogue des affectations de rôles de contrôle d’accès"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr "Mot de passe pour le compte administrateur à utiliser pour la liaison au LDAP"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Mode"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Statut"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr "Est-ce que cela doit être appliqué au sous arbre complet ou seulement la base ?"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Statut actuel"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr "Sous branche"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr "Résultat de la dernière tentative de liaison LDAP et vérification des schémas de base"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr "Base seulement"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Configuration LDAP"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr "Rôle à appliquer"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Configuration de la connexion LDAP"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr "Tous les utilisateurs"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Cette page permet la configuration de base de l'annuaire LDAP pour FusionDirectory."
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr "Appliquer cette ACL pour tous les utilisateurs LDAP"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "La connexion anonyme sur le serveur '%s' a échoué !"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Membres"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "Connexion de l'utilisateur '%s' échouée !"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr "Utilisateurs et groupes à qui appliquer ce rôle"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Réessayer"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr "Affectation ACL"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "Connexion anonyme sur le serveur '%s' réussie."
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr "Affectation des rôles de contrôle d’accès"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Rafraîchir"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr "Affectations"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Veuillez fournir un utilisateur et un mot de passe !"
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr "Affectations des rôles ACL pour cette base"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "Connexion de l'utilisateur '%s' au serveur '%s' réussie !"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
 #, php-format
-msgid "Assignments on object or subtree %s"
-msgstr "Affectations sur l'objet ou la branche %s"
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
+msgstr "%s\nSchema \"%s\": %s"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr "Tableau de bord"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Fin"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr "Statistiques et informations diverses"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Fin - écrire le fichier de configuration"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr "Rapports"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Écrire le fichier de configuration"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr "Statistiques"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Votre fichier de configuration est lisible par tout le monde. Veuillez modifier les permissions !"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr "Statistiques sur les utilisateurs"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Le fichier de configuration ne peut être lu ou n'existe pas."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr "Statistiques utilisateurs"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Après avoir placé le fichier dans le répertoire %s, assurez vous que seul le serveur web puisse lire %s."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr "Statistiques des groupes"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Erreur d'installation"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr "Comptes expirés"
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Terminé"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Chiffrement des mots de passe"
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Suivant"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Méthode de chiffrement des mots de passe"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Erreur interne"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Mot de passe"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Échec de la journalisation : %s"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Mot de passe (Laissez vide si vous ne voulez pas changer)"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
+msgstr "Option %s invalide !"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Mot de passe (de nouveau)"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "Le type d'objet spécifié est vide ou invalide !"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr "Veuillez réintroduire le mot de passe pour éviter les erreurs"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "non configuré"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Informations personnelles"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Erreur de filtre"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Nom de famille"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "Le filtre est incomplet !"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr "Nom de famille de cet utilisateur"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Permission"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Prénom"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Erreur de permission"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr "Prénom de cet utilisateur"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Vous n'êtes pas autorisé à créer un nouvel instantané pour %s."
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
-msgstr "Courte description de l'utilisateur"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Vous n'êtes pas autorisé à restaurer un instantané de %s."
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr "Photo"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "Pas de déclaration d’onglets pour '%s' dans votre fichier de configuration. Impossible d'initialiser le plugin !"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr "L'avatar pour cet utilisateur"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Racine"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr "Information de contact organisationnelles"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Soumettre"
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr "Adresse postale professionnelle"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Haut"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "No. de bureau"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Bas"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Numéro du bureau"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
+msgstr "Trier vers le haut"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr "Numéro de téléphone professionnel"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
+msgstr "Trier vers le bas"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Mobile"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Sélectionner tout"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr "Numéro de mobile professionnel "
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "créé par"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Bip"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Aller au département racine"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr "Numéro de bip professionnel"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Monter d'un département"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr "Numéro de fax professionnel"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
+msgstr "Aller au département de l’utilisateur"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Site web"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Accueil"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr "Site web personnel"
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Recharger la liste"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr "Compte utilisateur"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Actions"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr "Identifiant de l'utilisateur"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Copier"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Langue préférée"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Couper"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr "Mot de passe de l'utilisateur"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Coller"
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr "Informations de contact personnelles"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Couper cette entrée"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Nom à afficher"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Copier cette entrée"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr "Nom de l'utilisateur tel qu'il devrait apparaître. Utilisé par le carnet d'adresse Exchange."
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Restaurer des instantanés"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr "Adresse postale"
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Exporter la liste"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Adresse postale personnelle"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Restaurer l’instantané"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Numéro de téléphone privé"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Créer un instantané"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Numéro de téléphone privé"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Créer un nouvel instantané depuis cet objet"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Informations organisationnelles"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Erreur fatale"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Titre"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "dans"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr "Titre d'une personne dans leur contexte organisationnel. Chaque titre est une valeur de cet attribut multivalué"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "en ligne"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr "Département auquel l'utilisateur appartient"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Erreur XML"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Numéro du département"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "Impossible de changer le mot de passe, utilisateur '%s' inconnu."
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Numéro du département"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
+msgstr "Vous devez remplir saslRealm ou saslExop dans l’écran de configuration pour pouvoir utiliser SASL"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "No. de l'employé"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Erreur de configuration"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Numéro de l'employé"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Page"
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Type d'employé"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "Pas d'exportation en PDF possible, la bibliothèque FPDF n'est pas installée."
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr "La ppolicy \"%s\" n’a pas été trouvée dans le LDAP !"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr "Vous n’êtes pas autorisé à changer votre mot de passe"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr "Vous devez attendre %d secondes avant de changer votre mot de passe à nouveau"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "Le canal demandé n'existe pas ! Veuillez contacter votre administrateur système."
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
-msgstr "Le mot de passe est dans l'historique des mots de passe récents"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Tout annuler"
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
-msgstr "Le nouveau mot de passe est le même que l’ancien"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Impossible de coller"
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Vous devez spécifier votre mode de passe actuel pour continuer."
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Identifiant"
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr "Les mots de passe entrés dans les champs 'Nouveau mot de passe' et celui dans le champ 'Répéter le nouveau mot de passe' ne concordent pas."
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Modèle"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nouveau mot de passe"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
+msgstr "modèle d'objet, utilisé pour créer plusieurs objets avec des valeurs similaires"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Le nouveau et l'ancien mot de passe sont trop similaires."
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Nom du modèle"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Le nouveau mot de passe est trop court."
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "Erreur fatale : pas d’emplacement défini pour les classes - veuillez exécuter '%s' pour régler le problème"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "Le mot de passe contient probablement des caractères Unicode qui sont problématique"
+#: include/functions.inc:142
+#, php-format
+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"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/functions.inc:512
+#, 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'."
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Éditer les paramètres POSIX"
+#: include/functions.inc:583
+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."
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Répertoire Home"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Erreur d'authentification"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "Chemin du répertoire \"home\" de cet utilisateur"
+#: include/functions.inc:617
+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."
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Erreur lors de l'ajout d'un verrou. Contactez les développeurs !"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr "Shell à utiliser lors de la connexion de l’utilisateur"
+#: include/functions.inc:678
+#, 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 !"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Groupe principal"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "Le serveur LDAP a retourné : %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
-msgstr "Groupe principal de cet utilisateur"
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Statut"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "La taille limite de %d entrées est dépassée !"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
-msgstr "Statut du compte unix de l'utilisateur"
+#: include/functions.inc:1132
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
-msgstr "Forcer l’id d’utilisateur/groupe"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Configurer"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
-msgstr "Force les valeurs des ids d’utilisateur et de groupe pour cet utilisateur."
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "incomplet"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
-msgstr "Id d’utilisateur"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Continuer malgré tout"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
-msgstr "Id d’utilisateur à utiliser pour cet utilisateur"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Éditer malgré tout"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr "Id de groupe"
+#: include/functions.inc:1563
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr "Id de groupe à utiliser pour cet utilisateur"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Entrées par page"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Appartenance aux groupes"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Appliquer le filtre"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Compte"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr "%sO"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "L'utilisateur doit changer son mot de passe lors de sa première connexion"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr "%sKiO"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr "L'utilisateur doit changer son mot de passe lors de la première connexion (il est nécessaire de remplir le champ «Délai»)"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr "%sMiO"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
-msgstr "Délai minimum entre les changements de mot de passe (jours)"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr "%sGiO"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
-msgstr "L'utilisateur ne sera pas habilité à changer son mot de passe avant ce nombre de jour (laisser vide pour désactiver)"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr "%sTiO"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr "Délai avant de forcer le changement de mot de passe (en jours)"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
+msgstr "%sPiO"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
-msgstr "L'utilisateur sera forcé de changer son mot de passe après ce nombre de jours (laisser vide pour désactiver)"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
+msgstr "%sEiO"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr "Date d'expiration du mot de passe"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
+msgstr "%sZiO"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr "Date après laquelle le mot de passe de l'utilisateur va expirer (laisser vide pour désactiver)"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
+msgstr "%sYiO"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr "Délai d'inactivité avant de désactiver l'utilisateur (en jours)"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr "Délai maximum d'inactivité après l'expiration du mot de passe avant que l'utilisateur soit désactivé (laisser vide pour désactiver)"
-
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr "Délai d'avertissement de l'utilisateur avant l'expiration de son mot de passe (en jours)"
+"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."
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr "L'utilisateur sera averti à partir de ce nombre de jours restant avant l'expiration de son mot de passe (laisser vide pour désactiver)"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Impossible d'écrire dans le fichier de révision !"
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Autoriser cet utilisateur à se connecter uniquement sur cette liste d’hôtes"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "Impossible de lire le fichier de révision !"
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "non configuré"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr "'nextIdHook' n'est pas disponible. Utilisation de la base par défaut !"
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automatique"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Avertissement LDAP"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "expiré"
+#: include/functions.inc:2559
+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 !"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "temps de grâce actif"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr "schéma principal de FusionDirectory"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "actif"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
+msgstr "Schéma utilisé pour stocker la configuration de FusionDirectory"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "mot de passe expiré"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
+msgstr "Utilisé pour stocker l'autorisation de connexion chez les utilisateurs ou les groupes."
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "mot de passe non modifiable"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr "Utilisé pour stocker les modèles"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
+msgstr "Utilisé pour stocker des informations POSIX."
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:2617
 #, php-format
-msgid "Group of user %s"
-msgstr "Groupe de l'utilisateur %s"
+msgid "Missing required object class \"%s\"!"
+msgstr "Object class obligatoire \"%s\" manquante !"
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr "Éditer les groupes et rôles de l’utilisateur"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
+msgstr "Object class facultative \"%s\" manquante !"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr "Appartenance aux groupes"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Classe(s) disponible(s)"
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr "Appartenance aux rôles"
+#: include/functions.inc:2641
+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."
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr "Configuration des plugins"
+#: include/functions.inc:2642
+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»)"
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr "Configuration des plugins FusionDirectory"
+#: include/functions.inc:2645
+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é."
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Groupes d'objets"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+msgstr "L’objectClass «posixGroup» doit être structurelle («STRUCTURAL»)"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr "Branche des groupes d'objets"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "Impossible d'allouer un ID libre :"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr "Branche où seront stockés les groupes d'objets"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "Méthode d'allocation des id inconnue !"
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "%sPoolMin >= %sPoolMax !"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr "Forcer la demande de mot de passe"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "sambaUnixIdPool n'est pas unique !"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr "Utile si vous ajoutez un hook utilisant le mot de passe et que la méthode utilisée est SASL"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "Pas d’ID disponibles !"
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Configuration"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "Nombre maximum d'essais dépassé !"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr "Configuration de FusionDirectory"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Impossible d'assigner un ID !"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr "Écran de configuration de FusionDirectory"
+#: include/functions.inc:3321
+#, 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"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Thème et apparence"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Tous les objets dans cette catégorie"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Langue"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Veuillez corriger l'erreur ci dessus et recharger la page."
 
-#: 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 "Langue de l’application. Automatique utilisera la langue demandée par le navigateur. Ce paramètre peut être configuré par utilisateur."
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr "Le fuseau horaire '%s' indiqué dans votre configuration est invalide. "
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Thème"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Erreur XML dans fusiondirectory.conf : %s à la ligne %d"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr "Thème à utiliser"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+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."
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Fuseau Horaire"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Impossible de se connecter à l'annuaire LDAP. Veuillez contacter l'administrateur du système."
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr "Fuseau horaire à utiliser"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
+msgstr "La location \"%s\" n'est pas présente dans le fichier de configuration"
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr "Installation des schémas"
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr "Validation des schémas"
+#: include/class_config.inc:899
+#, 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'. "
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr "Activer la validation des schémas lors de la connexion"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Toutes les catégories"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Préférences des mots de passe"
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Mon compte"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr "Méthode de chiffrement par défaut des mots de passe"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Sélectionnez pour lister les objets de type '%s'."
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr "Méthode de chiffrement à utiliser par défaut"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Sélectionner pour lister les objets contenant '%s'."
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr "Forcer la méthode de chiffrement par défaut"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Sélectionnez pour lister les objets qui ont '%s' activé"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr "Forcer l'utilisation de la méthode de chiffrement des mots de passe par défaut "
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Sélectionner pour chercher dans les sous arbres"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Longueur minimum des mots de passe"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Chercher dans les sous arbres"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr "Longueur minimum des mots de passe utilisateurs"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Cet objet sera supprimé !"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr "Différence minimum des mots de passe"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "L'objet '%s' sera supprimé !"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr "Nombre minimum de caractères différents par rapport au précédent mot de passe"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Cet objet sera supprimé : %s"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Activer l'expiration de compte"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "L'objet de type '%s' sera supprimé : %s"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr "Activation des tests sur les attributs cachés durant la connexion à FusionDirectory et force le renouvellement du mot de passe ou bloque le compte"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Cet objet sera supprimé : "
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr "Royaume SASL"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "L'objet de type '%s' sera supprimé :"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr "Opération Extérieur SASL"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Ces objets seront supprimés : %s"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr "Attribut à stocker dans l'attribut 'userPassword'"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Ces objets de type '%s' seront supprimés : %s"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr "Paramétrage de base"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer cet objet !"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Afficher les sommaires dans les listes"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer cet objet :"
 
-#: plugins/config/class_configInLdap.inc:162
-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 "Détermine si une barre d'état sera affichée en bas des listes pour indiquer les nombres et types des objets affichés"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ces objets :"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr "Verrouillage de l’édition"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Vous n'avez pas les droits nécessaires pour créer cet objet !"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr "Vérifie si une entrée en cours d'édition a été modifiée par une application autre que FusionDirectory dans le même temps"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Vous n'avez pas les droits nécessaires pour créer l'objet :"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr "Activer la journalisation"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Vous n'avez pas les droits nécessaires pour créer ces objets :"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr "Activer la journalisation coté FusionDirectory."
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Vous n'avez pas l'autorisation de modifier cet objet !"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr "Limite de taille LDAP"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgstr "Vous n'avez pas l'autorisation de modifier le champ \"%s\" de l'objet \"%s\""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr "Définit le nombre maximal d'objets LDAP retournés par défaut."
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
+msgstr "Vous n'avez pas l'autorisation de modifier l'objet:<br/>%s"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Connexion et session"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
+msgstr "Vous n'avez pas l'autorisation de modifier les objets :<br/>%s"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Attribut de connexion"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Vous n'avez pas l'autorisation de voir cet objet !"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr "Attribut LDAP utilisé comme identifiant lors de la connexion"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Vous n'avez pas l'autorisation de voir l'objet :"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Forcer les connexions chiffrées"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Vous n'avez pas l'autorisation de voir ces objets :"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr "Activer les vérifications PHP de sécurité pour forcer HTTPS lors de l’accès à l'interface web."
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Vous n'avez pas l'autorisation de déplacer cet objet !"
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Avertir si la session ne sera pas chiffrée"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Vous n'avez pas l'autorisation de déplacer l'objet :"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr "Affiche un avertissement pour indiquer l'usage du protocole HTTP au lieu de HTTPS."
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Vous n'avez pas l'autorisation de déplacer ces objets :"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Durée de vie de la session"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Informations de connexion"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr "Définit la durée d'une session en secondes (0 pour désactiver)."
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Impossible de se connecter à la base de données %s !"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr "Authentification HTTP de base"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Impossible de sélectionner la base de données %s !"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr "Utiliser le protocole d'authentification Basic HTTP au lieu du formulaire de connexion."
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Pas de serveur %s défini !"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr "authentification entêtes HTTP"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Impossible d'interroger la base de données %s !"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr "Utiliser d'authentification par entêtes HTTP au lieu du formulaire de connexion."
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Le champ '%s' contient un mot réservé !"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr "Nom de l’entête"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "La commande '%s', spécifiée comme hook du plugin '%s' n'existe pas !"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr "Nom de l'en-tête contenant l'identification utilisateur."
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "Le commande '%s' est invalide !"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr "Instantanés"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "la commande '%s' pour le plugin %s est invalide !"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Activer les instantanés"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "Commande '%s' (%s) invalide !"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr "Cela vous permet de sauver l’état de certaines entrées et de les restaurer plus tard"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "Commande '%s' (%s) pour le plugin %s invalide !"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Base pour les instantanés"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Impossible d'exécuter la commande '%s' !"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr "Branche LDAP dans laquelle les instantanés seront stockés."
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Impossible d'exécuter la commande '%s' pour le plugin %s !"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr "SSL"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "Impossible d'exécuter la commande '%s' (%s) !"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr "Clé privée"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Impossible d'exécuter la commande '%s' (%s) pour le plugin %s !"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr "Chemin vers la clef privée de FusionDirectory. Inutilisé actuellement."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "La valeur pour '%s' est trop grande !"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr "Chemin du certificat"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "'%s' doit être plus petit que %s !"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr "Chemin vers le certificat public de FusionDirectory. Inutilisé actuellement."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "La valeur pour '%s' est trop petite !"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr "Chemin du certificat CA"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "'%s' doit être %d ou plus !"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr "Chemin d'accès au CA public. Utilisé pour valider l'hôte du serveur Argonaut."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "'%s' dépend de '%s' - veuillez indiquer les deux valeurs !"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr "CAS"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Il existe déjà une entrée avec l'attribut '%s' dans le système !"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr "Activer CAS"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
+msgstr "L’entrée '%s' utilise déjà l'attribut '%s' !"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr "CAS sera utilisé à la place de la connexion LDAP"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Le champ obligatoire '%s' n'est pas rempli !"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr "Chemin du fichier contenant le certificat du CA public du serveur CAS"
+#: include/class_msgPool.inc:435
+msgid "Example:"
+msgstr "Exemple :"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Hôte"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
+msgstr "Le champ '%s' contient des caractères invalides"
+
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "'%s' n'est pas permis :"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr "Hôte du serveur CAS"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "'%s' ne sont pas autorisés !"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Port"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Extension PHP %s manquante !"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr "Port d’écoute du serveur CAS"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Annuler"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr "Contexte CAS"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Appliquer"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr "Contexte CAS à utiliser"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Sauver"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Stockage des utilisateurs et groupes"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Ajouter"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "Attribut pour le DN des utilisateurs"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Ajouter %s"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr "Attribut à utiliser pour le début du DN utilisateur"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Supprimer"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr "Modèle CN"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Supprimer %s"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr "Le modèle à utiliser pour construire le common name"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Éditer..."
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr "Règles de de nommage strictes"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Éditer %s..."
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr "Active la vérification stricte des noms d’utilisateur et de groupe"
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Retour"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr "Id minimum de groupe/utilisateur"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Ce compte n'a pas d'extensions %s valides !"
 
-#: plugins/config/class_configInLdap.inc:315
+#: include/class_msgPool.inc:582
+#, php-format
 msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr "L’id d’utilisateur ou de groupe minimum assignable pour éviter des risques de sécurité avec des id égales à 0."
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Ce compte a l’onglet %s activé. Vous pouvez le désactiver en cliquant sur le bouton ci-dessous."
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr "Hook de nouvel id"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Ce compte a l’onglet %s activé. Pour le désactiver vous devez au préalable désactiver l’onglet %s !"
 
-#: plugins/config/class_configInLdap.inc:320
+#: include/class_msgPool.inc:610
+#, php-format
 msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr "Un script à appeler pour trouver le prochain id libre pour les utilisateurs et groupes."
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Ce compte a l’onglet %s désactivé. Vous pouvez l’activer en cliquant ci dessous."
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr "Départ pour les ids d’utilisateur"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Ce compte a l’onglet %s désactivé. Pour l’activer, vous devez au préalable activer l’onglet %s !"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr "Où commencer à chercher pour un nouvel id d’utilisateur libre."
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Ajouter les paramètres %s"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr "Départ pour les ids de groupe"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Retirer les paramètres %s"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr "Point de départ pour rechercher un id de groupe libre"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Cliquez sur le bouton 'Éditer' ci-dessous pour changer les informations dans cette boite de dialogue"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr "Branche des utilisateurs"
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Janvier"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr "Branche où sont stockés les utilisateurs."
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Février"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr "Branche des groupes"
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Mars"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr "Branche où sont stockés les groupes."
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Avril"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr "Branche des rôles ACL"
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Mai"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr "Branche où sont stockés les rôles ACL."
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Juin"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Méthode d’allocation des ids"
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Juillet"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr "Méthode pour allouer les ids d’utilisateur et de groupe"
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Août"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Traditionnel"
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Septembre"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr "Réservoir d’ids Samba"
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Octobre"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr "Minimum des ids d’utilisateur du réservoir"
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Novembre"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr "Valeur minimum pour les ids d’utilisateur du réservoir"
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Décembre"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr "Maximum des ids d’utilisateur du réservoir"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Dimanche"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr "Valeur maximum pour les ids d’utilisateur du réservoir"
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Lundi"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr "Minimum des ids de groupe du réservoir"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Mardi"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr "Valeur minimum pour les ids de groupe du réservoir"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Mercredi"
+
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Jeudi"
+
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Vendredi"
+
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Samedi"
+
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "L’opération sur la base de données a échouée !"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr "Maximum des ids de groupe du réservoir"
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "lecture"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr "Valeur maximum pour les ids de groupe du réservoir"
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "ajout"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr "Restreindre les membres du rôle"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "modification"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr "Lorsqu'elle est activée uniquement les utilisateurs de la même branche ou les membres des groupes de la même branche peut être ajouté à un rôle."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "suppression"
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Débogage"
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "recherche"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr "Afficher les erreurs"
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "authentification"
 
-#: plugins/config/class_configInLdap.inc:387
-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 "Afficher les erreurs PHP en haut de l'écran. Cela doit être désactiver en environnement de production car des mots de passe peuvent être affichés."
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "L’opération '%s' LDAP a échoué !"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Durée maximale d'une requête LDAP"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "La requête LDAP a échoué !"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr "Arrêter les opérations LDAP si aucune réponse n'est obtenue dans un délai spécifié en secondes."
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objet"
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Journaliser les statistiques LDAP"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "Le téléchargement a échoué !"
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr "Stocker les statistiques LDAP via syslog. Cela aide à trouver les problèmes d'indexation et de mauvais filtres de recherche."
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Le téléchargement a échoué : %s"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Niveau de débogage"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "Erreur de communication avec le service d'infrastructure !"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr "Afficher certaines informations à chaque chargement de page."
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Erreur de communication avec le service d'infrastructure : %s"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Divers"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "Ce '%s' est en cours d'utilisation par : %s"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr "Hooks appelés quand des actions spécifiques surviennent"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "Ce '%s' est toujours en cours d’utilisation."
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr "onglet"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "Ce '%s' est en cours d’utilisation par les objets : %s"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr "Onglet concerné pas ce hook"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Le fichier '%s' n'existe pas !"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "mode"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Impossible d’ouvrir le fichier '%s' en lecture !"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr "Quand appeler cette commande"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "Impossible d'ouvrir le fichier '%s' en écriture !"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr "cmd"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "La valeur de '%s' est actuellement vide ou invalide, veuillez vérifier votre fichier de configuration !"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr "Commande qui sera appelée"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "Impossible de supprimer le fichier '%s' !"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Hooks"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "Impossible de créer le répertoire '%s' !"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr "Montrer le résultat du hook"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "Impossible de supprimer le répertoire '%s' !"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr "Si activé, après réussite du hook, sa sortie textuelle est affichée dans une fenêtre à l'utilisateur."
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Vérification du support pour %s"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr "Shells disponibles"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
+msgstr "Installer et activer le module PHP %s."
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr "Shells POSIX disponibles pour les utilisateurs de FusionDirectory"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
+msgstr "Installer et activer le module Pear %s."
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr "Afficher l’onglet ACL sur tous les objets"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "Impossible d’initialiser la classe '%s' ! Peut-être manque-t-il un plugin dans votre installation de FusionDirectory ?"
 
-#: plugins/config/class_configInLdap.inc:463
+#: include/class_msgPool.inc:884
 msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr "Pour des configurations ACL très spécifiques où vous avez besoin de donner des droits sur un seul objet."
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr "La base fournie n'est pas valide et a été réinitialisée à la valeur précédente !"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr "Liste des catégories de département"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
+msgstr "Création d’un instantané"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr "Les catégories disponibles dans le menu déroulant départements"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
+msgstr "DN de l’objet dont vous créez un instantané"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automatique"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Horodatage"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Récupération de mot de passe"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
+msgstr "Heure de création de l’instantané"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Paramètres pour la fonction de récupération de mot de passe"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
+msgstr "Raison"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Paramètres de récupération de mot de passe"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
+msgstr "Raison pour la création de cet instantané"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Activer la récupération de mot de passe"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr "Activer ou non la fonctionnalité de récupération de mot de passe"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr "Restaurer"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Adresse de courriel de l'émetteur"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
+msgstr "Restauration d’instantanés"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "Adresse de courriel de laquelle les messages seront envoyés"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
+msgstr "Instantanés"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Durée de validité du lien (minutes)"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
+msgstr "Instantanés existants pour cet objet"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr "Nombre de minutes avant l'expiration du lien"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Fichier"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr "Chaine de caractères aléatoires pour les jetons"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Ligne"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Ceci est juste une mesure de sécurité, vous pouvez mettre ce que vous voulez ici, même des caractères au hasard"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "Erreur PHP"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Autoriser des adresses de messagerie alternatives"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "classe"
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Les utilisateurs pourront entrer une adresse de messagerie alternative pour récupérer leur mot de passe"
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "fonction"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "Premier message"
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "statique"
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Sujet"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "méthode"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Sujet du premier message"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Trace"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Lien de réinitialisation du mot de passe"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Type"
 
-#: plugins/config/class_recoveryConfig.inc:90
-#, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr "Corps du message (le premier %s est l'identifiant, le second est le lien)"
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Arguments"
 
-#: plugins/config/class_recoveryConfig.inc:91
-#, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
-msgstr "Corps du premier message, envoyé lorsque l'utilisateur demande un nouveau mot de passe. Utilisez %s pour l'identifiant et le lien de récupération."
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "La création de cette page a occasionné des erreurs d'après l'interpréteur PHP !"
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Bonjour,\n\nVoici vos informations :\n- Identifiant : %s\n- Lien : %s\n\nCeci est seulement valide pour 10 minutes"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Envoyer le rapport de bugs à l'équipe FusionDirectory"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Second message"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Envoyer un rapport de bug"
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Sujet du second message"
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Afficher/Cacher l'information"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Réinitialisation du mot de passe réussie !"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Avertissement de performance"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
 #, php-format
-msgid "Body (%s is login)"
-msgstr "Corps du message (%s est l'identifiant)"
+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 !"
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:846
 #, php-format
 msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr "Corps du second message, envoyé pour confirmer que le mot de passe a été changé. Utilisez %s pour l’identifiant de l'utilisateur."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr "Impossible de créer automatiquement des sous-arbres avec le RDN '%s' : object class non trouvée !"
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:882
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Bonjour,\n\nVotre mot de passe a été changé. \nVotre identifiant de connexion est toujours %s."
-
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
-msgstr "Configuration du tableau de bord"
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgstr "Impossible de créer automatiquement des sous-arbres avec le RDN '%s' : non supporté"
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr "Configuration du plugin Tableau de bord pour FusionDirectory"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "lors de l'opération sur '%s' en utilisant le serveur LDAP '%s'"
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr "Tableau de bord - Schéma de nommage"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "lors de l'opération sur le serveur LDAP %s"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr "Nombre de chiffres"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
+msgstr "proc_open a échoué lors de l’exécution de ldapsearch"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr "Le nombre de chiffres à utiliser après le préfixe"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr "Erreur ligne %s, la première ligne d'une entrée ne peut pas commencer par un espace"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr "Préfixes"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
+msgstr "Erreur ligne %s, les références à un fichier externe ne sont pas prises en charge."
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr "Préfixes à utiliser pour les identifiants de machines"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr "Erreur ligne %s, l'attribut  \"%s\" n'a pas de valeur"
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
-msgstr "Tableau de bord - Utilisateurs expirés"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
+msgstr "Erreur ligne %s, une entrée ne peut avoir qu'un seul dn"
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
-msgstr "Nombre de jours"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr "Erreur ligne %s, une d'entrée doit commencer par le dn"
 
-#: plugins/config/class_dashBoardConfig.inc:62
+#: include/class_ldap.inc:1170
+#, php-format
 msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
-msgstr "Le nombre de jours avant expiration nécessaires pour qu’un compte apparaisse dans la liste «Prochains comptes expirés» du tableau de bord"
-
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Plugins"
-
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr "Configuration des plugins"
-
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Haut"
-
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Bas"
-
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
-msgstr "Trier vers le haut"
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Erreur lors de l'importation du dn : '%s', veuillez vérifier votre fichier LDIF à partir de la ligne %s !"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
-msgstr "Trier vers le bas"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Veuillez sélectionner les entrées désirées"
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Sélectionner tout"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nom"
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Erreur"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Description"
 
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "créé par"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
+msgstr "Groupe POSIX %s"
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Aller au département racine"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
+msgstr "Rôle %s"
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Racine"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
+msgstr "Groupe %s"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Monter d'un département"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Groupe de l’utilisateur"
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
-msgstr "Aller au département de l’utilisateur"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Aucun"
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Accueil"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Inconnu"
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Recharger la liste"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Éditer"
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Soumettre"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Supprimer"
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Copier"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "Pas de définition de plugin pour l'initialisation de '%s', veuillez vérifier votre fichier de configuration."
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Couper"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "L'effacement a été interrompu par le plugin '%s': %s"
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Coller"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr "Déplacer de \"%s\" à \"%s\" a échoué"
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Couper cette entrée"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "O"
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Copier cette entrée"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
+msgstr "KiO"
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Restaurer des instantanés"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
+msgstr "MiO"
 
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Exporter la liste"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr "GiO"
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Restaurer l’instantané"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
+msgstr "TiO"
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Créer un instantané"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "secondes"
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Créer un nouvel instantané depuis cet objet"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "minutes"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Erreur de filtre"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "heures"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "Le filtre est incomplet !"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "jours"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Erreur de permission"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr "Depuis un modèle"
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/class_simpleManagement.inc:243
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Vous n'êtes pas autorisé à créer un nouvel instantané pour %s."
+msgid "%s template"
+msgstr "%s modèle"
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Vous n'êtes pas autorisé à restaurer un instantané de %s."
+msgid "Show %s"
+msgstr "Afficher les '%s'"
 
-#: include/class_management.inc:679
-#, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "Pas de déclaration d’onglets pour '%s' dans votre fichier de configuration. Impossible d'initialiser le plugin !"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr "SANS TITRE"
 
-#: include/class_config.inc:156
-#, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "Erreur XML dans fusiondirectory.conf : %s à la ligne %d"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr "Paramètres du modèle"
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Erreur de configuration"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr "Le nom de ce modèle "
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr "Seulement l'onglet principal peut générer un dn"
+
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
-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."
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr "Impossible de générer le dn: pas de classe d’onglet parente pour \"%s\""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Erreur LDAP"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr "Impossible de générer le dn : pas d’infos sur le type d’objet pour la classe d’onglet \"%s\""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Impossible de se connecter à l'annuaire LDAP. Veuillez contacter l'administrateur du système."
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Erreur lors de la sauvegarde"
 
-#: include/class_config.inc:357
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
-msgstr "La location \"%s\" n'est pas présente dans le fichier de configuration"
+msgid "There is already an entry with the same dn : %s"
+msgstr "Il existe déjà une entrée avec le même dn : %s"
 
-#: include/class_config.inc:885
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
+msgid "The entry %s is not existing"
+msgstr "L'entrée %s n'existe pas"
+
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
 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."
+"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 "L'objet a changé depuis son ouverture dans FusionDirectory. Toutes les modifications qui peuvent être faites par d'autres seront perdus si vous enregistrez cette entrée!"
 
-#: include/class_config.inc:898
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, 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'. "
+msgid "Unknown field \"%s\""
+msgstr "Champ inconnu \"%s\""
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Toutes les catégories"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
+msgstr "%s (requis)"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Mon compte"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr "Base de l'objet"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Avertissement de performance"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+msgstr "La valeur \"%s\" pour le champ \"%s\" est pas dans la liste des choix possibles"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-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 !"
+msgid "Cannot read uploaded file: %s"
+msgstr "Impossible de lire le fichier importé : '%s'"
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Erreur interne"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "Le fichier est vide"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "fichier non trouvé"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "le fichier n'est pas lisible"
 
-#: include/class_ldap.inc:846
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
+msgid "%s (%d bytes)"
+msgstr "%s (%d octets)"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Téléverser"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Télécharger"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
-msgstr "Impossible de créer automatiquement des sous-arbres avec le RDN '%s' : object class non trouvée !"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr "Impossible de sauver la photo de l'utilisateur, FusionDirectory a besoin que la bibliothèque php \"imagick\" soit installée pour cela."
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
-msgstr "Impossible de créer automatiquement des sous-arbres avec le RDN '%s' : non supporté"
+msgid "Invalid value for %s"
+msgstr "Valeur invalide pour %s"
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "lors de l'opération sur '%s' en utilisant le serveur LDAP '%s'"
+msgid "Error, incorrect date: %s"
+msgstr "Erreur, date incorrecte  %s"
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "lors de l'opération sur le serveur LDAP %s"
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
-msgstr "proc_open a échoué lors de l’exécution de ldapsearch"
+msgid "An integer between %d and %d"
+msgstr "Un nombre entier entre %d et %d"
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
-msgstr "Erreur ligne %s, la première ligne d'une entrée ne peut pas commencer par un espace"
+msgid "An integer larger than %d"
+msgstr "Un nombre entier supérieur à %d"
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
-msgstr "Erreur ligne %s, les références à un fichier externe ne sont pas prises en charge."
+msgid "An integer smaller than %d"
+msgstr "Un nombre entier inférieur à %d"
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
-msgstr "Erreur ligne %s, l'attribut  \"%s\" n'a pas de valeur"
+msgid "A float between %f and %f"
+msgstr "Un nombre à virgule entre %f et %f"
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
-msgstr "Erreur ligne %s, une entrée ne peut avoir qu'un seul dn"
+msgid "A float larger than %f"
+msgstr "Un nombre à virgule supérieur à %f"
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
-msgstr "Erreur ligne %s, une d'entrée doit commencer par le dn"
+msgid "A float smaller than %f"
+msgstr "Un nombre à virgule inférieur à %f"
+
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr "Il y a eu un problème lors de la décompression de l’instantané"
 
-#: include/class_ldap.inc:1194
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Erreur lors de l'importation du dn : '%s', veuillez vérifier votre fichier LDIF à partir de la ligne %s !"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr "Dépendance récursive dans les champs de modèle: \"%1$s\" ne peut pas dépendre de \"%2$s\" vu que  \"%2$s\" dépend déjà \"%1$s\""
 
-#: include/class_msgPool.inc:43
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Sélectionnez pour lister les objets de type '%s'."
+msgid "Tab \"%s\""
+msgstr "Onglet \"%s\""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Sélectionner pour lister les objets contenant '%s'."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Sélectionnez pour lister les objets qui ont '%s' activé"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Gère les listes de contrôle d'accès (ACL)"
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Sélectionner pour chercher dans les sous arbres"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Rôles ACL"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Chercher dans les sous arbres"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr "Type d'ACL inconnu '%s'!\nVous devez exécuter \"fusiondirectory-setup --migrate-acls\" pour migrer vos acls au nouveau format."
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Cet objet sera supprimé !"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Entrée inconnue '%s' !"
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "L'objet '%s' sera supprimé !"
+msgid "All users"
+msgstr "Tous les utilisateurs"
 
-#: include/class_msgPool.inc:74
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
+
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Cet objet sera supprimé : %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Le répertoire '%s' spécifié comme répertoire de compilation est inaccessible !"
 
-#: include/class_msgPool.inc:76
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "L'objet de type '%s' sera supprimé : %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+msgstr "Attention: <a href=%s\"> La session n'est pas chiffrée !<a>"
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Cet objet sera supprimé : "
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
+msgstr "Attention: La durée de validité des sessions configurée dans votre fusiondirectory.conf sera remplacée par celle définie dans votre php.ini."
 
-#: include/class_msgPool.inc:83
+#: html/index.php:150
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "L'objet de type '%s' sera supprimé :"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"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."
 
-#: include/class_msgPool.inc:87
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Erreur Smarty"
+
+#: html/index.php:173
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Ces objets seront supprimés : %s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
+msgstr "Le répertoire \"%s\" spécifié comme répertoire de compilation est inaccessible !"
 
-#: include/class_msgPool.inc:89
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Votre session FusionDirectory a expiré !"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr "Votre IP a changé !"
+
+#: html/index.php:214
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Ces objets de type '%s' seront supprimés : %s"
+msgid "Invalid plugin parameter \"%s\"!"
+msgstr "Paramètre de plugin «%s» invalide !"
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer cet objet !"
+#: html/index.php:217
+msgid "No session found!"
+msgstr "Aucune session trouvée !"
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer cet objet :"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr "La vérification des schémas LDAP a signalé des erreurs :"
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ces objets :"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr "La vérification des schémas LDAP a signalé des erreurs :"
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Vous n'avez pas les droits nécessaires pour créer cet objet !"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Veuillez indiquer un nom d’utilisateur valide !"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Vous n'avez pas les droits nécessaires pour créer l'objet :"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Veuillez introduire votre mot de passe !"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Vous n'avez pas les droits nécessaires pour créer ces objets :"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Veuillez vérifier le nom d'utilisateur et le mot de passe."
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Vous n'avez pas l'autorisation de modifier cet objet !"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Compte verrouillé. Veuillez contacter votre administrateur système !"
 
-#: include/class_msgPool.inc:151
+#: html/index.php:454
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
-msgstr "Vous n'avez pas l'autorisation de modifier le champ \"%s\" de l'objet \"%s\""
+msgid "No value found in HTTP header \"%s\""
+msgstr "Aucune valeur trouvée dans l'entête HTTP \"%s\""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:475
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
-msgstr "Vous n'avez pas l'autorisation de modifier l'objet:<br/>%s"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr "L'utilisateur \"%s\" mentionné dans l’entête n'existe pas dans l'annuaire LDAP "
 
-#: include/class_msgPool.inc:161
+#: html/index.php:485
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
-msgstr "Vous n'avez pas l'autorisation de modifier les objets :<br/>%s"
-
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Vous n'avez pas l'autorisation de voir cet objet !"
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Vous n'avez pas l'autorisation de voir l'objet :"
-
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Vous n'avez pas l'autorisation de voir ces objets :"
-
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Vous n'avez pas l'autorisation de déplacer cet objet !"
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr "L'utilisateur \"%s\" mentionné dans l’entête correspond à plusieurs personnes  dans l'annuaire LDAP "
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Vous n'avez pas l'autorisation de déplacer l'objet :"
+#: html/index.php:547
+#, 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 "
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Vous n'avez pas l'autorisation de déplacer ces objets :"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr "L'utilisateur CAS \"%s\" correspond à plusieurs personnes  dans l'annuaire LDAP "
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Informations de connexion"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Votre navigateur a les cookies désactivés. Veuillez activer les cookies et recharger cette page avant de vous connecter !"
 
-#: include/class_msgPool.inc:225
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Impossible de se connecter à la base de données %s !"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "Le fichier de configuration de FusionDirectory %s/%s ne peut être lu. Abandon."
 
-#: include/class_msgPool.inc:245
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "Cannot select %s database!"
-msgstr "Impossible de sélectionner la base de données %s !"
+msgid "Did not find an account with login \"%s\""
+msgstr "Aucun compte utilisateur trouvé avec l'identifiant \"%s\""
 
-#: include/class_msgPool.inc:255
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "No %s server defined!"
-msgstr "Pas de serveur %s défini !"
+msgid "Found multiple accounts with login \"%s\""
+msgstr "Plusieurs comptes trouvés avec l’identifiant \"%s\""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
-msgstr "Impossible d'interroger la base de données %s !"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Adresse de courriel"
 
-#: include/class_msgPool.inc:285
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Le champ '%s' contient un mot réservé !"
+msgid "There is no account using email \"%s\""
+msgstr "Il n'y a pas de compte qui utilise le courriel \"%s\""
 
-#: include/class_msgPool.inc:297
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "La commande '%s', spécifiée comme hook du plugin '%s' n'existe pas !"
+msgid "There are several accounts using email \"%s\""
+msgstr "Il y a plusieurs comptes qui utilisent le courriel \"%s\""
 
-#: include/class_msgPool.inc:313
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "Le commande '%s' est invalide !"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr "L'utilisateur correspondant au courriel \"%s\" est verrouillé. Veuillez contacter votre administrateur système !"
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "la commande '%s' pour le plugin %s est invalide !"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Contactez votre administrateur système, il y a eu un problème avec le serveur de courriel"
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "Commande '%s' (%s) invalide !"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr "Le jeton n'est pas valide"
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "Commande '%s' (%s) pour le plugin %s invalide !"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr "Un problème est survenu avec le serveur, le courriel de confirmation n'a pas été envoyé"
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Impossible d'exécuter la commande '%s' !"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Configuration de PHP"
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Impossible d'exécuter la commande '%s' pour le plugin %s !"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Erreur fatale : «Register globals» est activé. FusionDirectory ne permettra pas aux utilisateurs de se connecter tant que ceci n'est pas corrigé par un administrateur."
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "Impossible d'exécuter la commande '%s' (%s) !"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Changement de mot de passe"
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Impossible d'exécuter la commande '%s' (%s) pour le plugin %s !"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Votre mot de passe va bientôt expirer, veuillez changer votre mot de passe !"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "La valeur pour '%s' est trop grande !"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr "Votre mot de passe a expiré, veuillez changer votre mot de passe."
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "'%s' doit être plus petit que %s !"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "Plus de mémoire disponible !"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "La valeur pour '%s' est trop petite !"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Les vérifications des ACL de l'utilisateur ont été désactivés"
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "'%s' doit être %d ou plus !"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Plugin"
 
-#: include/class_msgPool.inc:393
+#: html/main.php:290
 #, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "'%s' dépend de '%s' - veuillez indiquer les deux valeurs !"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr "Erreur Fatale : Impossible de trouver une définition pour le plugin '%s' ! ('%s' n'est pas un fichier) !"
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Il existe déjà une entrée avec l'attribut '%s' dans le système !"
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Erreur de configuration"
 
-#: include/class_msgPool.inc:406
+#: html/main.php:306
 #, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
-msgstr "L’entrée '%s' utilise déjà l'attribut '%s' !"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Erreur fatale : toutes les variables POST n’ont pas été transférées par PHP - veuillez avertir votre administrateur !"
 
-#: include/class_msgPool.inc:417
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Le champ obligatoire '%s' n'est pas rempli !"
+msgid "Welcome %s!"
+msgstr "Bienvenue %s !"
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
-msgstr "Exemple :"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Références"
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
-msgstr "Le champ '%s' contient des caractères invalides"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "'%s' n'est pas permis :"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Éditer les paramètres POSIX"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "'%s' ne sont pas autorisés !"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Répertoire Home"
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Extension PHP %s manquante !"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "Chemin du répertoire \"home\" de cet utilisateur"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Annuler"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr "Shell à utiliser lors de la connexion de l’utilisateur"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Appliquer"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Groupe principal"
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Sauver"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr "Groupe principal de cet utilisateur"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Ajouter"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr "Statut du compte unix de l'utilisateur"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Ajouter %s"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr "Forcer l’id d’utilisateur/groupe"
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Supprimer %s"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr "Force les valeurs des ids d’utilisateur et de groupe pour cet utilisateur."
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr "Id d’utilisateur"
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr "Id d’utilisateur à utiliser pour cet utilisateur"
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr "Id de groupe"
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr "Id de groupe à utiliser pour cet utilisateur"
+
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Appartenance aux groupes"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Éditer..."
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Compte"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Éditer %s..."
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "L'utilisateur doit changer son mot de passe lors de sa première connexion"
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Retour"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr "L'utilisateur doit changer son mot de passe lors de la première connexion (il est nécessaire de remplir le champ «Délai»)"
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Ce compte n'a pas d'extensions %s valides !"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr "Délai minimum entre les changements de mot de passe (jours)"
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:164
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Ce compte a l’onglet %s activé. Vous pouvez le désactiver en cliquant sur le bouton ci-dessous."
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr "L'utilisateur ne sera pas habilité à changer son mot de passe avant ce nombre de jour (laisser vide pour désactiver)"
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr "Délai avant de forcer le changement de mot de passe (en jours)"
+
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Ce compte a l’onglet %s activé. Pour le désactiver vous devez au préalable désactiver l’onglet %s !"
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr "L'utilisateur sera forcé de changer son mot de passe après ce nombre de jours (laisser vide pour désactiver)"
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr "Date d'expiration du mot de passe"
+
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Ce compte a l’onglet %s désactivé. Vous pouvez l’activer en cliquant ci dessous."
+"Date after which this user password will expire (leave empty to disable)"
+msgstr "Date après laquelle le mot de passe de l'utilisateur va expirer (laisser vide pour désactiver)"
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr "Délai d'inactivité avant de désactiver l'utilisateur (en jours)"
+
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Ce compte a l’onglet %s désactivé. Pour l’activer, vous devez au préalable activer l’onglet %s !"
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr "Délai maximum d'inactivité après l'expiration du mot de passe avant que l'utilisateur soit désactivé (laisser vide pour désactiver)"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Ajouter les paramètres %s"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr "Délai d'avertissement de l'utilisateur avant l'expiration de son mot de passe (en jours)"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "Retirer les paramètres %s"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr "L'utilisateur sera averti à partir de ce nombre de jours restant avant l'expiration de son mot de passe (laisser vide pour désactiver)"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Cliquez sur le bouton 'Éditer' ci-dessous pour changer les informations dans cette boite de dialogue"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Système de confiance"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Janvier"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Mode de confiance"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Février"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr "Type d'autorisation pour ces hôtes"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Mars"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "désactivé"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Avril"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "accès complet"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Mai"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "permettre l'accès a ces hôtes"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Juin"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Autoriser cet utilisateur à se connecter uniquement sur cette liste d’hôtes"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Juillet"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automatique"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Août"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "expiré"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Septembre"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "temps de grâce actif"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Octobre"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "actif"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Novembre"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "mot de passe expiré"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Décembre"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "mot de passe non modifiable"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Dimanche"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Lundi"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Mardi"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Le temps d'attente du verrou a été dépassé. Verrou ignoré !"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Mercredi"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr "Groupe de l'utilisateur %s"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Jeudi"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr "Groupes et rôles"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Vendredi"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr "Éditer les groupes et rôles de l’utilisateur"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Samedi"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr "Appartenance aux groupes"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "L’opération sur la base de données a échouée !"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr "Appartenance aux rôles"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "lecture"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Chiffrement des mots de passe"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "ajout"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Méthode de chiffrement des mots de passe"
+
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Mot de passe"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "modification"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Mot de passe (Laissez vide si vous ne voulez pas changer)"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "suppression"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Mot de passe (de nouveau)"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "recherche"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr "Veuillez réintroduire le mot de passe pour éviter les erreurs"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "authentification"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Utilisateur"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "L’opération '%s' LDAP a échoué !"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr "Information du compte utilisateur"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "La requête LDAP a échoué !"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr "Compte utilisateur"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "Le téléchargement a échoué !"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Informations personnelles"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Le téléchargement a échoué : %s"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Nom de famille"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "Erreur de communication avec le service d'infrastructure !"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr "Nom de famille de cet utilisateur"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Erreur de communication avec le service d'infrastructure : %s"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Prénom"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "Ce '%s' est en cours d'utilisation par : %s"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr "Prénom de cet utilisateur"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "Ce '%s' est toujours en cours d’utilisation."
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr "Courte description de l'utilisateur"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "Ce '%s' est en cours d’utilisation par les objets : %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr "Photo"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Le fichier '%s' n'existe pas !"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr "L'avatar pour cet utilisateur"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Impossible d’ouvrir le fichier '%s' en lecture !"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr "Information de contact organisationnelles"
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Impossible d'ouvrir le fichier '%s' en écriture !"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Lieu"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "La valeur de '%s' est actuellement vide ou invalide, veuillez vérifier votre fichier de configuration !"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "État"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Impossible de supprimer le fichier '%s' !"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Adresse"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "Impossible de créer le répertoire '%s' !"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr "Adresse postale professionnelle"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "Impossible de supprimer le répertoire '%s' !"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "No. de bureau"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Vérification du support pour %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Numéro du bureau"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Installer et activer le module PHP %s."
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Téléphone"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr "Installer et activer le module Pear %s."
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr "Numéro de téléphone professionnel"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "Impossible d’initialiser la classe '%s' ! Peut-être manque-t-il un plugin dans votre installation de FusionDirectory ?"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Mobile"
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr "La base fournie n'est pas valide et a été réinitialisée à la valeur précédente !"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr "Numéro de mobile professionnel "
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "Erreur fatale : pas d’emplacement défini pour les classes - veuillez exécuter '%s' pour régler le problème"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Bip"
 
-#: include/functions.inc:142
-#, php-format
-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"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr "Numéro de bip professionnel"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Erreur fatale"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr "Numéro de fax professionnel"
 
-#: include/functions.inc:583
-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."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Site web"
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Erreur d'authentification"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr "Site web personnel"
 
-#: include/functions.inc:617
-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."
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr "Compte utilisateur"
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Erreur lors de l'ajout d'un verrou. Contactez les développeurs !"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr "Identifiant de l'utilisateur"
 
-#: include/functions.inc:678
-#, 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 !"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr "Mot de passe de l'utilisateur"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "Le serveur LDAP a retourné : %s"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr "Informations de contact personnelles"
 
-#: include/functions.inc:859
-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."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Nom à afficher"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "La taille limite de %d entrées est dépassée !"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr "Nom de l'utilisateur tel qu'il devrait apparaître. Utilisé par le carnet d'adresse Exchange."
 
-#: include/functions.inc:1132
-#, 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"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr "Adresse postale"
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Configurer"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Adresse postale personnelle"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "incomplet"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Numéro de téléphone privé"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Continuer malgré tout"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Numéro de téléphone privé"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Éditer malgré tout"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Informations organisationnelles"
 
-#: include/functions.inc:1563
-#, 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"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Titre"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Entrées par page"
+#: plugins/personal/generic/class_user.inc:415
+msgid ""
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr "Titre d'une personne dans leur contexte organisationnel. Chaque titre est une valeur de cet attribut multivalué"
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Appliquer le filtre"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organisme"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr "%sO"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Département"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr "%sKiO"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
+msgstr "Département auquel l'utilisateur appartient"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr "%sMiO"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Numéro du département"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
-msgstr "%sGiO"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Numéro du département"
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
-msgstr "%sTiO"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "No. de l'employé"
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
-msgstr "%sPiO"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Numéro de l'employé"
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
-msgstr "%sEiO"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Type d'employé"
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
-msgstr "%sZiO"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Responsable"
 
-#: include/functions.inc:2125
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sYiB"
-msgstr "%sYiO"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgstr "La ppolicy \"%s\" n’a pas été trouvée dans le LDAP !"
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr "Vous n’êtes pas autorisé à changer votre mot de passe"
 
-#: include/functions.inc:2294
+#: plugins/personal/generic/class_user.inc:621
 #, 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."
+msgid "You must wait %d seconds before changing your password again"
+msgstr "Vous devez attendre %d secondes avant de changer votre mot de passe à nouveau"
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "Impossible d'écrire dans le fichier de révision !"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr "Le mot de passe est dans l'historique des mots de passe récents"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "Impossible de lire le fichier de révision !"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr "Le nouveau mot de passe est le même que l’ancien"
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr "'nextIdHook' n'est pas disponible. Utilisation de la base par défaut !"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Vous devez spécifier votre mode de passe actuel pour continuer."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Avertissement LDAP"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr "Les mots de passe entrés dans les champs 'Nouveau mot de passe' et celui dans le champ 'Répéter le nouveau mot de passe' ne concordent pas."
 
-#: include/functions.inc:2586
-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 !"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nouveau mot de passe"
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
-msgstr "schéma principal de FusionDirectory"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Le nouveau et l'ancien mot de passe sont trop similaires."
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
-msgstr "Schéma utilisé pour stocker la configuration de FusionDirectory"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Le nouveau mot de passe est trop court."
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
-msgstr "Utilisé pour stocker l'autorisation de connexion chez les utilisateurs ou les groupes."
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "Le mot de passe contient probablement des caractères Unicode qui sont problématique"
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
-msgstr "Utilisé pour stocker les modèles"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr "Statistiques sur les utilisateurs"
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr "Utilisé pour stocker des informations POSIX."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
+msgstr "Statistiques utilisateurs"
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
-msgstr "Object class obligatoire \"%s\" manquante !"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
+msgstr "Statistiques des groupes"
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
-msgstr "Object class facultative \"%s\" manquante !"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
+msgstr "Comptes expirés"
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Classe(s) disponible(s)"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
+msgstr "Tableau de bord"
 
-#: include/functions.inc:2668
-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."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr "Statistiques et informations diverses"
 
-#: include/functions.inc:2669
-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»)"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
+msgstr "Rapports"
 
-#: include/functions.inc:2672
-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é."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr "Statistiques"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
-msgstr "L’objectClass «posixGroup» doit être structurelle («STRUCTURAL»)"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Récupération de mot de passe"
+
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Paramètres pour la fonction de récupération de mot de passe"
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "Impossible d'allouer un ID libre :"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Paramètres de récupération de mot de passe"
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "Méthode d'allocation des id inconnue !"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Activer la récupération de mot de passe"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "%sPoolMin >= %sPoolMax !"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
+msgstr "Activer ou non la fonctionnalité de récupération de mot de passe"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "sambaUnixIdPool n'est pas unique !"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Adresse de courriel de l'émetteur"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "Pas d’ID disponibles !"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "Adresse de courriel de laquelle les messages seront envoyés"
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "Nombre maximum d'essais dépassé !"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Durée de validité du lien (minutes)"
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Impossible d'assigner un ID !"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr "Nombre de minutes avant l'expiration du lien"
 
-#: include/functions.inc:3345
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr "Chaine de caractères aléatoires pour les jetons"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "Le canal demandé n'existe pas ! Veuillez contacter votre administrateur système."
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Ceci est juste une mesure de sécurité, vous pouvez mettre ce que vous voulez ici, même des caractères au hasard"
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr "modèle d'objet, utilisé pour créer plusieurs objets avec des valeurs similaires"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Autoriser des adresses de messagerie alternatives"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Nom du modèle"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Les utilisateurs pourront entrer une adresse de messagerie alternative pour récupérer leur mot de passe"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Tous les objets dans cette catégorie"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "Premier message"
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Fichier"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Sujet"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Ligne"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Sujet du premier message"
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "Erreur PHP"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Lien de réinitialisation du mot de passe"
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "classe"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr "Corps du message (le premier %s est l'identifiant, le second est le lien)"
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "fonction"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr "Corps du premier message, envoyé lorsque l'utilisateur demande un nouveau mot de passe. Utilisez %s pour l'identifiant et le lien de récupération."
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "statique"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Bonjour,\n\nVoici vos informations :\n- Identifiant : %s\n- Lien : %s\n\nCeci est seulement valide pour 10 minutes"
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "méthode"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Second message"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Trace"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Sujet du second message"
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Type"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Réinitialisation du mot de passe réussie !"
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Arguments"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr "Corps du message (%s est l'identifiant)"
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "La création de cette page a occasionné des erreurs d'après l'interpréteur PHP !"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr "Corps du second message, envoyé pour confirmer que le mot de passe a été changé. Utilisez %s pour l’identifiant de l'utilisateur."
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Envoyer le rapport de bugs à l'équipe FusionDirectory"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Bonjour,\n\nVotre mot de passe a été changé. \nVotre identifiant de connexion est toujours %s."
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Envoyer un rapport de bug"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Configuration"
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Afficher/Cacher l'information"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr "Configuration de FusionDirectory"
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Veuillez corriger l'erreur ci dessus et recharger la page."
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr "Écran de configuration de FusionDirectory"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
-msgstr "Création d’un instantané"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Thème et apparence"
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
-msgstr "DN de l’objet dont vous créez un instantané"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Langue"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Horodatage"
+#: 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 "Langue de l’application. Automatique utilisera la langue demandée par le navigateur. Ce paramètre peut être configuré par utilisateur."
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
-msgstr "Heure de création de l’instantané"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Thème"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
-msgstr "Raison"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr "Thème à utiliser"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
-msgstr "Raison pour la création de cet instantané"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Fuseau Horaire"
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr "Fuseau horaire à utiliser"
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr "Restaurer"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr "Installation des schémas"
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
-msgstr "Restauration d’instantanés"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
+msgstr "Validation des schémas"
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
-msgstr "Instantanés existants pour cet objet"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr "Activer la validation des schémas lors de la connexion"
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Page"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Préférences des mots de passe"
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr "Méthode de chiffrement par défaut des mots de passe"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "Pas d'exportation en PDF possible, la bibliothèque FPDF n'est pas installée."
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr "Méthode de chiffrement à utiliser par défaut"
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr "Forcer la méthode de chiffrement par défaut"
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "dans"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr "Forcer l'utilisation de la méthode de chiffrement des mots de passe par défaut "
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "en ligne"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Longueur minimum des mots de passe"
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Erreur XML"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr "Longueur minimum des mots de passe utilisateurs"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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 "L'objet a changé depuis son ouverture dans FusionDirectory. Toutes les modifications qui peuvent être faites par d'autres seront perdus si vous enregistrez cette entrée!"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr "Différence minimum des mots de passe"
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr "Dépendance récursive dans les champs de modèle: \"%1$s\" ne peut pas dépendre de \"%2$s\" vu que  \"%2$s\" dépend déjà \"%1$s\""
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr "Nombre minimum de caractères différents par rapport au précédent mot de passe"
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
-msgstr "Onglet \"%s\""
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Activer l'expiration de compte"
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Tout annuler"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
+msgstr "Activation des tests sur les attributs cachés durant la connexion à FusionDirectory et force le renouvellement du mot de passe ou bloque le compte"
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Impossible de coller"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
+msgstr "Royaume SASL"
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
-msgstr "Paramètres du modèle"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr "Opération Extérieur SASL"
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
-msgstr "Le nom de ce modèle "
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
+msgstr "Attribut à stocker dans l'attribut 'userPassword'"
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
-msgstr "Seulement l'onglet principal peut générer un dn"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
+msgstr "Paramétrage de base"
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
-msgstr "Impossible de générer le dn: pas de classe d’onglet parente pour \"%s\""
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Afficher les sommaires dans les listes"
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:162
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
-msgstr "Impossible de générer le dn : pas d’infos sur le type d’objet pour la classe d’onglet \"%s\""
+"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 "Détermine si une barre d'état sera affichée en bas des listes pour indiquer les nombres et types des objets affichés"
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Erreur lors de la sauvegarde"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr "Verrouillage de l’édition"
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "Il existe déjà une entrée avec le même dn : %s"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr "Vérifie si une entrée en cours d'édition a été modifiée par une application autre que FusionDirectory dans le même temps"
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "L'entrée %s n'existe pas"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr "Activer la journalisation"
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
-msgstr "Champ inconnu \"%s\""
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr "Activer la journalisation coté FusionDirectory."
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Veuillez sélectionner les entrées désirées"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr "Limite de taille LDAP"
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr "%s modèle"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr "Définit le nombre maximal d'objets LDAP retournés par défaut."
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
-msgstr "Afficher les '%s'"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Connexion et session"
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr "Groupe POSIX %s"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Attribut de connexion"
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
-msgstr "Rôle %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
+msgstr "Attribut LDAP utilisé comme identifiant lors de la connexion"
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
-msgstr "Groupe %s"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Forcer les connexions chiffrées"
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Groupe de l’utilisateur"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
+msgstr "Activer les vérifications PHP de sécurité pour forcer HTTPS lors de l’accès à l'interface web."
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Aucun"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Avertir si la session ne sera pas chiffrée"
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Inconnu"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr "Affiche un avertissement pour indiquer l'usage du protocole HTTP au lieu de HTTPS."
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "O"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Durée de vie de la session"
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
-msgstr "KiO"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr "Définit la durée d'une session en secondes (0 pour désactiver)."
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
-msgstr "MiO"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr "Authentification HTTP de base"
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
-msgstr "GiO"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
+msgstr "Utiliser le protocole d'authentification Basic HTTP au lieu du formulaire de connexion."
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
-msgstr "TiO"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
+msgstr "authentification entêtes HTTP"
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "secondes"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
+msgstr "Utiliser d'authentification par entêtes HTTP au lieu du formulaire de connexion."
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "minutes"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
+msgstr "Nom de l’entête"
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "heures"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
+msgstr "Nom de l'en-tête contenant l'identification utilisateur."
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "jours"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Activer les instantanés"
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (requis)"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr "Cela vous permet de sauver l’état de certaines entrées et de les restaurer plus tard"
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
-msgstr "La valeur \"%s\" pour le champ \"%s\" est pas dans la liste des choix possibles"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Base pour les instantanés"
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "Un nombre entier entre %d et %d"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr "Branche LDAP dans laquelle les instantanés seront stockés."
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "Un nombre entier supérieur à %d"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
+msgstr "SSL"
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "Un nombre entier inférieur à %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
+msgstr "Clé privée"
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Un nombre à virgule entre %f et %f"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
+msgstr "Chemin vers la clef privée de FusionDirectory. Inutilisé actuellement."
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr "Un nombre à virgule supérieur à %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
+msgstr "Chemin du certificat"
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
-msgstr "Un nombre à virgule inférieur à %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
+msgstr "Chemin vers le certificat public de FusionDirectory. Inutilisé actuellement."
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
-msgstr "Erreur, date incorrecte  %s"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
+msgstr "Chemin du certificat CA"
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "Impossible de lire le fichier importé : '%s'"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+msgstr "Chemin d'accès au CA public. Utilisé pour valider l'hôte du serveur Argonaut."
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "Le fichier est vide"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
+msgstr "CAS"
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "fichier non trouvé"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
+msgstr "Activer CAS"
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "le fichier n'est pas lisible"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr "CAS sera utilisé à la place de la connexion LDAP"
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
-msgstr "%s (%d octets)"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr "Chemin du fichier contenant le certificat du CA public du serveur CAS"
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Téléverser"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Hôte"
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Télécharger"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
+msgstr "Hôte du serveur CAS"
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
-msgstr "Impossible de sauver la photo de l'utilisateur, FusionDirectory a besoin que la bibliothèque php \"imagick\" soit installée pour cela."
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Port"
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
+msgstr "Port d’écoute du serveur CAS"
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
-msgstr "Base de l'objet"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr "Contexte CAS"
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
-msgstr "Valeur invalide pour %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr "Contexte CAS à utiliser"
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr "SANS TITRE"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Stockage des utilisateurs et groupes"
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "Pas de définition de plugin pour l'initialisation de '%s', veuillez vérifier votre fichier de configuration."
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "Attribut pour le DN des utilisateurs"
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "L'effacement a été interrompu par le plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr "Attribut à utiliser pour le début du DN utilisateur"
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
-msgstr "Déplacer de \"%s\" à \"%s\" a échoué"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr "Modèle CN"
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
-msgstr "Le fuseau horaire '%s' indiqué dans votre configuration est invalide. "
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
+msgstr "Le modèle à utiliser pour construire le common name"
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr "Règles de de nommage strictes"
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Gère les listes de contrôle d'accès (ACL)"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr "Active la vérification stricte des noms d’utilisateur et de groupe"
 
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr "Id minimum de groupe/utilisateur"
+
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
-msgstr "Type d'ACL inconnu '%s'!\nVous devez exécuter \"fusiondirectory-setup --migrate-acls\" pour migrer vos acls au nouveau format."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
+msgstr "L’id d’utilisateur ou de groupe minimum assignable pour éviter des risques de sécurité avec des id égales à 0."
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Entrée inconnue '%s' !"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr "Hook de nouvel id"
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Tous les utilisateurs"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr "Un script à appeler pour trouver le prochain id libre pour les utilisateurs et groupes."
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "Impossible de changer le mot de passe, utilisateur '%s' inconnu."
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr "Départ pour les ids d’utilisateur"
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
-msgstr "Vous devez remplir saslRealm ou saslExop dans l’écran de configuration pour pouvoir utiliser SASL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr "Où commencer à chercher pour un nouvel id d’utilisateur libre."
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
-msgstr "Il y a eu un problème lors de la décompression de l’instantané"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr "Départ pour les ids de groupe"
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Échec de la journalisation : %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr "Point de départ pour rechercher un id de groupe libre"
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
-msgstr "Option %s invalide !"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
+msgstr "Branche des utilisateurs"
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "Le type d'objet spécifié est vide ou invalide !"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
+msgstr "Branche où sont stockés les utilisateurs."
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
-msgstr "Attention: <a href=%s\"> La session n'est pas chiffrée !<a>"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
+msgstr "Branche des groupes"
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
-msgstr "Attention: La durée de validité des sessions configurée dans votre fusiondirectory.conf sera remplacée par celle définie dans votre php.ini."
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr "Branche où sont stockés les groupes."
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"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."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
+msgstr "Branche des rôles ACL"
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Erreur Smarty"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr "Branche où sont stockés les rôles ACL."
+
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Méthode d’allocation des ids"
 
-#: 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 !"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
+msgstr "Méthode pour allouer les ids d’utilisateur et de groupe"
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Votre session FusionDirectory a expiré !"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Traditionnel"
 
-#: html/index.php:211
-msgid "Your IP has changed!"
-msgstr "Votre IP a changé !"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr "Réservoir d’ids Samba"
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
-msgstr "Paramètre de plugin «%s» invalide !"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
+msgstr "Minimum des ids d’utilisateur du réservoir"
 
-#: html/index.php:217
-msgid "No session found!"
-msgstr "Aucune session trouvée !"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
+msgstr "Valeur minimum pour les ids d’utilisateur du réservoir"
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
-msgstr "La vérification des schémas LDAP a signalé des erreurs :"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
+msgstr "Maximum des ids d’utilisateur du réservoir"
 
-#: html/index.php:255
-msgid "LDAP schema error"
-msgstr "La vérification des schémas LDAP a signalé des erreurs :"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr "Valeur maximum pour les ids d’utilisateur du réservoir"
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Veuillez indiquer un nom d’utilisateur valide !"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr "Minimum des ids de groupe du réservoir"
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Veuillez introduire votre mot de passe !"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr "Valeur minimum pour les ids de groupe du réservoir"
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Veuillez vérifier le nom d'utilisateur et le mot de passe."
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
+msgstr "Maximum des ids de groupe du réservoir"
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Compte verrouillé. Veuillez contacter votre administrateur système !"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
+msgstr "Valeur maximum pour les ids de groupe du réservoir"
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
-msgstr "Aucune valeur trouvée dans l'entête HTTP \"%s\""
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
+msgstr "Restreindre les membres du rôle"
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
-msgstr "L'utilisateur \"%s\" mentionné dans l’entête n'existe pas dans l'annuaire LDAP "
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
+msgstr "Lorsqu'elle est activée uniquement les utilisateurs de la même branche ou les membres des groupes de la même branche peut être ajouté à un rôle."
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
-msgstr "L'utilisateur \"%s\" mentionné dans l’entête correspond à plusieurs personnes  dans l'annuaire LDAP "
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Débogage"
 
-#: html/index.php:547
-#, 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 "
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr "Afficher les erreurs"
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
-msgstr "L'utilisateur CAS \"%s\" correspond à plusieurs personnes  dans l'annuaire LDAP "
+#: plugins/config/class_configInLdap.inc:387
+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 "Afficher les erreurs PHP en haut de l'écran. Cela doit être désactiver en environnement de production car des mots de passe peuvent être affichés."
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Durée maximale d'une requête LDAP"
+
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Votre navigateur a les cookies désactivés. Veuillez activer les cookies et recharger cette page avant de vous connecter !"
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr "Arrêter les opérations LDAP si aucune réponse n'est obtenue dans un délai spécifié en secondes."
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Configuration de PHP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Journaliser les statistiques LDAP"
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:397
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Erreur fatale : «Register globals» est activé. FusionDirectory ne permettra pas aux utilisateurs de se connecter tant que ceci n'est pas corrigé par un administrateur."
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr "Stocker les statistiques LDAP via syslog. Cela aide à trouver les problèmes d'indexation et de mauvais filtres de recherche."
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Changement de mot de passe"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Niveau de débogage"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Votre mot de passe va bientôt expirer, veuillez changer votre mot de passe !"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr "Afficher certaines informations à chaque chargement de page."
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
-msgstr "Votre mot de passe a expiré, veuillez changer votre mot de passe."
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Divers"
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "Plus de mémoire disponible !"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
+msgstr "Hooks appelés quand des actions spécifiques surviennent"
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Les vérifications des ACL de l'utilisateur ont été désactivés"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr "onglet"
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Plugin"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr "Onglet concerné pas ce hook"
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
-msgstr "Erreur Fatale : Impossible de trouver une définition pour le plugin '%s' ! ('%s' n'est pas un fichier) !"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "mode"
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Erreur de configuration"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr "Quand appeler cette commande"
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Erreur fatale : toutes les variables POST n’ont pas été transférées par PHP - veuillez avertir votre administrateur !"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr "cmd"
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "Le fichier de configuration de FusionDirectory %s/%s ne peut être lu. Abandon."
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr "Commande qui sera appelée"
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, 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 !"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Hooks"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
-msgstr "Aucun compte utilisateur trouvé avec l'identifiant \"%s\""
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr "Montrer le résultat du hook"
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
-msgstr "Plusieurs comptes trouvés avec l’identifiant \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
+msgstr "Si activé, après réussite du hook, sa sortie textuelle est affichée dans une fenêtre à l'utilisateur."
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Adresse de courriel"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr "Shells disponibles"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
-msgstr "Il n'y a pas de compte qui utilise le courriel \"%s\""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr "Shells POSIX disponibles pour les utilisateurs de FusionDirectory"
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
-msgstr "Il y a plusieurs comptes qui utilisent le courriel \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr "Afficher l’onglet ACL sur tous les objets"
+
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
+msgstr "Pour des configurations ACL très spécifiques où vous avez besoin de donner des droits sur un seul objet."
+
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
+msgstr "Liste des catégories de département"
+
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
+msgstr "Les catégories disponibles dans le menu déroulant départements"
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
-msgstr "L'utilisateur correspondant au courriel \"%s\" est verrouillé. Veuillez contacter votre administrateur système !"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Plugins"
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Contactez votre administrateur système, il y a eu un problème avec le serveur de courriel"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr "Configuration des plugins"
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
-msgstr "Le jeton n'est pas valide"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr "Configuration des plugins"
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
-msgstr "Un problème est survenu avec le serveur, le courriel de confirmation n'a pas été envoyé"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr "Configuration des plugins FusionDirectory"
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Groupes d'objets"
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
-msgstr "Connexion LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
+msgstr "Branche des groupes d'objets"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Nom de l'emplacement"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
+msgstr "Branche où seront stockés les groupes d'objets"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
-msgstr "Nom de cette connexion à afficher dans la liste des serveurs LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "URI de connexion"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
+msgstr "Forcer la demande de mot de passe"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
-msgstr "URI pour contacter le serveur LDAP. Commence habituellement par ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
+msgstr "Utile si vous ajoutez un hook utilisant le mot de passe et que la méthode utilisée est SASL"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "Connexion TLS"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr "Configuration du tableau de bord"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
-msgstr "Est ce que TLS doit être utilisé pour se connecter à ce serveur LDAP ?"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr "Configuration du plugin Tableau de bord pour FusionDirectory"
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
-msgstr "La base de l’annuaire LDAP"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr "Tableau de bord - Schéma de nommage"
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Authentification"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr "Nombre de chiffres"
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
-msgstr "DN du compte admin à utiliser pour la liaison au LDAP. La base est automatiquement ajoutée."
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr "Le nombre de chiffres à utiliser après le préfixe"
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "DN de l'administrateur"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr "Préfixes"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Mot de passe administrateur"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr "Préfixes à utiliser pour les identifiants de machines"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
-msgstr "Mot de passe pour le compte administrateur à utiliser pour la liaison au LDAP"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
+msgstr "Tableau de bord - Utilisateurs expirés"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Statut actuel"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr "Nombre de jours"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
-msgstr "Résultat de la dernière tentative de liaison LDAP et vérification des schémas de base"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
+msgstr "Le nombre de jours avant expiration nécessaires pour qu’un compte apparaisse dans la liste «Prochains comptes expirés» du tableau de bord"
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Configuration LDAP"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Départements"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Configuration de la connexion LDAP"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "département"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Cette page permet la configuration de base de l'annuaire LDAP pour FusionDirectory."
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Propriétés"
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "La connexion anonyme sur le serveur '%s' a échoué !"
+msgid "Name of %s"
+msgstr "Nom de %s"
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Connexion de l'utilisateur '%s' échouée !"
-
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Réessayer"
+msgid "A name for this %s"
+msgstr "Un nom pour ce %s"
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "Connexion anonyme sur le serveur '%s' réussie."
+msgid "Short description of this %s"
+msgstr "Une courte description de ce %s"
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Rafraîchir"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Catégorie"
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Veuillez fournir un utilisateur et un mot de passe !"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
+msgstr "Catégorie de ce %s"
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr "Site Web"
+
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "Connexion de l'utilisateur '%s' au serveur '%s' réussie !"
+msgid "Website of this %s"
+msgstr "Site Web de %s"
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
-msgstr "%s\nSchema \"%s\": %s"
+msgid "Manager of this %s"
+msgstr "Responsable de ce %s"
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Bienvenue"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Pays"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Fin"
+#: plugins/admin/departments/class_department.inc:102
+#, php-format
+msgid "A postal address for this %s"
+msgstr "Adresse postale pour ce %s"
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Fin - écrire le fichier de configuration"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Numéro de téléphone"
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Écrire le fichier de configuration"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr "Numéro de fax"
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Votre fichier de configuration est lisible par tout le monde. Veuillez modifier les permissions !"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr "organisme"
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Le fichier de configuration ne peut être lu ou n'existe pas."
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Domaine"
+
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr "domaine"
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Gérer les départements"
+
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Après avoir placé le fichier dans le répertoire %s, assurez vous que seul le serveur web puisse lire %s."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr "Gérer les départements, pays, composants de domaine, les domaines, les localités et les nœuds des organisations"
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Migrer"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Utilisateurs et groupes"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "Vérification des modules et extensions PHP"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Composant de domaine"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Inspection LDAP"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr "composant de domaine"
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Analyse votre annuaire LDAP pour la compatibilité avec FusionDirectory"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Lieu"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
-msgstr "Donner tous les droits sur les utilisateurs de cette branche"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
+msgstr "lieu"
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr "Permet aux utilisateurs d'éditer leur propres informations (onglet principal et posix, à n'utiliser que sur la base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Liste des départements"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
-msgstr "Permet aux utilisateurs de changer leur mot de passe (à n’utiliser que sur la base)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr "pays"
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Inspection des classes d'objets de l'objet racine"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Gérer les utilisateurs"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Vérification des permissions sur l'annuaire LDAP"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
+msgstr "Gérer les comptes utilisateurs et leurs propriétés"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Recherche d’utilisateurs invisibles"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Verrouillage du compte"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Vérification du super administrateur"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr "La méthode \"%s\" ne permet pas le verrouillage du mot de passe. Le compte \"%s\" n'a pas été verrouillé !"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr "Vérification des rôles ACL et groupes par défaut"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Déverrouiller le compte"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Recherche d'utilisateurs en dehors de la branche utilisateurs"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Verrouiller le compte"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Recherche de groupes en dehors de la branche groupes"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Liste des utilisateurs"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Recherche de départements invisibles"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Nom de famille"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Recherche d’UID en double"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Prénom"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr "Recherche de GID en double"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Verrouiller les utilisateurs"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "La requête LDAP a échoué"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Déverrouiller les utilisateurs"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr "L'objet racine est probablement manquant."
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Appliquer le modèle"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Échec"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Créer un nouvel utilisateur depuis un modèle"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "Object class FusionDirectory obligatoire '%s' manquante !"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Éditer l’utilisateur"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Veuillez vérifier votre installation."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "Impossible de gérer le type structural de votre objet racine. S'il vous plaît essayez d’ajouter la classe d'objet '%s' à la main."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Supprimer l'utilisateur"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr "L'utilisateur \"%s\" n'a pas un accès complet à votre annuaire LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Rôle"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
-msgstr "L'utilisateur \"%s\" n'a pas un accès complet à votre annuaire LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr "Information du rôle"
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "%s utilisateur(s) trouvé(s) qui ne seront pas visibles dans FusionDirectory ou qui sont incomplets."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
+msgstr "Rôle organisationnel"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr "Migration des utilisateurs"
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Informations"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Erreur de migration"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr "Nom du groupe"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
-msgstr "Impossible de migrer l'entrée '%s' :"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Description du rôle"
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr "Comptes administratifs de FusionDirectory 1.0.7 trouvés : %s"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Numéro de téléphone"
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
-msgstr "Comptes administratifs de FusionDirectory 1.0.7 trouvés : %s"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Numéro de fax"
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
-msgstr "Vous pouvez exécuter <i>fusiondirectory-setup --migrate-acls</i> après avoir sauvegardé le fichier de configuration à la fin de l'installation pour migrer les acls. <br/>"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
+msgstr "Les membres du rôle"
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
-msgstr "Il n’y a pas d'administrateur FusionDirectory 1.0.8 valide dans votre annuaire LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Ajouter des utilisateurs au rôle"
+
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
+msgstr "Gérer les groupes et les rôles"
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Groupes"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
+msgstr "Permet de gérer des groupes d'objets, des groupes POSIX et des rôles "
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "Il n'y a pas d'administrateur FusionDirectory dans votre annuaire LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
+msgstr "Éditer les propriétés du role"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
-msgstr "Donner tous les droits sur tous les objets"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr "Les rôles ACL par défaut n'ont pas été insérés"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Modifier les propriétés posix"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
-msgstr "Certains rôles ACL par défaut sont absents"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
+msgstr "Afficher les groupes utilisateurs"
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
-msgstr "Les rôles ACL par défaut on été insérés"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Afficher les groupes principaux"
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
-msgstr "Impossible d’ajouter un rôle ACL pour '%s' :"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
+msgstr "Afficher les rôles organisationnels "
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr "%s utilsateur(s) trouvé(s) en dehors de la branche configurée \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
+msgstr "Afficher les groupes d’applications"
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Déplacer les utilisateurs dans la branche utilisateur configurée"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
+msgstr "Afficher des groupes non identifiés"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
-msgstr "Impossible de déplacer les utilisateurs vers le département spécifié !"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Afficher les groupes de courriel"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
-msgstr "Les entrées seront déplacées depuis"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Afficher les groupes Samba"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "vers"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
+msgstr "Afficher les entrées DSA"
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Les références suivantes seront mises à jour"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
+msgstr "Afficher les groupes de serveurs"
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "%s groupes trouvés en dehors de la branche configurée '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr "Afficher les groupes de stations de travail"
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
-msgstr "Déplacer les groupes dans la branche configurée"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr "Afficher les groupes de stations Windows"
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "%s département(s) trouvé(s) qui ne seront pas visible dans FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
+msgstr "Afficher les groupes de terminaux"
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
-msgstr "Migration des départements"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr "Afficher les groupes d’imprimantes"
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
-msgstr "%s valeurs dupliquées trouvées pour l'attribut \"uidNumber\" : %s"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
+msgstr "Afficher les groupes de téléphones"
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
-msgstr "%s valeurs dupliquées trouvées pour l'attribut \"gidNumber\" : %s"
+msgid "Unknown type : %s"
+msgstr "Type Inconnu : %s"
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Configuration de la langue"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
+msgstr "Dn inexistant : %s"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Cette étape vous permet de sélectionner votre langue préférée."
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Groupe d'objet"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
-msgstr "Maintenant vous pouvez choisir la langue par défaut. «Automatique» utilisera la langue demandée par le navigateur. Ce paramètre peut être configuré par utilisateur."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr "Information du groupe d’objets"
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Bienvenue dans l'assistant de configuration FusionDirectory"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Groupe"
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Le message d'accueil"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr "Description courte pour ce groupe"
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
-msgstr "Configuration de PHP (<a href=\"?info\" target=\"_blank\">montrer les informations)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Objets membres"
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Vérification de l'installation"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr "Objets membres de ce groupe"
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Vérification basique de la version de PHP et des extensions nécessaires."
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+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"
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Vérification de la version de PHP"
+#: plugins/admin/groups/class_ogroup.inc:321
+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"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP doit être à la version %s ou supérieure."
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Liste des groupes"
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Veuillez faire la mise à jour vers une version supportée."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr "Information du groupe POSIX"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory a besoin de ce module pour dialoguer avec votre annuaire LDAP."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr "Groupe POSIX"
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory a besoin de ce module pour afficher l'interface multilingue."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr "Groupe d’utilisateurs POSIX"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory a besoin de ce module pour dialoguer avec les différents types de serveurs et de protocoles."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Forcer le GID"
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory a besoin de ce module pour dialoguer avec Samba."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr "Forcer la valeur du GID pour ce groupe"
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory a besoin du module 'mhash' ou 'sha1' pour l'utilisation du chiffrage SSHA."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr "GID de ce groupe"
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory a besoin de ce module pour dialoguer avec un serveur IMAP."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Membres du groupe"
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr "création d'affectation ACL"
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory a besoin de ce module pour gérer les chaînes de caractère unicode."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr "Créer une affectation d'ACL sur un dn arbitraire"
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr "Dn"
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory a besoin de ce module pour gérer les images."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr "DN auquel vous souhaitez ajouter des affectations"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "Module de compression"
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr "Impossible de trouver le dn demande dans l'annuaire LDAP"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory a besoin de ce module pour gérer les instantanés."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr "Affectations ACL"
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "register_globals est un mécanisme PHP pour enregistrer toutes les variables globales afin que les scripts puissent y accéder sans changer la porté des variables. Cela peut constituer un risque de sécurité."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr "gestion des affectations ACL "
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Recherchez l'option 'register_globals' dans votre php.ini et mettez la à 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr "Affectations des rôles ACL pour les utilisateurs"
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP utilise cette variable pour effacer les vieilles sessions."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "Affectation ACL"
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Mettre cette valeur à 1 jour permet d'éviter de perde les cookies et les sessions avant qu'elles ne soient réellement expirées."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr "Boite de dialogue d’affectation ACL"
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Cherchez 'session.gc_maxlifetime' dans votre php.ini et mettez le à 86400 ou plus."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr "Boite de dialogue des affectations de rôles de contrôle d’accès"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Mode"
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "Pour pouvoir utiliser FusionDirectory sans problème, la variable session.auto_start doit être à 'Off' dans votre php.ini."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr "Est-ce que cela doit être appliqué au sous arbre complet ou seulement la base ?"
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Recherchez la variable 'session.auto_start' dans votre php.ini et mettez la à 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr "Sous branche"
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
-msgstr "FusionDirectory a besoin au minimum de 128MB de mémoire. Allouer moins causera des erreurs imprévisibles, qui ne seront pas reproductibles ! Augmentez la mémoire pour les installations plus complexes."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr "Base seulement"
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
-msgstr "Recherchez 'memory_limit' dans votre fichier php.ini votre et mettez le à '128M' ou plus."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr "Rôle à appliquer"
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Cette option définit la gestion des sorties, mettez cette option à 'Off' pour améliorer la performance."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr "Tous les utilisateurs"
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Recherchez 'implicit_flush' dans votre php.ini et mettez le à 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr "Appliquer cette ACL pour tous les utilisateurs LDAP"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "Le temps d'exécution doit être au moins de 30 secondes."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Membres"
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Rechercher l'option 'max_execution_time' dans votre php.ini et mettez la à '30' ou plus."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr "Utilisateurs et groupes à qui appliquer ce rôle"
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Augmentez la sécurité de votre serveur en mettant l'option expose_php à 'Off'. PHP n'enverra pas d'information à propos du serveur."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr "Affectation ACL"
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Recherchez 'expose_php' dans votre php.ini et mettez le à 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr "Affectation des rôles de contrôle d’accès"
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Améliorez la performance de votre serveur en mettant magic_quotes_gpc à 'off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr "Affectations"
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Recherchez l'option 'zend.ze1_compatibility_mode' dans votre php.ini et mettez la à 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr "Affectations des rôles ACL pour cette base"
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Erreur d'installation"
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr "Affectations sur l'objet ou la branche %s"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Terminé"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Pas d'ACL pour cette catégorie"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Suivant"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL pour ces objets : %s"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "L'équipe FusionDirectory"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Éditer les catégories ACL"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr "<strong>%1</strong> fait référence à <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Remettre à zéro les catégories ACL"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr "<strong>%1</strong> fait référence au champ <strong>%3</strong> du tab <strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Liste des catégories d'ACL disponibles"
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Cette objet n'a pas de relation avec d'autres objets."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Tous les objets dans le sous arbre actuel"
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtre"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
+msgstr "Modifier ACL pour \"%s\""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Afficher les modèles"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "lecture"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Afficher les utilisateurs fonctionnels"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "écrire"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "Afficher les utilisateurs POSIX"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Afficher/Cacher la configuration avancée"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Afficher les utilisateurs de courriel"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Créer des objets"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Afficher les utilisateurs Samba"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Déplacer des objets"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr "Attention: vous êtes sur le point de supprimer les assignations d'ACL sur les objets suivants"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Supprimer des objets"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
-msgstr "Cela comprend toutes les affectations ACL faites sur ce(s) noeud(s). Si vous voulez la liste de ces assignations, annulez et ouvrez les objets."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Donner la permission au propriétaire"
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Cliquez sur 'Supprimer' pour continuer ou sur 'Annuler' pour abandonner."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "L'objet complet"
+
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
+msgstr "Gestion des rôles ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] "Il y a un compte expiré"
-msgstr[1] "Il y a %1 comptes expirés"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr "Gérer les rôles ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr "Il n'y a pas de compte expiré"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Contient les paramètres pour ces objets : %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
-msgstr "Manager concerné"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Contrôle d'accès (ACL)"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "Rôle ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
+msgstr "Un nom pour ce rôle"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "Numéro de téléphone"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
+msgstr "Description courte pour ce rôle"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
-msgstr "Date d'expiration du mot de passe"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
+msgstr "ACLs"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
-msgstr "Responsable"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
+msgstr "ACLs qui font partie de ce groupe"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr "Courriel"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "FusionDirectory ne fonctionnera PAS si vous ne corrigez pas cela."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] "Il y a un compte expirant dans les prochains jours"
-msgstr[1] "Il y a %2 comptes qui expirent dans les %1 prochains jours"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory fonctionnera même si vous ne corrigez pas cela."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr "Il n’y a pas de compte qui expire dans les %1 prochains jours"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Créer un nouveau compte administrateur pour FusionDirectory"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr "Prochains comptes expirés"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Ce dialogue vas automatiquement créer un nouveau super utilisateur dans votre arbre LDAP."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] "Il y a 1 groupe :"
-msgstr[1] "Il y a %1 groupes :"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "ID de l’utilisateur"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] "l'un deux est un groupe %1 "
-msgstr[1] "%2 sont des groupes %1"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Mot de passe (de nouveau)"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr "Il n’y a aucun groupe %1"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Il semble que c'est votre première utilisation de FusionDirectory - nous n'avons pas trouvé de configuration. Ce programme d'aide à l'installation vous aidera à configurer FusionDirectory."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] "Il y a 1 utilisateur :"
-msgstr[1] "Il y a %1 utilisateurs :"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "Qu’est ce que le programme d'aide à l’installation fera pour vous ?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] "L'un d'entre eux a un compte %1"
-msgstr[1] "%2 d’entre eux ont un compte %1"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Créer une simple configuration mono-site"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr "Aucun d’eux n’a un compte %1"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Essayer de trouver s’il existe des problèmes dans votre configuration PHP ou LDAP"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] "Un d'entre eux est verrouillé"
-msgstr[1] "%1 d’entre eux sont verrouillés"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Vous permettre de régler un ensemble d’options de base et avancées"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr "Aucun d'entre eux n’est verrouillé"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Assister la migration d’un annuaire LDAP existant"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Votre mot de passe a été changé. N'oubliez pas de modifier les programmes qui l'utilisent."
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "Qu’est-ce que l’assistant d’installation ne fera PAS pour vous ?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Préférences utilisateur"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Trouver toutes les erreurs de configuration possibles"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Effacer le mot de passe"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migrer toutes les situations LDAP possibles − faites des sauvegardes !"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Attribuer un nouveau mot de passe"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr "Pour continuer :"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Image personnelle"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr "Pour des raisons de sécurité vous devez vous authentifier en créant le fichier '%1', contenant l'ID de la session sur le serveur. Ceci peut être réalisé en exécutant la commande suivante :"
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Image de l'utilisateur"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Cliquez sur 'Continuer' quand vous avez fini."
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Suppression de l'image personnelle"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "Ajouter les Object class obligatoires à la base LDAP"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "Vous n'avez pas le droit de changer votre mot de passe"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Actuel"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "Votre méthode de chiffrement des mots de passe ne sera pas changée !"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Après migration"
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Conflit de verrou détecté"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Fermer"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
-msgstr "\"%1\" est verrouille par \"%2\" depuis %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
+msgstr "Ce dialogue permet de déplacer un ensemble d'entrées dans l’annuaire configuré. Exécuter cette opération peut améliorer votre service LDAP."
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
-msgstr "Si la détection de ce verrou est fausse, une autre personne a manifestement fermé la fenêtre de son navigateur durant une opération de modification d'une entrée. Dans ce cas, vous pouvez supprimez le verrou en cliquant sur le bouton \"%1%\"."
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
+msgstr "Soyez prudent avec cette opération ! Il peut exister des références qui pointent vers ces entrées. Le programme d’installation de FusionDirectory ne peut pas migrer ces références, vous préférerez peut-être annuler la migration dans ce cas."
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Lecture seule"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr "Déplacer les entrées sélectionnées "
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
-msgstr "Créer une nouvelle entrée à partir d'un modèle"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
+msgstr "Les entrées listées sont actuellement invisibles dans l’interface de FusionDirectory. Si vous voulez changer ceci pour certaines entrées, veuillez les sélectionner et utiliser le bouton 'Migrer' ci-dessous."
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Si vous voulez savoir ce qui sera effectué lorsque vous migrerez les entrées sélectionnées, utilisez le bouton 'Montrer les changements' pour voir le LDIF."
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Continuer"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Montrer les changements"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "L'option size limit rend les opérations LDAP plus rapides et permet au serveur LDAP d'avoir un niveau de charge plus léger. La façon la plus facile de gérer des grandes bases de données sans de longs temps d'attentes, serait de limiter la recherche à des valeurs plus petites et d'utiliser les filtres pour obtenir les valeurs que vous recherchez."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Pendant l'inspection LDAP, nous allons chercher les problèmes classiques qui peuvent arriver lorsque l’on migre vers une administration basée sur FusionDirectory. Vous devriez régler les problèmes ci-dessous afin de faciliter l’administration."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Veuillez choisir la façon de réagir pour cette session"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Vérifier à nouveau"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "ignorer cette erreur et montrer toutes les entrées retournées par le serveur LDAP"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Création du fichier de configuration"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "ignorer cette erreur et montrer toutes les entrées dans la limite de taille définie et laissez moi utiliser les filtres pour restreindre les données a visualiser"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr "Exécutez %1 pour mettre les droits correctement sur le fichier fusiondirectory.conf"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Valider"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Télécharger la configuration"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Statut : "
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtre"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4937,17 +4846,6 @@ msgid ""
 "contact your administrator"
 msgstr "La fonction de récupération des mots de passe n'est pas activée. Si vous avez perdu votre mot de passe, contacter votre administrateur réseau"
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr "Cela peut être utilisé par plusieurs groupes. Veuillez vérifier que vous voulez effectuer cette opération étant donné qu'il est impossible pour FusionDirectory de récupérer vos données."
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "D'accord - si vous êtes sur - cliquez sur 'Supprimer' pour continuer ou sur 'Annuler' pour abandonner."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Fenêtre de connexion"
@@ -4975,26 +4873,141 @@ msgstr "Connexion"
 msgid "Click here to log in"
 msgstr "Cliquez ici pour vous connecter"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr "Attention : Vous êtes sur le point de restaurer l’instantané suivant"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "L'option size limit rend les opérations LDAP plus rapides et permet au serveur LDAP d'avoir un niveau de charge plus léger. La façon la plus facile de gérer des grandes bases de données sans de longs temps d'attentes, serait de limiter la recherche à des valeurs plus petites et d'utiliser les filtres pour obtenir les valeurs que vous recherchez."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
-msgstr "Toute modification apportée à l’objet depuis cet instantané sera perdue."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Veuillez choisir la façon de réagir pour cette session"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "ignorer cette erreur et montrer toutes les entrées retournées par le serveur LDAP"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "ignorer cette erreur et montrer toutes les entrées dans la limite de taille définie et laissez moi utiliser les filtres pour restreindre les données a visualiser"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Valider"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr "Attention : Vous êtes sur le point de supprimer les objets suivants"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Veuillez vérifier que vous voulez effectuer cette action étant donné qu'il est impossible pour FusionDirectory de récupérer vos données."
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "D'accord - si vous êtes sur - cliquez sur 'Supprimer' pour continuer ou sur 'Annuler' pour abandonner."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Accueil"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Déconnexion"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Connecté :"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "La session expire dans %d !"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr "Attention : Vous êtes sur le point de restaurer l’instantané suivant"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr "Toute modification apportée à l’objet depuis cet instantané sera perdue."
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr "Donc - si vous êtes sûr - cliquez sur 'Continuer' pour continuer ou 'Annuler' pour annuler."
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Continuer"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Conflit de verrou détecté"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr "\"%1\" est verrouille par \"%2\" depuis %3"
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr "Si la détection de ce verrou est fausse, une autre personne a manifestement fermé la fenêtre de son navigateur durant une opération de modification d'une entrée. Dans ce cas, vous pouvez supprimez le verrou en cliquant sur le bouton \"%1%\"."
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Lecture seule"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr "Cela peut être utilisé par plusieurs groupes. Veuillez vérifier que vous voulez effectuer cette opération étant donné qu'il est impossible pour FusionDirectory de récupérer vos données."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Assistant copier & coller"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr "Certaines valeurs doivent être unique dans tout l'arbre et certaines combinaisons n'ont pas de sens. FusionDirectory vous montre les valeurs correspondantes. Veuillez régler les valeurs pour respecter les politiques de sécurité."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "Veuillez vous souvenir que certaines propriétés comme les instantanés ne seront pas copiés !"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "Ou si vous coupez ou copiez une entrée avec FusionDirectory et que vous effacez la source, vous pouvez rencontrer des erreurs en tentant de le coller à nouveau !"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Opération réalisée"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr "Créer une nouvelle entrée à partir d'un modèle"
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Information"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "ACL assignés à l'entrée actuelle"
@@ -5039,211 +5052,197 @@ msgstr "ACL pour cet objet"
 msgid "Available roles"
 msgstr "Rôles disponibles"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr "Attention : Vous êtes sur le point de supprimer les objets suivants"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Assistant copier & coller"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr "Certaines valeurs doivent être unique dans tout l'arbre et certaines combinaisons n'ont pas de sens. FusionDirectory vous montre les valeurs correspondantes. Veuillez régler les valeurs pour respecter les politiques de sécurité."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "L'équipe FusionDirectory"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "Veuillez vous souvenir que certaines propriétés comme les instantanés ne seront pas copiés !"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr "<strong>%1</strong> fait référence à <strong>%3</strong>"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "Ou si vous coupez ou copiez une entrée avec FusionDirectory et que vous effacez la source, vous pouvez rencontrer des erreurs en tentant de le coller à nouveau !"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Opération réalisée"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Information"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr "<strong>%1</strong> fait référence au champ <strong>%3</strong> du tab <strong>%2</strong>"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Accueil"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Cette objet n'a pas de relation avec d'autres objets."
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Déconnexion"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Préférences utilisateur"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Connecté :"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Effacer le mot de passe"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "La session expire dans %d !"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Attribuer un nouveau mot de passe"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "Ajouter les Object class obligatoires à la base LDAP"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Image personnelle"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Actuel"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Image de l'utilisateur"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Après migration"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Suppression de l'image personnelle"
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Fermer"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "Vous n'avez pas le droit de changer votre mot de passe"
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Création du fichier de configuration"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "Votre méthode de chiffrement des mots de passe ne sera pas changée !"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr "Exécutez %1 pour mettre les droits correctement sur le fichier fusiondirectory.conf"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Votre mot de passe a été changé. N'oubliez pas de modifier les programmes qui l'utilisent."
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Télécharger la configuration"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] "Il y a 1 groupe :"
+msgstr[1] "Il y a %1 groupes :"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Statut : "
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] "l'un deux est un groupe %1 "
+msgstr[1] "%2 sont des groupes %1"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Créer un nouveau compte administrateur pour FusionDirectory"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr "Il n’y a aucun groupe %1"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Ce dialogue vas automatiquement créer un nouveau super utilisateur dans votre arbre LDAP."
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] "Il y a 1 utilisateur :"
+msgstr[1] "Il y a %1 utilisateurs :"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "ID de l’utilisateur"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] "L'un d'entre eux a un compte %1"
+msgstr[1] "%2 d’entre eux ont un compte %1"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Mot de passe (de nouveau)"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr "Aucun d’eux n’a un compte %1"
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Il semble que c'est votre première utilisation de FusionDirectory - nous n'avons pas trouvé de configuration. Ce programme d'aide à l'installation vous aidera à configurer FusionDirectory."
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] "Un d'entre eux est verrouillé"
+msgstr[1] "%1 d’entre eux sont verrouillés"
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "Qu’est ce que le programme d'aide à l’installation fera pour vous ?"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr "Aucun d'entre eux n’est verrouillé"
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Créer une simple configuration mono-site"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] "Il y a un compte expiré"
+msgstr[1] "Il y a %1 comptes expirés"
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Essayer de trouver s’il existe des problèmes dans votre configuration PHP ou LDAP"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr "Il n'y a pas de compte expiré"
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Vous permettre de régler un ensemble d’options de base et avancées"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
+msgstr "Manager concerné"
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Assister la migration d’un annuaire LDAP existant"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "Qu’est-ce que l’assistant d’installation ne fera PAS pour vous ?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr "cn"
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Trouver toutes les erreurs de configuration possibles"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "Numéro de téléphone"
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migrer toutes les situations LDAP possibles − faites des sauvegardes !"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr "Date d'expiration du mot de passe"
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
-msgstr "Pour continuer :"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
+msgstr "Responsable"
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr "Pour des raisons de sécurité vous devez vous authentifier en créant le fichier '%1', contenant l'ID de la session sur le serveur. Ceci peut être réalisé en exécutant la commande suivante :"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
+msgstr "Courriel"
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Cliquez sur 'Continuer' quand vous avez fini."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] "Il y a un compte expirant dans les prochains jours"
+msgstr[1] "Il y a %2 comptes qui expirent dans les %1 prochains jours"
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "FusionDirectory ne fonctionnera PAS si vous ne corrigez pas cela."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
+msgstr "Il n’y a pas de compte qui expire dans les %1 prochains jours"
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory fonctionnera même si vous ne corrigez pas cela."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
+msgstr "Prochains comptes expirés"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
-msgstr "Ce dialogue permet de déplacer un ensemble d'entrées dans l’annuaire configuré. Exécuter cette opération peut améliorer votre service LDAP."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Afficher les modèles"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
-msgstr "Soyez prudent avec cette opération ! Il peut exister des références qui pointent vers ces entrées. Le programme d’installation de FusionDirectory ne peut pas migrer ces références, vous préférerez peut-être annuler la migration dans ce cas."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Afficher les utilisateurs fonctionnels"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
-msgstr "Déplacer les entrées sélectionnées "
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "Afficher les utilisateurs POSIX"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
-msgstr "Les entrées listées sont actuellement invisibles dans l’interface de FusionDirectory. Si vous voulez changer ceci pour certaines entrées, veuillez les sélectionner et utiliser le bouton 'Migrer' ci-dessous."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Afficher les utilisateurs de courriel"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Si vous voulez savoir ce qui sera effectué lorsque vous migrerez les entrées sélectionnées, utilisez le bouton 'Montrer les changements' pour voir le LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Afficher les utilisateurs Samba"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Montrer les changements"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr "Attention: vous êtes sur le point de supprimer les assignations d'ACL sur les objets suivants"
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Pendant l'inspection LDAP, nous allons chercher les problèmes classiques qui peuvent arriver lorsque l’on migre vers une administration basée sur FusionDirectory. Vous devriez régler les problèmes ci-dessous afin de faciliter l’administration."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr "Cela comprend toutes les affectations ACL faites sur ce(s) noeud(s). Si vous voulez la liste de ces assignations, annulez et ouvrez les objets."
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Vérifier à nouveau"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Cliquez sur 'Supprimer' pour continuer ou sur 'Annuler' pour abandonner."
diff --git a/locale/hu_HU/fusiondirectory.po b/locale/hu_HU/fusiondirectory.po
index ac2fb8afd68749d9aee8c71f6a1534eea8c78a26..4a7fe1cf6b06a110684233c5ce4c55b96151c226 100644
--- a/locale/hu_HU/fusiondirectory.po
+++ b/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n"
@@ -18,4848 +18,4757 @@ msgstr ""
 "Language: hu_HU\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Név"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr "Csoport neve"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Leírás"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Telefonszám"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Faxszám"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Felhasználók"
+
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Felhasználók"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1084
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "ACL for these objects: %s"
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Delete"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:678
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:1130
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr ""
-
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:2641
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2645
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_timezone.inc:52
 #, php-format
-msgid "Group of user %s"
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr ""
+
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
+#: include/class_msgPool.inc:806
+#, php-format
 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."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/php_setup.inc:132
+msgid "Type"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr ""
+
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
+#: include/class_ldap.inc:846
+#, php-format
 msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:1130
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:1134
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:1139
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Név"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Leírás"
+
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (%s is login)"
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
+#, php-format
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
+#, php-format
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/class_plugin.inc:1322
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/class_acl.inc:118
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/class_acl.inc:173
 #, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgid "All users"
 msgstr ""
 
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "while operating on LDAP server %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: html/index.php:150
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:1151
-#, php-format
-msgid "Error line %s, references to an external file are not supported"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: html/index.php:173
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:214
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:69
-#, php-format
-msgid "This '%s' object will be deleted!"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/index.php:454
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:475
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr ""
-
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:485
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:547
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:557
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/class_passwordRecovery.inc:495
+#, php-format
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/class_passwordRecovery.inc:498
+#, php-format
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:161
-#, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/main.php:290
 #, php-format
-msgid "No %s server defined!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:285
+#: html/main.php:306
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:297
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:859
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:2117
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2119
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sMiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr ""
+
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:3345
+#: plugins/config/class_recoveryConfig.inc:90
 #, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: 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 ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:162
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr ""
-
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+"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 ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr ""
-
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr ""
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
+msgstr ""
+
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr "Csoport neve"
+
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Telefonszám"
+
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Faxszám"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr ""
+
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4934,17 +4843,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4972,6 +4870,65 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:2
 msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
@@ -4980,16 +4937,72 @@ msgstr ""
 msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"FusionDirectory to get your data back."
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr ""
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
 msgstr ""
 
 #: ihtml/themes/breezy/acl.tpl.c:2
@@ -5036,211 +5049,197 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/id/fusiondirectory.po b/locale/id/fusiondirectory.po
index 7fbecccb052055152ff373dd39b3305809bc25f9..427d5ce4a230fbb2b8c5a1132ba424e3504ee28f 100644
--- a/locale/id/fusiondirectory.po
+++ b/locale/id/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n"
@@ -17,4841 +17,4757 @@ msgstr ""
 "Language: id\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:148
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Ldap.inc:168
 #, php-format
-msgid "Contains settings for these objects: %s"
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
-
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/functions.inc:859
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:1563
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_msgPool.inc:43
 #, php-format
-msgid "Group of user %s"
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr ""
+
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/php_setup.inc:132
+msgid "Type"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
+#: include/class_ldap.inc:1170
+#, php-format
 msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
-#, php-format
-msgid "Body (%s is login)"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
 msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
+#, php-format
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
+#, php-format
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
+#, php-format
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
+#: include/class_plugin.inc:1322
+#, php-format
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_config.inc:885
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/class_acl.inc:118
 #, php-format
 msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/class_acl.inc:173
+#, php-format
+msgid "All users"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
+#: html/index.php:56 html/class_passwordRecovery.inc:165
+#, php-format
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:846
-#, php-format
+#: html/index.php:62
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: html/index.php:150
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:994
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: html/index.php:173
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr ""
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1133
-#, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_ldap.inc:1151
-#, php-format
-msgid "Error line %s, references to an external file are not supported"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: html/index.php:214
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_ldap.inc:1194
-#, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:454
+#, php-format
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:475
+#, php-format
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:69
+#: html/index.php:485
 #, php-format
-msgid "This '%s' object will be deleted!"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/index.php:547
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:557
 #, php-format
-msgid "This '%s' object will be deleted: %s"
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/class_passwordRecovery.inc:495
+#, php-format
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/class_passwordRecovery.inc:498
+#, php-format
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/class_passwordRecovery.inc:506
+#, php-format
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr ""
+
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:151
-#, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:161
-#, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/main.php:290
+#, php-format
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:306
+#, php-format
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:225
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Cannot connect to %s database!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:583
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:607
+#, php-format
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:621
+#, php-format
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:2669
+#: plugins/config/class_recoveryConfig.inc:73
 msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:3175
+#: plugins/config/class_recoveryConfig.inc:90
 #, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr ""
-
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/functions.inc:3345
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: 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 ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr ""
+
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr ""
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4926,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4964,6 +4869,65 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:2
 msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
@@ -4972,16 +4936,72 @@ msgstr ""
 msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:5
-msgid ""
-"Please double check if you really want to do this since there is no way for "
-"FusionDirectory to get your data back."
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr ""
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
 msgstr ""
 
 #: ihtml/themes/breezy/acl.tpl.c:2
@@ -5028,211 +5048,190 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/it_IT/fusiondirectory.po b/locale/it_IT/fusiondirectory.po
index cd0ab45168b87f44e5a8561ba4bdb6fae2cb9861..6cc8df6e8dd2f4c29369e35b7a74795edf47862f 100644
--- a/locale/it_IT/fusiondirectory.po
+++ b/locale/it_IT/fusiondirectory.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-10-03 15:54+0000\n"
 "Last-Translator: Paola Penati <penati@avaya.com>\n"
 "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n"
@@ -20,4849 +20,4758 @@ msgstr ""
 "Language: it_IT\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Benvenuto %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Riferimenti"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Ruolo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr "Informazioni sul ruolo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr "Ruolo organizzativo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Informazioni"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nome"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr "Nome del gruppo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Descrizione"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Descrizione del ruolo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Numero di telefono"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Numero di Fax"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr "Membri del ruolo"
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Aggiungi degli utenti per il ruolo"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Gruppo"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr "Informazioni gruppo POSIX"
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr "Gruppo POSIX"
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr "Gruppo utenti POSIX"
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Proprietà"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr "Breve descrizione del gruppo"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Forza il GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr "Forzare il valore GID per questo gruppo"
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr "Valore GID per questo gruppo"
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Membri del gruppo"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Sistema di fiducia"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Modalità di fiducia"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr "Tipo di autorizzazione per questi host"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "disattivato"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "accesso completo"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "autorizza l'accesso a questi host"
-
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-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:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Avvertimento"
-
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Il tempo d'attesa per il blocco è scaduto. Blocco ignorato !"
-
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr "Tipo sconosciuto : %s"
-
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr "Non esiste il dn: %s"
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Gruppo di oggetti"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr "Informazioni gruppo di oggetti"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Lingua preferita"
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Oggetti membri"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Impostazioni della lingua"
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr "Oggetti membro di questo gruppo"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Questa tappa ti permette di impostare la tua lingua preferita."
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Language.inc:62
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr "Non é consentito mettre workstations e terminali nello stesso gruppo"
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Elenco dei gruppi"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Azioni"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Crea"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Modifica"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Elimina"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr "Gruppi e ruoli"
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr "Gestione dei gruppi e dei ruoli"
-
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
-msgstr "Vi permette di gestire gruppi di oggetti, gruppi e ruoli POSIX"
-
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr "Modifica le proprietà del ruolo"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Modifica le proprietà posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr "Mostra i gruppi di utenti"
-
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Mostra i gruppi principali"
-
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr "Mostra i ruoli organizzativi"
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr "Mostra i gruppi di applicazioni"
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr "Mostra gruppi non identificati"
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
+msgstr "A questo punto , è possibile selezionare la lingua predefinita a livello di sito . Scegliendo \" automatico\" utilizzerà la lingua richiesta dal browser. Questa impostazione può essere sovrascritto per utente ."
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Mostra i gruppi di posta elettronica"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automatico"
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Mostra i gruppi samba"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "Verifica del modulo PHP e delle sue estensioni"
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr "Mostra voci DSA"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
+msgstr "Configurazione di installazione PHP (<a href=\"?info\" target=\"_blank\">mostra informazione)</a>)"
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr "Mostra i gruppi di servers"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Verifica dell'istallazione"
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr "Mostra i gruppi di workstations"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Verifiche di base della compatibilità PHP e delle estensioni necessarie"
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr "Mostra i gruppi"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Controllo della versione di PHP"
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr "Mostra i gruppi di terminali"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP deve essere nella versione %s o superiore."
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr "Mostra i gruppi di stampanti"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Aggiorna ad una versione supportata."
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr "Mostra i gruppi di telefoni"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory ha bisogno di questo modulo per poter comunicare con il server LDAP."
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Oggetto di Dominio"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory ha bisogno di questo modulo per l'interfaccia multilingue."
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr "Oggetto di dominio"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory ha bisogno di questo modulo per comunicare con differenti tipi di server e protocolli."
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Dipartimento"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory ha bisogno di questo modulo per l'integrazione di Samba"
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Dipartimenti"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory richiede il modulo 'mhash' oppure 'sha1' per poter utilizzare l'algoritmo di criptaggio SSHA."
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "dipartimento"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory ha bisogno di questo modulo per comunicare con il server IMAP."
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr "Nome dell' %s "
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr "Nome unico per questo  %s "
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory ha bisogno di questo modulo per gestire i caratteri Unicode."
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
-msgstr "Breve descrizione di questo  %s "
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Categoria"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory ha bisogno di questa estensione per gestire le immagini."
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
-msgstr "Categoria di questo  %s "
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "modulo di compressione"
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr "Sito Web"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory ha bisogno di questa estensione per gestire gli snapshot (le copie istantanee)."
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
-msgstr "Sito Web di questo %s"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "register_globals è un meccanismo PHP che permette di registrare tutte le variabili globali affinchè gli scripts possano accedervi senza cambiare la portata delle variabili. Questo puó generare un rischio per la sicurezza."
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Manager"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Cerca l'opzione register_globals nel tuo file php.ini e impostalo su 'Off'."
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
-msgstr "Responsabile di questo %s "
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP utilizza questa variabile per cancellare delle vecchie sessioni."
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Località"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Impostare questa variabile a \"1 giorno\" eviterà di perdere i coockies e le sessioni prima che siano realmente scadute."
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Regione"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Cerca la variabile 'session.gc_maxlifetime' nel tuo file php.ini e impostala a 86400 o un valore più grande."
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Stato"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Off"
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Indirizzo"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "Per non avere problemi nell'uso di FusionDirectory, è necessario impostare l'opzione 'session.auto_start' su 'Off' nel file php.ini."
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
-msgstr "Indirizzo postale di questo %s "
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Cerca la variabile 'session.auto_start' nel file php.ini e impostala su 'Off'."
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Telefono"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr "FusionDirectory ha un bisogno minimo di 128MB di memoria. Meno di 128MB di memoria causeranno degli errori imprevisti che non saranno riproducibili ! Aumenta la memoria per delle installazioni più complesse."
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Numero di telefono"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr "Cerca la variabile 'memory_limit' nel file php.ini e impostala su '128MB' o un valore più grande."
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Questa opzione influenza la gestione delle uscite. Per aumentare le prestazioni, impostala su 'Off'."
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr "Facsimile di numero di telefono"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Cerca la variabile 'implicit_flush' nel file php.ini e impostala su 'Off'."
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Gestisci i dipartimenti"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "Il tempo di esecuzione deve essere di almeno 30 secondi."
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Checks.inc:191
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr "Gestire i reparti, i paesi, i componenti di dominio, i domini, le località e le note di organizzazione,"
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Cerca la variabile 'max_execution_time' nel file php.ini e impostala su '30' o un valore più grande."
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Utenti e gruppi"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Aumenta la sicurezza del tuo server impostando la variabile 'expose_php' su 'Off'. PHP non trasmetterà alcuna informazione a proposito del server che stai configurando."
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Nome della località"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Cerca la variabile 'expose_php' nel file php.ini e impostala su 'Off'."
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr "Località"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Aumenta le prestazioni del tuo server impostando la variabile 'magic_quotes_gpc' su 'Off'."
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr "Paese"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Cerca la variabile 'zend.ze1_compatibility_mode' nel file php.ini e impostala su 'Off'."
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Dominio"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Benvenuto"
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr "Dominio"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Benvenuto nell'interfaccia di aiuto alla configurazione di FusionDirectory"
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Elenco dei dipartimenti"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Messaggio di benvenuto"
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organizzazione"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr "Organizzazione"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Migra"
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Elenco degli utenti"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Ispezione dell'annuario LDAP"
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Cognome"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Analisi dell'annuario LDAP per la compatibilità con FusionDirectory"
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Nome"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr "Dare tutti i diritti sugli utenti nel ramo dato"
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Nome utente"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr "Permette agli utenti di modificare le proprie informazioni (uso di scheda e posix principale solo sulla base)"
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Utente"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr "Permette agli utenti di modificare la loro password (usare solo su base)"
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
-msgstr "Modello"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Ispezione delle classi di oggetti nell'oggetto radice"
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Modello"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Verifica del permesso di accesso al database LDAP"
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Blocca gli utenti"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Verifica degli utenti nascosti"
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Sblocca gli utenti"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Verifica del super amministratore"
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Applica il modello"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr "Controllo per i ruoli ed i gruppi ACL predefiniti"
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Nuovo utente a partire dal modello"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Verifica degli utenti al di fuori del ramo \"people\""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Modifica utente"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Verifica dei gruppi al di fuori del ramo \"groups\""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Verifica dei dipartimenti nascosti"
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Elimina utente"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Verifica dei possibili doppioni UID"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Utenti"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr "Verifica dei possibili doppioni GID"
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Gestisci gli utenti"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "La richiesta al database LDAP è fallita!"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
-msgstr "Gestire gli account utente e le loro proprietà"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
+msgstr "Forse l'\"oggetto radice\" é mancante"
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Autorizzazioni"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Fallito"
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Blocco dell'account"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "L'oggetto di classe '%s' richiesto per FusionDirectory è mancante !"
+
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Verifica la tua installazione."
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
-msgstr "La metodologia password \"%s\"  non sopporta il blocco. L'account \"%s\" non é stato bloccato!"
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "Impossibile gestire il tipo di oggetto strutturale del tuo oggetto radice. Prova ad aggiungere manualmente la classe d'oggetto '%s'. "
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Sblocca l'account"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Errore LDAP"
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Blocca l'account"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
+msgstr "L'utente \"%s\" non ha accesso completo al vostro database LDAP."
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
-msgstr "Account utente"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
+msgstr "L'utente \"%s\" non ha pieno accesso al database LDAP."
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
-msgstr "Informazioni account utente"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Avvertimento"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Nessuna ACL per questa categoria"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "Ho trovato %s utenti(e) che non saranno visibili in FusionDirectory che sono incompleti."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr "Migrazione utente"
+
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Errore durante la migrazione"
+
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL per questi oggetti: %s"
+msgid "Cannot migrate entry \"%s\":"
+msgstr "Impossibile eseguire la migrazione di voce \"%s\":"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Modifica la categoria di ACL"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr "FD 1.0.7 account amministrativi trovati: %s"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:860
 #, php-format
-msgid "Delete"
-msgstr "Elimina"
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr "FD 1.0.7 gruppi amministrativi trovati: %s"
+
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr "é possibile eseguire <i>fusiondirectory-setup --migrate-acls</i> dopo aver salvato il file do configurazione al termine della messa a punto per la migrazione."
+
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr "Non vi è alcun account amministratore FusionDirectory 1.0.8 valido all'interno del vostro LDAP ."
+
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Crea"
+
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Utenti"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Resetta la categoria di ACL"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Gruppi"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Elenco delle categorie di ACL disponibili"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "Non ho trovato alcun amministratore di FusionDirectory nel tuo annuario LDAP."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Tutti gli oggetti nell'attuale sottostruttura"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr "Dà tutti i diritti su ogni oggetto"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
-msgstr "Modifica ACL per \"%s\""
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Errore"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "lettura"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr "I ruoli ACL di default non sono stati inseriti"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "scrittura"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr "Mancano alcuni ruoli ACL di default"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Oggetto"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr "Ruoli ACL di default sono stati inseriti"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Mostra/Nascondi le opzioni avanzate"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr "Impossibile aggiungere ruolo \"%s\" ACL "
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Creare degli oggetti"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr "Ho trovato %s utente(i) al di fuori del ramo \"%s\" configurato."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Sposta degli oggetti"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Sposta gli utenti nel ramo utenti configurato nell'annuario"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Elimina degli oggetti"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
+msgstr "Impossibile spostare le entrate nel dipartimento richiesto!"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Concedere l'autorizzazione al proprietario"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr "L'entrata verrà spostata"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "L'oggetto al completo"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "verso"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Ruoli ACL"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Le seguenti reference saranno aggiornate"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr "Gestione dei ruoli ACL"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Ho trovato %s gruppi al di fuori del ramo '%s' configurato."
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
-msgstr "Gestire i ruoli ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr "Sposta i gruppi nel ramo di gruppi configurato"
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Contiene i parametri per questi oggetti: %s"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Ho trovato %s departimenti(o) che non saranno visibili in FusionDirectory."
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Ruoli di controllo d'accesso"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr "Migrazione Dipartilento"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "Ruolo ACL"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgstr "Trovati %s valori duplicati per l'attributo \"uidNumber\":%s"
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr "Nome unico per questo ruolo"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr "Trovati %s valori duplicati per l'attributo \"gidNumber\":%s"
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr "Breve descrizione di questo ruolo"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
+msgstr "Connessione LDAP"
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr "ACL"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Nome del luogo"
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr "ACL appartenenti a questo gruppo"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
+msgstr "Nome di questo collegamento per mostrare nell'elenco dei server LDAP"
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr "Creazione assegnazione ACL"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "URI di connessione"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr "Crea assegnazione ACL su un dn arbitrario"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr "URI per contattare il server LDAP. Di solito inizia con ldap://"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr "Dn"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "Connessione TLS"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr "DN per il quale si desiderano aggiungere assegnazioni"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr "TLS dovrebbe essere usato per connetterlo a questo server LDAP?"
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr "Impossibile trovare il dn che avete inserito nell'LDAP"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr "Assegnazioni ACL"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr "Base del directory LDAP"
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
-msgstr "Gestione delle assagnazioni ACL"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Autentificazione"
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
-msgstr "Gestione delle assegnazioni dei ruoli ACL per gli utenti"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
+msgstr "DN dell'account amministratore da utilizzare per il legame alla LDAP . La base viene automaticamente aggiunta."
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "Gestione delle ACL"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "DN dell'amministratore"
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
-msgstr "Assegnazione Dialog ACL"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Password dell'amministratore"
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr "Gestione della lista di controllo degli accessi"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr "Password dell'account amministratore da utilizzare per il legame alla LDAP . "
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Modalità"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Stato"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr "Si applica ad una sottostruttura completa oppure soltanto alla base?"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Stato attuale"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr "Sottostruttura"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr "Risultato dell'ultimo tentativo di controllo dei vincoli LDAP e degli schemi di base."
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr "Base"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Configurazione di LDAP"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr "Ruolo da applicare"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Configurazione della connessione di LDAP"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr "Per tutti gli utenti"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Questa finestra permette di indicare la configurazione di base di LDAP per FusionDirectory."
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr "Applica questo ACL a tutti gli utenti LDAP"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "La connessione anonima sul server '%s' è fallita !"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Membri"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "La connessione dell'utente '%s' è fallita !"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr "Utenti o gruppi a cui assegnare questo ruolo"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Riprova"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr "Assegnazioni ACL"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "La connessione anonima al server '%s' è riuscita."
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr "Gestione della lista di controllo degli accessi"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Aggiorna"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr "Assegnazioni"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Specifica il nome utente e la password !"
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr "Assegnazioni ACL per questa base"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "La connessione dell'utente '%s' al server '%s' è riuscita !"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
 #, php-format
-msgid "Assignments on object or subtree %s"
-msgstr "Assegnazioni su un ogetto o sottostruttura %s"
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
+msgstr "%s\nSchema \"%s\": %s"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr "Dashboard"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Finito"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr "Statistiche e informazioni varie"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Finito - Scrivi il file di configurazione"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr "Reporting"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Scrivi il file di configurazione"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr "Statistiche"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Il file di configurazione è attualmente accessibile in lettura a tutti. Aggiorna i permessi di accesso sul file !"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr "Statistiche sugli utenti"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Il file di configurazione attualmente non è leggibile oppure non esiste."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr "Statistiche utenti"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Dopo aver scaricato e messo il file nella cartella %s, assicurati che sia solo l'account abilitato al server Web a poter leggere %s, mentre gli altri account non dovrebbero."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr "Gruppi di statistiche"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Errore di configurazione"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr "Account scaduti"
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Completato"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Algoritmo di memorizzazione delle password"
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Successivo"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Algoritmo da usare per la password"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Errore interno"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Password"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Registrazione nel giornale di sistema non riuscita : %s"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Password (lasciare vuoto se non si desidera cambiarla)"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
+msgstr "Opzione '%s' non valida!"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Ripeti password"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "Il tipo d'oggetto specificato è vuoto oppure non è valido !"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr "Stessa password come sopra, per evitare errori"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "non configurato"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Informazioni personali"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Errore di filtro"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Cognome"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "Il filtro non è completo!"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr "Cognome utente"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Autorizzazioni"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Nome"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Errore d'autorizzazione"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr "Nme utente"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Non sei autorizzato a creare una 'copia instantanea' di %s."
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
-msgstr "Breve descrizione dell'utente"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Non sei autorizzato a restaurare una 'copia instantanea' di %s."
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr "Foto"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "Nessuna dichiarazione per '% s' nel file di configurazione. Impossibile inizializzare il plugin !"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr "Avatar di questo utente"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Root"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr "Informazioni di contatto organizzativo"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Invia"
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr "Indirizzo postale ufficio"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Sopra"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Stanza No."
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Sotto"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Numero dell'ufficio"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
+msgstr "Ordina in modo crescente"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr "Telefono ufficio"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
+msgstr "Ordina in modo decrescente"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Cellulare"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Seleziona tutto"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr "Telefono cellulare professionale"
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "Creato da"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Cercapersone"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Vai al dipartimento base"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr "Numero pager ufficio"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Sali di un dipartimento"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr "Numero fax ufficio"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
+msgstr "Vai al dipartimento dell'utente"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Home Page"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Home"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr "Pagina Web personale"
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Ricarica la lista"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr "Informazioni account utente"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Azioni"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr "Login utente"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Copia"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Lingua preferita"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Taglia"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr "Password dell'utente"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Incolla"
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr "Informazioni personali utente"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Taglia questa voce"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Mostra il nome"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Copia questa voce"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr "Nome col quale questo utente dovrebbe apparire. Usato da Exchange."
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Restaura le 'copie istantanee'"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr "Indirizzo di casa"
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Lista d'esportazione"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Indirizzo postale di casa"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Restaura la 'copia istantanea'"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Numero di telefono privato"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Crea una 'copia istantanea'"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Numero di telefono di casa"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Crea una nuova 'copia istantanea a partire da questi oggetti"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Informazioni organizzazione"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Errore fatale"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Titolo"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "nel"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr "Titolo di una persona nel proprio contesto organizzativo. Ogni titolo è una valore di questo attributo multivalore"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "on line"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr "Dipartimento al quale appartiene l'utente"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Errore XML"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Dipartimento No."
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "Impossibile cambiare la password, '%s' utente sconosciuto"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Numero del dipartimento"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
+msgstr "é necessario compilare saslRealm o saslExop nello schermo di configurazione per usare SASL"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Matricola No."
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Errore di configurazione"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Matricola dell'impiegato"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Pagina"
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Qualifica"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "L'esportazione PDF non è possibile: non ci sono librerie PDF installate."
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr "Impossibile trovare %s nell'annuario LDAP"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr "Non le é permesso cambiare la propria password"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr "Devi attendere %d secondi prima di cambiare di nuovo la password"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "Il canale richiesto non esiste! Contatta l'amministratore del sistema."
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
-msgstr "La password si trova nella cronologia delle vecchie password"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Annulla tutto"
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
-msgstr "La password non è stata cambiata dal valore esistente"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Impossibile incollare"
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Devi specificare la tua 'Password attuale' per procedere."
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Nome utente"
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr "Le password che hai inserito come \" Nuova password \" e \"Ripeti nuova password\" non corrispondono."
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Modello"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Imposta la nuova password"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
+msgstr "Modello di oggetti, utilizzato per creare diversi oggetti con valori simili"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "La password che hai definito come 'Nuova password' è troppo simile a quella attuale."
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Nome del modello"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "La 'Nuova password' immessa è troppo corta."
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "Errore fatale: non è stato definito nessuno spazio per le classi - esegui '%s' per porre rimedio al problema"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "La password contiene caratteri Unicode eventualmente problematici!"
+#: include/functions.inc:142
+#, php-format
+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"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/functions.inc:512
+#, 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'"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Modifica le impostazioni POSIX dell'utente"
+#: include/functions.inc:583
+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."
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Home directory"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Errore di autentificazione"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "Il path verso la cartella personale di questo utente"
+#: include/functions.inc:617
+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"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Errore all'aggiunta di un bloccaggio. Contatta i programmatori !"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr "Quale shell dovrà essere usata quando l'utente sarà connesso"
+#: include/functions.inc:678
+#, 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 !"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Gruppo primario"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "Il server LDAP ha risposto: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
-msgstr "Gruppo primario per questo utente"
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Stato"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Il valore limite dell'entries %d è stato superato !"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
-msgstr "Stato di questo account utente unix"
+#: include/functions.inc:1132
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
-msgstr "Forza l'id utente/gruppo"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Configura"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
-msgstr "Forza valori ID utente e ID gruppo per questo utente"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "incompleto"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
-msgstr "Utente"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Prosegui comunque"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
-msgstr "Valore utente per questo utente"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Modifica malgrado l'avvertimento"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr "numero del Gruppo"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr "Sei sul punto di modificare la/le voce/voci %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr "Valore del numero del gruppo per questo utente"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Voci per pagina"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Gruppi di appartenenza"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Applica filtro"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Account"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr "%sB"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "L'utente dovrà cambiare la password alla prima connessione"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr "%sKiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr "L'utente deve cambiare password al primo login (serve un valore di ritardo prima di forzare il cambio password)"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr "%sMiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
-msgstr "Lasso di tempo minimo tra le modifiche delle password (giorni)"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr "%sGiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
-msgstr "L'utente non sarà in grado di cambiare la propria password prima di questo numero di giorni (lasciare vuoto per disabilitare)"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr "%sTiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr "Richiamo prima dell'obbligo di modifica della password (giorni)"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
+msgstr "%sPiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
-msgstr "L'utente sarà obbligato di cambiare la sua password dopo questo numero di giorni (lasciare vuoto per disabilitare)"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
+msgstr "%sPiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr "Data di scadenza della password"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
+msgstr "%sZiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr "Data dopo la quale questa password utente scadrà (lasciare vuoto per disabilitare)"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
+msgstr "%sYiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr "Periodo di inattività prima della disattivazione dell'account utente (giorni)"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr "Ritardo massimo di inattività dopo la scadenza della password prima che l'utente venga disabilitato (lasciare vuoto per disabilitare)"
-
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr "Richiamo per l'utente prima che la password scada (giorni)"
+"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."
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr "L'utente sarà avvertito questo numero di giorni prima della scadenza della sua password (lasciare vuoto per disabilitare)"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Impossibile scrivere il file di revisione !"
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Consenti all'utente di connettersi solo a questo elenco di host"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "Impossibile leggere il file di revisione !"
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "non configurato"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr "'prossimo Hook ID\" non é disponibile. Usa una base predefinita!"
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automatico"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Avvertimento LDAP"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "Scaduto"
+#: include/functions.inc:2559
+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 !"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "Il tempo di grazia è attivo"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr "Schema principale di FusionDirectory"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "Attivo"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
+msgstr "Schema utilizzato per memorizzare la configurazione di FusionDirectory"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "Password scaduta"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
+msgstr "Utilizzato per memorizzare le informazioni in modalità fiducia in utenti o gruppi."
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "Password non modificabile"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr "Usato per memorizzare i modelli."
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
+msgstr "Usato per memorizzare le informazioni POSIX."
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:2617
 #, php-format
-msgid "Group of user %s"
-msgstr "Gruppo di utenti %s"
+msgid "Missing required object class \"%s\"!"
+msgstr "Manca la classe di oggetti necessaria \"%s\"!"
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr "Modifica gruppi e ruoli degli utenti"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
+msgstr "Manca classe di oggetti optional \"%s\"!"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr "Gruppi di appartenenza"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Classe(i) disponibile(i)"
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr "Ruoli di appartenenza"
+#: include/functions.inc:2641
+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."
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr "Configurazione plugins"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
+msgstr "Per usare gruppi misti l'objetClass \"posixGroup\" deve essere AUSILIARIO"
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr "Configurazione dei plugins di FusionDirectory"
+#: include/functions.inc:2645
+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."
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Gruppi di oggetti"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+msgstr "L'objectClass \"posixGroup\" deve essere STRUTTURALE"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr "OGroup RDN"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "Impossibile assegnare un ID libero:"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr "Ramo nel quale i gruppi di oggetti saranno salvati"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "Metodo idAllocation sconosciuto !"
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "%sPoolMin >= %sPoolMax!"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr "Obbligare a chiedere la password"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "sambaUnixIdPool non è univoco !"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr "Utile se si aggiunge un gancio con valore di password quando le password degli utenti SASL vengono modificate"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "nessun ID disponibile !"
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Configurazione"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "Il numero massimo di tentativi è stato superato"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr "Configurazione di FusionDirectory"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Impossibile assegnare un ID libero!"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr "Schermo di configirazione di FusionDirectory"
+#: include/functions.inc:3321
+#, 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"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Temi e apparenze"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Tutti gli oggetti in questa categoria"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Lingua"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Correggi l'errore qui sotto e ricarica la pagina."
 
-#: 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 "Linguaggio dell'applicazione. Se 'automatico' oppure non disponibile, verrà usato quello richiesto dal browser. Questa impostazione puó essere ridefinita per utente."
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr "L'impostazione  \"%s\" del fuso orario nella vostra configurazione non é valida."
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Tema"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Errore XML nel file fusiondirectory.conf: %s alla linea %d"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr "Tema da usare"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgstr "Sembra che si stia tentando di decodificare qualcosa che non è codificato : \n%s <br/> Si prega di controllare non si stia utilizzando un file fusiondirectory.secrets mentre le password non sono crittografate."
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Fuso orario"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr "Fuso orario da usare"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
+msgstr "Location \" %s\" non è stata trovata nel file di configurazione"
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr "Impostazione schema"
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr "Convalida dello schema"
+#: include/class_config.inc:899
+#, 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'."
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr "Attivare la validazione degli schemi alla connessione"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Tutte le categorie"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Impostazioni per la password"
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Identità personale"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr "Algoritmo di memorizzazione delle password"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Seleziona per avere la lista di oggetti del tipo '%s'."
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr "Algoritmo di default da usare"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Seleziona per avere la lista degli oggetti che contengono '%s'."
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr "Forza l'algoritmo di default"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Seleziona per avere la lista degli oggetti che hanno '%s' attivato"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr "Forza l'uso dell'algoritmo di default per le password"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Seleziona per ricercare nella sottostruttura"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Lunghezza minima per le password"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Cerca nella sottostruttura"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr "Lunghezza minima per le password utente"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Questo oggetto sarà cancellato !"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr "Differenze minime della password"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "L'oggetto '%s' sarà cancellato !"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr "Numero minimo di caratteri diversi rispetto alla  vecchia password"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Questo oggetto sarà cancellato: %s"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Utilizza una scadenza per l'account"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "L'oggetto '%s' sarà cancellato: %s"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr "Attiva gli attributi di test della password durante la connessione a FusionDirectory e forza il rinnovo della password oppure blocca l'account"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Questo oggetto sarà cancellato:"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr "SASL Realm"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "L'oggetto '%s' sarà cancellato:"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr "SASL Exop"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Questi oggetti saranno cancellati: %s"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr "Attributo da salvare nell'attributo userPassword"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Gli oggetti '%s' saranno cancellati: %s"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr "Impostazioni di base"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Non hai il permesso di cancellare questo oggetto !"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Mostra il riepilogo negli elenchi"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Non hai il permesso di cancellare l'oggetto:"
 
-#: plugins/config/class_configInLdap.inc:162
-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 "Determina se una barra di stato verrà visualizzata nella parte inferiore delle liste, visualizzando una breve sintesi del tipo e del numero di elementi nella lista."
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Non hai il permesso di cancellare questi oggetti:"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr "Blocco modifica"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Non hai il permesso di creare questo oggetto !"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr "Controlla se una voce attualmente in fase di modifica è stata modificata al di fuori di FusionDirectory nel frattempo."
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Non hai il permesso di creare l'oggetto:"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr "Attiva il debugging"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Non hai il permesso di creare lquesti oggetti:"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr "Log degli eventi dal lato di FusionDirectory."
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Non hai il permesso di modificare questo oggetto !"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr "Dimensione massima dell'annuario LDAP"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgstr "Non hai il permesso di modificare i campi \"%s\" di oggetto \"%s\""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr "Definisce il numero di voci ottenibili da LDAP come impostazione predefinita."
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
+msgstr "Non hai il permesso di modificare l'oggetto:<br/>%s"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Connessione e sessione"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
+msgstr "Non hai il permesso di modificare questi oggetti:<br/>%s"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Attributo di connessione"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Non hai il permesso di visualizzare questo oggetto !"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr "Quale attributo LDAP deve essere utilizzato come nome di login durante il login."
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Non hai il permesso di visualizzare l'oggetto:"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Forza le connessioni criptate"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Non hai il permesso di visualizzare questi oggetti:"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr "Abilita i controlli di sicurezza PHP per forzare l'accesso cifrato (https) verso l'interfaccia web."
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Non hai il permesso di spostare questo oggetto !"
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Mostra un avvertimento quando la sessione non è criptata"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Non hai il permesso di spostare l'oggetto:"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr "verrà visualizzato un avvertimento all'utente quando si utilizza http invece di https."
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Non hai il permesso di spostare questi oggetti:"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Durata di vita della sessione"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Informazioni per la connessione"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr "Definisce, in secondi, quando una sessione scade (0 per disabilitare)"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Impossibile connettersi al database %s !"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr "Autentificazione HTTP Basic"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Impossibile selezionare la base dati %s !"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr "Usa protocollo di autenticazione HTTP Basic anziché il modulo di login."
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Nessun server %s definito !"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr "Autenticazione HTTP Header"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Impossibile interrogare il database %s !"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr "Utilizzare l'autenticazione HTTP Header anziché il modulo di login."
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Il campo '%s' contiene una parola chiave riservata !"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr "Nome intestazione"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "Il comando '%s', specificato come connessione dell'estensione '%s' non esiste !"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr "Nome dell'header contenente identificativo utente."
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "Il comando '%s' non è valido."
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr "Copie istantanee"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "L'opzione '%s' del comando per l'estensione %s non è valida !"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Attiva le copie istantanee"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "L'opzione '%s' del comando (%s) non è valida !"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr "Questo abilita la possibilità di salvare alcuni stati delle entrate per poterle in seguito restaurare"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "L'opzione '%s' del comando (%s) per l'estensione %s non è valida !"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Base per le copie istantanee"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Impossibile eseguire il comando '%s' !"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr "La base dove gli snapshot saranno immagazzinati nell'annuario LDAP."
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Impossibile eseguire l'opzione '%s' del comando per l'estensione %s !"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr "SSL"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "Impossibile eseguire l'opzione '%s' del comando (%s) !"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr "Percorso della chiave"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Impossibile eseguire l'opzione '%s' del comando (%s) per l'estensione %s !"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr "Percorso a chiave privata FusionDirectory . Inutilizzato per ora."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Il valore specificato per '%s' è troppo grande !"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr "Percorso del Certificato"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "'%s' deve essere più piccolo di %s !"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr "Percorso al certificato di FusionDirectory;  Inutilizzato per ora."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Il valore specificato per '%s' è troppo piccolo !"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr "Percorso del certificato CA"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "'%s' deve essere %d o un valore più grande !"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr "Percorso al certificato CA. Usato per convalidare l'host del Server Argonaut."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "'%s' dipende da '%s' - indica entrambi i valori !"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr "CAS"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "C'è un'altra entry con l'attributo '%s' nel sistema !"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr "Abilita CAS"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
+msgstr "La entry '%s' usa già l'attributo '%s'!"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr "IL Login CAS verrà usato al posto del bind LDAP"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Il campo necessario '%s' è vuoto !"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr "Percorso del file contenente il certificato CA sul server CAS"
+#: include/class_msgPool.inc:435
+msgid "Example:"
+msgstr "Esempio:"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Host"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
+msgstr "Il campo '%s' contiene caratteri sbagliati"
+
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "'%s' non è permesso:"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr "Host del server CAS"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "'%s' non è permesso !"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Porta"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Estensione PHP %s  mancante !"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr "Porta sulla quale il server CAS è all'ascolto"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Annulla"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr "Contesto CAS"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Applica"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr "Contesto CAS da utilizzare"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Registra"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Ramo dell'annuario dove sono immagazzinate le informazioni sugli utenti e i gruppi"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Aggiungi"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "Tipo di attributo DN degli utenti"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Aggiungi %s"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr "Attributo da usare all'inizio del dn degli utenti"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Elimina"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr "Modello CN"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Rimuovi %s"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr "Modello da usare per costruire il nome comune del campo"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Modifica..."
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr "Regola di denominazione rigorosa"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Modifica %s..."
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr "Consente il controllo rigoroso di nomi utente e di gruppo"
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Indietro"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr "Gruppo/utente minimo ID"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Questa identità non possiede valide estensioni %s !"
 
-#: plugins/config/class_configInLdap.inc:315
+#: include/class_msgPool.inc:582
+#, php-format
 msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr "Il minimo utente o grupp ID assegnabile per evitare perdite di sicurezza con iaccount ID 0."
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Questa identità ha i parametri %s attivati. Puoi disattivarli cliccando sul bottone qui sotto."
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr "Id hook successivo"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Questa identità ha i parametri %s attivati. Per disattivarla hai bisogno di rimuovere prima di tutto i parametri %s !"
 
-#: plugins/config/class_configInLdap.inc:320
+#: include/class_msgPool.inc:610
+#, php-format
 msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr "Script da nominare per trovare il prossimo numero ID libero per gli utenti o i gruppi."
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Questa identità ha i parametri %s disattivati. Puoi attivarli cliccando sul bottone qui sotto."
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr "Numero base per questo ID utente"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Questa identità ha i parametri %s disattivati. Per attivarli devi prima di tutto impostare i parametri %s !"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr "Dove cominciare a cercare un nuovo id libero per un utente."
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Imposta i parametri %s"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr "Numero base per questo id gruppo"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Rimuovi i parametri %s"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr "Dove cominciare a cercare un nuovo id libero per un gruppo ."
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Click sul bottone 'Modifica' qui sotto per cambiare le informazioni in questa finestra"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr "RDN utenti"
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Gennaio"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr "Ramo nel quale gli utenti sono immagazzinati"
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Febbraio"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr "RDN gruppi"
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Marzo"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr "Il ramo nel quale i gruppi saranno immagazzinati."
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Aprile"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr "Ruolo ACL RDN"
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Maggio"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr "Ramo nel quale i ruoli ACL sono immagazzinati"
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Giugno"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Metodo di assegnazione Id"
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Luglio"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr "Metodo per allocare utente / gruppo id"
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Agosto"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Tradizionale"
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Settembre"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr "Id del pool di Samba unix"
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Ottobre"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr "Minimo pool id dell'utente"
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Novembre"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr "Valore minimo di un id utente quando si utilizza il metodo pool"
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Dicembre"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr "Id utente pool max"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Domenica"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr "Valore massimo di un id utente quando si utilizza il metodo pool"
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Lunedi"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr "Id utente pool min"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Martedi"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr "Valore minimo di un id gruppo quando si utilizza il metodo pool"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Mercoledi"
+
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Giovedi"
+
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Venerdi"
+
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Sabato"
+
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "L'operazione sul database è fallita!"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr "Id gruppo pool min"
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "operazione di lettura"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr "Valore massimo di un id gruppo quando si utilizza il metodo pool"
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "operazione di aggiunta"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr "Limitare i membri del ruolo"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "operazione di modifica"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr "Quando è abilitato solo gli utenti dello stesso ramo o membri di gruppi dello stesso ramo possono essere aggiunti ad un ruolo."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "operazione di rimozione"
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Debugging"
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "operazione di ricerca"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr "Mostra gli errori"
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "autentificazione"
 
-#: plugins/config/class_configInLdap.inc:387
-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 "Mosta gli errori PHP nella parte alta della schermata. Questo dovrebbe essere disabilitato nelle installazioni di produzione, a causa di possibili password che potrebbero passare in chiaro."
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "La richiesta inoltrata all'annuario LDAP %s è fallita!"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Durata massima di una richiesta LDAP"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "La richiesta inoltrata all'annuario LDAP è fallita!"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr "Interrompi le azioni LDAP se non ci sono risposte nel tempo limite impartito in secondi."
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Oggetto"
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Inserisci le statistiche dell'annuario LDAP nel giornale di sistema"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "L'invio è fallito !"
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr "Invia le statistiche di timing LDAP al syslog. Questo può aiutare a trovare i problemi di indicizzazione o i filtri di ricerca erronei."
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Invio fallito: %s"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Livello per il debug"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "Errore di comunicazione con il servizio d'infrastruttura !"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr "Mostra alcune informazioni su ogni caricamento della pagina."
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Errore di comunicazione con il servizio d'infrastruttura: %s"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Altro"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "Questo '%s' è attualmente utilizzato da questo oggetto: %s"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr "Hooks che sarà chiamato quando un'azione specificasi verifica"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "Questo '%s' è attualmente in uso."
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr "tab"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "Questo '%s' è attualmente utilizzato da questi oggetti: %s"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr "Il tab concernente questo hook"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Il file '%s' non esiste !"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "Modalità"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Il file '%s' non puó essere aperto in lettura !"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr "Quando chiamare questo comando"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "Il file '%s' non puó essere aperto in scrittura !"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr "comando"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "Il valore di '%s' nno è ancora stato configurato oppure non è valido, verifica il file di configurazione !"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr "Il comando che sarà chiamato"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "Il file '%s' non puó essere cancellato !"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Connessioni"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "La cartella '%s' non puó essere creata  !"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr "Mostra hook di uscita"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "La cartella '%s' non puó essere cancellata !"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr "Quando l'esecuzione dell'hook é abilitata con successo il risultato é mostrato all'utente tramite una finestra di dialogo."
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Verificazione del supporto per %s"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr "Shell disponibili"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
+msgstr "Istalla e attiva il modulo PHP %s."
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr "Shell POSIX disponibili per gli utenti FD"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
+msgstr "Installa e attiva il modulo Pear %s."
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr "Mostra tab ACL su tutti gli oggetti"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "Impossibile inizializzare la classe '%s' ! Forse manca un'estensione nell'installazione di FusionDirectory ?"
 
-#: plugins/config/class_configInLdap.inc:463
+#: include/class_msgPool.inc:884
 msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr "Per l'impostazione di diritti ACL molto specifici potreste aver bisogno di dare accesso ad un singolo oggetto."
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr "La base qui fornita non è valida ed è stata reimpostata al suo valore originario !"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr "Categorie di reparto disponibili"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
+msgstr "Creare una copia instantanea degli oggetti"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr "Categorie disponibili nel menu a discesa"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
+msgstr "Ripristinare snapshots"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automatico"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Registrazione cronologica"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Recupero della password"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
+msgstr "Timestamp di questa creazione di snapshot"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Gestione delle impostazioni per il recupero della password"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
+msgstr "Motivo"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Impostazioni per il recupero della password"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
+msgstr "Motivo della creazione di questa copia instantanea"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Attivare il recupero della password"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Anno-mese-giorno, Ore:minuti:secondi"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr "Sia che si attivi o no la funzione di recupero password"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr "Restaura"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Indirizzo email del mittente"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
+msgstr "Ripristinare snapshots"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "Indirizzo e-mail da cui la mail sarà inviata"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
+msgstr "Copie istantanee"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Durata del link (minuti)"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
+msgstr "Copia istantanea esistente per questo oggetto"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr "Numero di minuti prima che il link di recupero scada"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "File"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr "Stringa aleatoria per il tokens"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Linea"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Solo una misura di sicurezza, potete mettere qualsiasi cosa dentro, anche dei caratteri casuali"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "Errore PHP"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Consentire l'uso di indirizzi alternativi"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "classe"
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Gli utenti possono usare uno dei loro indirizzi email alternativi per il recupero della loro password"
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "funzione"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "Prima email"
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "statico"
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Oggetto"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "metodo"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Soggetto della prima email"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Traccia"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] link verso il recupero della password"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Tipo"
 
-#: plugins/config/class_recoveryConfig.inc:90
-#, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr "Corpo del messaggio (il primo %s è il login, il secondo è il link)"
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argomenti"
 
-#: plugins/config/class_recoveryConfig.inc:91
-#, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
-msgstr "Corpo del messaggio della prima email, inviata quando l'utente chiede una nuova password. %s è usato per il login utente e il link di recupero."
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "La creazione di questa pagina, secondo l'interprete PHP, ha generato degli errori ! "
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Salve,\n\necco le informazioni sul tuo account : \n - Login : %s\n - Link : %s\n\nQuesto link sarà valido solo per 10 minuti."
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Invia i tuoi commenti a proposito di un bug al Team di FusionDirectory"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Seconda email"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Invia un rapporto di bug"
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Soggetto della seconda email"
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Mostra/Nascondi l'informazione"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Il recupero della password è stato eseguito con successo"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Avvertimento sul rendimento"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
 #, php-format
-msgid "Body (%s is login)"
-msgstr "Corpo del messaggio (%s è il login utente)"
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr "Il rendimento del tuo annuario LDAP è scarso: l'ultima richiesta è durata %.2fs !"
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:846
 #, php-format
 msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr "Corpo del messaggio della seconda email, inviata per confermare la modifica della password. %s è usato per il login dell'utente."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr "Impossibile creare automaticamente delle sottostrutture con RDN \"%s\": alcun class object trovato!"
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:882
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Salve,\n\nLa tua password è stata modificata.\nIl tuo login è sempre %s."
-
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
-msgstr "Configurazione dashboard"
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgstr "Impossibile creare automaticamente delle sottostrutture con RDN \"%s\": non supportato"
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr "Configurazione del plugin dashbord di FusionDirectory"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "durante l'operazione su '%s' usando il server LDAP '%s'"
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr "Schema nome dashbord"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "durante l'operazione sul server LDAP %s"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr "Numero di cifre"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
+msgstr "proc_open non é riuscito ad eseguire la ricerca LDAP"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr "NUmero di cifre da usare dopo il prefisso"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr "Errore alla Linea %s, la prima riga di una voce non puo'iniziare con uno spazio "
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr "Prefissi"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
+msgstr "Errore alla linea %s, i riferimenti ad un file esterno non sono supportati"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr "Prefissi da usare per gli Id del computer"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr "Errore alla linea %s, l'attribution \"%s\" non ha alcun valore"
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
-msgstr "Utenti dashbord scaduti"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
+msgstr "Errore alla linea %s, un blocco d'ingresso puo'avere solo un dn"
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
-msgstr "Numero di giorni"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr "Errore alla linea %s, un blocco d'ingresso dovrebbe iniziare con il dn"
 
-#: plugins/config/class_dashBoardConfig.inc:62
+#: include/class_ldap.inc:1170
+#, php-format
 msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
-msgstr "Numero di giorni prima della scadenza necessari per un account per mostrare nel dashboard la prossima scadenza degli account"
-
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Plugins"
-
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr "Configurazione dei plugins"
-
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Sopra"
-
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Sotto"
-
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
-msgstr "Ordina in modo crescente"
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Errore durante l'importazione del dn: '%s', verifica il tuo file LDIF a partire dalla linea %s !"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
-msgstr "Ordina in modo decrescente"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Seleziona le entries desiderate"
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Seleziona tutto"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nome"
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Errore"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Descrizione"
 
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "Creato da"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
+msgstr "Gruppo POSIX %s"
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Vai al dipartimento base"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
+msgstr "Ruolo %s"
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Root"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
+msgstr "Raggruppa %s"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Sali di un dipartimento"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Gruppo di utenti"
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
-msgstr "Vai al dipartimento dell'utente"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Nessuno"
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Home"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Sconosciuto"
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Ricarica la lista"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Modifica"
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Invia"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Elimina"
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Copia"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "Non è stata trovata nessuna estensione per inizializzare '%s', verifica il file di configurazione."
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Taglia"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "La cancellazione è stata interrotta dall'estensione '%s': %s"
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Incolla"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr "Passare da \"%s\" a \"%s\" non riuscito"
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Taglia questa voce"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Copia questa voce"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
+msgstr "KiB"
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Restaura le 'copie istantanee'"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
+msgstr "MiB"
 
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Lista d'esportazione"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr "GiB"
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Restaura la 'copia istantanea'"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
+msgstr "TiB"
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Crea una 'copia istantanea'"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "secondi"
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Crea una nuova 'copia istantanea a partire da questi oggetti"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "minuti"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Errore di filtro"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "ore"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "Il filtro non è completo!"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "giorni"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Errore d'autorizzazione"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr "Modello"
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/class_simpleManagement.inc:243
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Non sei autorizzato a creare una 'copia instantanea' di %s."
+msgid "%s template"
+msgstr "Modello %s"
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Non sei autorizzato a restaurare una 'copia instantanea' di %s."
+msgid "Show %s"
+msgstr "Mostra %s"
 
-#: include/class_management.inc:679
-#, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "Nessuna dichiarazione per '% s' nel file di configurazione. Impossibile inizializzare il plugin !"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr "Nessuna etichetta"
 
-#: include/class_config.inc:156
-#, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "Errore XML nel file fusiondirectory.conf: %s alla linea %d"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr "Impostazioni del template"
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Errore di configurazione"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr "Questo è il nome del template"
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr "Solo la scheda principale puo' calcolare il dn"
+
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
-msgstr "Sembra che si stia tentando di decodificare qualcosa che non è codificato : \n%s <br/> Si prega di controllare non si stia utilizzando un file fusiondirectory.secrets mentre le password non sono crittografate."
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr "Non puo' calcolare il dn: nessuna scheda di classe parente per \"%s\""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Errore LDAP"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr "Impossibile calcolare il dn: impossibile trovare le informazioni di objectType in questa  classe scheda \"%s\""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Errore durante il salvataggio"
 
-#: include/class_config.inc:357
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
-msgstr "Location \" %s\" non è stata trovata nel file di configurazione"
+msgid "There is already an entry with the same dn : %s"
+msgstr "C'é già un'altra entry con il medesimo dn: %s"
 
-#: include/class_config.inc:885
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
+msgid "The entry %s is not existing"
+msgstr "La voce %s non esiste"
+
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
 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."
+"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 "L'oggetto é cambiato dopo l'apertura in FusionDurectory. Tutte le modifiche che possono essere state fatte da altri andranno perse se si salva questa voce !"
 
-#: include/class_config.inc:898
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, 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'."
+msgid "Unknown field \"%s\""
+msgstr "Campo \"%s\" sconosciuto"
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Tutte le categorie"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
+msgstr "%s (necessario)"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Identità personale"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr "Base dell'oggetto"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Avvertimento sul rendimento"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+msgstr "Il valore \"%s\" per il campo \"%s\" non si trova nella lista delle scelte possibili"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr "Il rendimento del tuo annuario LDAP è scarso: l'ultima richiesta è durata %.2fs !"
+msgid "Cannot read uploaded file: %s"
+msgstr "Impossibile leggere il file importato : %s"
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Errore interno"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "il file è vuoto"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "Il file non è stato trovato"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "Il file non puó essere letto"
 
-#: include/class_ldap.inc:846
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
+msgid "%s (%d bytes)"
+msgstr "%s (%d bytes)"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Caricare"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Scarica"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
-msgstr "Impossibile creare automaticamente delle sottostrutture con RDN \"%s\": alcun class object trovato!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr "Impossibile salvare la foto dell'utente, Fusiondirectory necessita che il modulo PHP \"imagick\" sia installato "
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
-msgstr "Impossibile creare automaticamente delle sottostrutture con RDN \"%s\": non supportato"
+msgid "Invalid value for %s"
+msgstr "Valore non valido per %s"
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "durante l'operazione su '%s' usando il server LDAP '%s'"
+msgid "Error, incorrect date: %s"
+msgstr "Errore, la data non é corretta: %s"
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "durante l'operazione sul server LDAP %s"
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
-msgstr "proc_open non é riuscito ad eseguire la ricerca LDAP"
+msgid "An integer between %d and %d"
+msgstr "Un numero intero compreso tra %d e %d"
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
-msgstr "Errore alla Linea %s, la prima riga di una voce non puo'iniziare con uno spazio "
+msgid "An integer larger than %d"
+msgstr "Un numero intero più grande di %d"
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
-msgstr "Errore alla linea %s, i riferimenti ad un file esterno non sono supportati"
+msgid "An integer smaller than %d"
+msgstr "Un numero intero più piccolo di %d"
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
-msgstr "Errore alla linea %s, l'attribution \"%s\" non ha alcun valore"
+msgid "A float between %f and %f"
+msgstr "Un numero con la virgola compreso tra %f e %f"
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
-msgstr "Errore alla linea %s, un blocco d'ingresso puo'avere solo un dn"
+msgid "A float larger than %f"
+msgstr "Un numero con la virgola più grande di %f"
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
-msgstr "Errore alla linea %s, un blocco d'ingresso dovrebbe iniziare con il dn"
+msgid "A float smaller than %f"
+msgstr "Un numero con la virgola più piccolo di %f"
+
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr "C'é stato un problema nella decompressione dei dati di snapshot"
 
-#: include/class_ldap.inc:1194
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Errore durante l'importazione del dn: '%s', verifica il tuo file LDIF a partire dalla linea %s !"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr "La dipendenza riccorsiva nei campi di modello: \"%1$s\" non puo' dipendere da \"%2$s\" dato che \"%2$s\" dipende già da \"%1$s\""
 
-#: include/class_msgPool.inc:43
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Seleziona per avere la lista di oggetti del tipo '%s'."
+msgid "Tab \"%s\""
+msgstr "Tab \"%s\""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Seleziona per avere la lista degli oggetti che contengono '%s'."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Seleziona per avere la lista degli oggetti che hanno '%s' attivato"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Gestire le liste di controllo degli accessi"
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Seleziona per ricercare nella sottostruttura"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Ruoli ACL"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Cerca nella sottostruttura"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr "Tipo '%s'! ACL sconosciuto! Potrebbe seere necessario eseguire \"fusiondirectory-impostazione --migrare-acls\" per migrare gli ACL verso un nuovo formato."
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Questo oggetto sarà cancellato !"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Voce '%s' sconosciuta !"
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "L'oggetto '%s' sarà cancellato !"
+msgid "All users"
+msgstr "Tutti gli utenti"
 
-#: include/class_msgPool.inc:74
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
+
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Questo oggetto sarà cancellato: %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "La cartella '%s' dichiarata come cartella di compilazione è inaccessibile !"
 
-#: include/class_msgPool.inc:76
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "L'oggetto '%s' sarà cancellato: %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+msgstr "Attenzione: la sessione  <a href=\"%s\"> non é crittografata!</a>"
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Questo oggetto sarà cancellato:"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
+msgstr "Attenzione: la durata della sessione configurata nel fusiondirectory.conf verrà sostituita dalle impostazioni di php.ini."
 
-#: include/class_msgPool.inc:83
+#: html/index.php:150
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "L'oggetto '%s' sarà cancellato:"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"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."
 
-#: include/class_msgPool.inc:87
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Errore Smarty"
+
+#: html/index.php:173
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Questi oggetti saranno cancellati: %s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
+msgstr "Il directory \"%s\" specificato come directory di compilazione non é accessibile!"
 
-#: include/class_msgPool.inc:89
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "La tua sessione in FusionDirectory è scaduta!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr "Il tuo IP è stato cambiato!"
+
+#: html/index.php:214
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Gli oggetti '%s' saranno cancellati: %s"
+msgid "Invalid plugin parameter \"%s\"!"
+msgstr "Parametro \"%s\" di plugin invalido"
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Non hai il permesso di cancellare questo oggetto !"
+#: html/index.php:217
+msgid "No session found!"
+msgstr "Nessuna sessione trovata!"
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Non hai il permesso di cancellare l'oggetto:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr "Lo schema LDAP verifica gli errori riportati:"
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Non hai il permesso di cancellare questi oggetti:"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr "Errore di schema LDAP"
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Non hai il permesso di creare questo oggetto !"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Prego specifica un nome utente valido !"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Non hai il permesso di creare l'oggetto:"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Prego specifica la tua password !"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Non hai il permesso di creare lquesti oggetti:"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Verifica il nome utente e la password."
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Non hai il permesso di modificare questo oggetto !"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Conto bloccato. Contatta l'amministratore del sistema!"
 
-#: include/class_msgPool.inc:151
+#: html/index.php:454
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
-msgstr "Non hai il permesso di modificare i campi \"%s\" di oggetto \"%s\""
+msgid "No value found in HTTP header \"%s\""
+msgstr "Nessun valore trovato nell'header HTTP \"%s\""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:475
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
-msgstr "Non hai il permesso di modificare l'oggetto:<br/>%s"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr "L'utente header \"%s\"  non è stato trovato nel LDAP"
 
-#: include/class_msgPool.inc:161
+#: html/index.php:485
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
-msgstr "Non hai il permesso di modificare questi oggetti:<br/>%s"
-
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Non hai il permesso di visualizzare questo oggetto !"
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Non hai il permesso di visualizzare l'oggetto:"
-
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Non hai il permesso di visualizzare questi oggetti:"
-
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Non hai il permesso di spostare questo oggetto !"
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr "L'utente header \"%s\" corrisponde a più utenti in LDAP"
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Non hai il permesso di spostare l'oggetto:"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr "Impossibile trovare l'utente \"%s\" CAS nell'annuario LDAP"
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Non hai il permesso di spostare questi oggetti:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr "L'utente CAS \"%s\" corrisponde a più utenti nell'annuario LDAP"
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Informazioni per la connessione"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Il tuo navigatore web ha i cookies disattivati. Attiva i cookies e ricarica la pagina prima di connetterti !"
 
-#: include/class_msgPool.inc:225
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Impossibile connettersi al database %s !"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "Il file di configurazione %s/%s non è leggibile. Operazione Annullata."
 
-#: include/class_msgPool.inc:245
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "Cannot select %s database!"
-msgstr "Impossibile selezionare la base dati %s !"
+msgid "Did not find an account with login \"%s\""
+msgstr "Alcun account trovato con login \"%s\" "
 
-#: include/class_msgPool.inc:255
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "No %s server defined!"
-msgstr "Nessun server %s definito !"
+msgid "Found multiple accounts with login \"%s\""
+msgstr "Trovati più accounts con login \"%s\""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
-msgstr "Impossibile interrogare il database %s !"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Indirizzo di posta elettronica"
 
-#: include/class_msgPool.inc:285
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Il campo '%s' contiene una parola chiave riservata !"
+msgid "There is no account using email \"%s\""
+msgstr "Non c'è nessun account che usa l'indirizzo mail %s"
 
-#: include/class_msgPool.inc:297
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "Il comando '%s', specificato come connessione dell'estensione '%s' non esiste !"
+msgid "There are several accounts using email \"%s\""
+msgstr "Ci sono più account che usano l'indirizzo mail %s"
 
-#: include/class_msgPool.inc:313
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "Il comando '%s' non è valido."
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr "L'utente che usa la mail \"%s\" é bloccato. Si prega di contattare l'amministratore di sistema."
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "L'opzione '%s' del comando per l'estensione %s non è valida !"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Contattare l'amministratore, c'è stato un problema con il server di posta elettronica"
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "L'opzione '%s' del comando (%s) non è valida !"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr "Questo token non è valido"
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "L'opzione '%s' del comando (%s) per l'estensione %s non è valida !"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr "Si è verificato un problema con il server mail, la email di conferma non è stata inviata"
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Impossibile eseguire il comando '%s' !"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Configurazione PHP"
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Impossibile eseguire l'opzione '%s' del comando per l'estensione %s !"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Errore fatale: Register globals è attivato. FusionDirectory rifiuterà ogni accesso utente finchè questo errore non sarà corretto da un amministratore."
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "Impossibile eseguire l'opzione '%s' del comando (%s) !"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Modifica della password"
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Impossibile eseguire l'opzione '%s' del comando (%s) per l'estensione %s !"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "La tua password sta per scadere, per favore cambiala !"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Il valore specificato per '%s' è troppo grande !"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr "La tua password é scaduta, per favore impostarne una nuova."
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "'%s' deve essere più piccolo di %s !"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "Fine della memoria disponibile !"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Il valore specificato per '%s' è troppo piccolo !"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Le verifiche ACL dell'utente sono state disattivate"
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "'%s' deve essere %d o un valore più grande !"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Estensione"
 
-#: include/class_msgPool.inc:393
+#: html/main.php:290
 #, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "'%s' dipende da '%s' - indica entrambi i valori !"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr "Errore fatale: Impossibile trovare alcuna definizione per il plugin '%s' ('%s' non è un file)!"
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "C'è un'altra entry con l'attributo '%s' nel sistema !"
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Errore di configurazione"
 
-#: include/class_msgPool.inc:406
+#: html/main.php:306
 #, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
-msgstr "La entry '%s' usa già l'attributo '%s'!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Errore fatale: non tutte le variabili POST sono state trasferite da PHP - per favore informane l'amministratore!"
 
-#: include/class_msgPool.inc:417
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Il campo necessario '%s' è vuoto !"
+msgid "Welcome %s!"
+msgstr "Benvenuto %s!"
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
-msgstr "Esempio:"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Riferimenti"
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
-msgstr "Il campo '%s' contiene caratteri sbagliati"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "'%s' non è permesso:"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Modifica le impostazioni POSIX dell'utente"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "'%s' non è permesso !"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Home directory"
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Estensione PHP %s  mancante !"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "Il path verso la cartella personale di questo utente"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Annulla"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr "Quale shell dovrà essere usata quando l'utente sarà connesso"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Applica"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Gruppo primario"
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Registra"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr "Gruppo primario per questo utente"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Aggiungi"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr "Stato di questo account utente unix"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Aggiungi %s"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr "Forza l'id utente/gruppo"
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Rimuovi %s"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr "Forza valori ID utente e ID gruppo per questo utente"
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr "Utente"
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr "Valore utente per questo utente"
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr "numero del Gruppo"
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr "Valore del numero del gruppo per questo utente"
+
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Gruppi di appartenenza"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Modifica..."
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Account"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Modifica %s..."
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "L'utente dovrà cambiare la password alla prima connessione"
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Indietro"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr "L'utente deve cambiare password al primo login (serve un valore di ritardo prima di forzare il cambio password)"
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Questa identità non possiede valide estensioni %s !"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr "Lasso di tempo minimo tra le modifiche delle password (giorni)"
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:164
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Questa identità ha i parametri %s attivati. Puoi disattivarli cliccando sul bottone qui sotto."
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr "L'utente non sarà in grado di cambiare la propria password prima di questo numero di giorni (lasciare vuoto per disabilitare)"
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr "Richiamo prima dell'obbligo di modifica della password (giorni)"
+
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Questa identità ha i parametri %s attivati. Per disattivarla hai bisogno di rimuovere prima di tutto i parametri %s !"
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr "L'utente sarà obbligato di cambiare la sua password dopo questo numero di giorni (lasciare vuoto per disabilitare)"
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr "Data di scadenza della password"
+
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Questa identità ha i parametri %s disattivati. Puoi attivarli cliccando sul bottone qui sotto."
+"Date after which this user password will expire (leave empty to disable)"
+msgstr "Data dopo la quale questa password utente scadrà (lasciare vuoto per disabilitare)"
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr "Periodo di inattività prima della disattivazione dell'account utente (giorni)"
+
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Questa identità ha i parametri %s disattivati. Per attivarli devi prima di tutto impostare i parametri %s !"
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr "Ritardo massimo di inattività dopo la scadenza della password prima che l'utente venga disabilitato (lasciare vuoto per disabilitare)"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Imposta i parametri %s"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr "Richiamo per l'utente prima che la password scada (giorni)"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "Rimuovi i parametri %s"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr "L'utente sarà avvertito questo numero di giorni prima della scadenza della sua password (lasciare vuoto per disabilitare)"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Click sul bottone 'Modifica' qui sotto per cambiare le informazioni in questa finestra"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Sistema di fiducia"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Gennaio"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Modalità di fiducia"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Febbraio"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr "Tipo di autorizzazione per questi host"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Marzo"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "disattivato"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Aprile"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "accesso completo"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Maggio"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "autorizza l'accesso a questi host"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Giugno"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Consenti all'utente di connettersi solo a questo elenco di host"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Luglio"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automatico"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Agosto"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "Scaduto"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Settembre"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "Il tempo di grazia è attivo"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Ottobre"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "Attivo"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Novembre"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "Password scaduta"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Dicembre"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "Password non modificabile"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Domenica"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Lunedi"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Martedi"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Il tempo d'attesa per il blocco è scaduto. Blocco ignorato !"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Mercoledi"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr "Gruppo di utenti %s"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Giovedi"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr "Gruppi e ruoli"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Venerdi"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr "Modifica gruppi e ruoli degli utenti"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Sabato"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr "Gruppi di appartenenza"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "L'operazione sul database è fallita!"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr "Ruoli di appartenenza"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "operazione di lettura"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Algoritmo di memorizzazione delle password"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "operazione di aggiunta"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Algoritmo da usare per la password"
+
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Password"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "operazione di modifica"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Password (lasciare vuoto se non si desidera cambiarla)"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "operazione di rimozione"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Ripeti password"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "operazione di ricerca"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr "Stessa password come sopra, per evitare errori"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "autentificazione"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Utente"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "La richiesta inoltrata all'annuario LDAP %s è fallita!"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr "Informazioni account utente"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "La richiesta inoltrata all'annuario LDAP è fallita!"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr "Account utente"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "L'invio è fallito !"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Informazioni personali"
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Invio fallito: %s"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Cognome"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "Errore di comunicazione con il servizio d'infrastruttura !"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr "Cognome utente"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Errore di comunicazione con il servizio d'infrastruttura: %s"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Nome"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "Questo '%s' è attualmente utilizzato da questo oggetto: %s"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr "Nme utente"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "Questo '%s' è attualmente in uso."
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr "Breve descrizione dell'utente"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "Questo '%s' è attualmente utilizzato da questi oggetti: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr "Foto"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Il file '%s' non esiste !"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr "Avatar di questo utente"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Il file '%s' non puó essere aperto in lettura !"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr "Informazioni di contatto organizzativo"
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Il file '%s' non puó essere aperto in scrittura !"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Località"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "Il valore di '%s' nno è ancora stato configurato oppure non è valido, verifica il file di configurazione !"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Regione"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Il file '%s' non puó essere cancellato !"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Indirizzo"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "La cartella '%s' non puó essere creata  !"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr "Indirizzo postale ufficio"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "La cartella '%s' non puó essere cancellata !"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Stanza No."
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Verificazione del supporto per %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Numero dell'ufficio"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Istalla e attiva il modulo PHP %s."
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Telefono"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr "Installa e attiva il modulo Pear %s."
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr "Telefono ufficio"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "Impossibile inizializzare la classe '%s' ! Forse manca un'estensione nell'installazione di FusionDirectory ?"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Cellulare"
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr "La base qui fornita non è valida ed è stata reimpostata al suo valore originario !"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr "Telefono cellulare professionale"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "Errore fatale: non è stato definito nessuno spazio per le classi - esegui '%s' per porre rimedio al problema"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Cercapersone"
 
-#: include/functions.inc:142
-#, php-format
-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"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr "Numero pager ufficio"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Errore fatale"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/functions.inc:512
-#, 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'"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr "Numero fax ufficio"
 
-#: include/functions.inc:583
-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."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Home Page"
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Errore di autentificazione"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr "Pagina Web personale"
 
-#: include/functions.inc:617
-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"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr "Informazioni account utente"
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Errore all'aggiunta di un bloccaggio. Contatta i programmatori !"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr "Login utente"
 
-#: include/functions.inc:678
-#, 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 !"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr "Password dell'utente"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "Il server LDAP ha risposto: %s"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr "Informazioni personali utente"
 
-#: include/functions.inc:859
-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."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Mostra il nome"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Il valore limite dell'entries %d è stato superato !"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr "Nome col quale questo utente dovrebbe apparire. Usato da Exchange."
 
-#: include/functions.inc:1132
-#, 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"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr "Indirizzo di casa"
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Configura"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Indirizzo postale di casa"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "incompleto"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Numero di telefono privato"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Prosegui comunque"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Numero di telefono di casa"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Modifica malgrado l'avvertimento"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Informazioni organizzazione"
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr "Sei sul punto di modificare la/le voce/voci %s"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Titolo"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Voci per pagina"
+#: plugins/personal/generic/class_user.inc:415
+msgid ""
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr "Titolo di una persona nel proprio contesto organizzativo. Ogni titolo è una valore di questo attributo multivalore"
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Applica filtro"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organizzazione"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr "%sB"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Dipartimento"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr "%sKiB"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
+msgstr "Dipartimento al quale appartiene l'utente"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr "%sMiB"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Dipartimento No."
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
-msgstr "%sGiB"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Numero del dipartimento"
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
-msgstr "%sTiB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Matricola No."
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
-msgstr "%sPiB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Matricola dell'impiegato"
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
-msgstr "%sPiB"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Qualifica"
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
-msgstr "%sZiB"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Manager"
 
-#: include/functions.inc:2125
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sYiB"
-msgstr "%sYiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgstr "Impossibile trovare %s nell'annuario LDAP"
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr "Non le é permesso cambiare la propria password"
 
-#: include/functions.inc:2294
+#: plugins/personal/generic/class_user.inc:621
 #, 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."
+msgid "You must wait %d seconds before changing your password again"
+msgstr "Devi attendere %d secondi prima di cambiare di nuovo la password"
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "Impossibile scrivere il file di revisione !"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr "La password si trova nella cronologia delle vecchie password"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "Impossibile leggere il file di revisione !"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr "La password non è stata cambiata dal valore esistente"
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr "'prossimo Hook ID\" non é disponibile. Usa una base predefinita!"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Devi specificare la tua 'Password attuale' per procedere."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Avvertimento LDAP"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr "Le password che hai inserito come \" Nuova password \" e \"Ripeti nuova password\" non corrispondono."
 
-#: include/functions.inc:2586
-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 !"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Imposta la nuova password"
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
-msgstr "Schema principale di FusionDirectory"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "La password che hai definito come 'Nuova password' è troppo simile a quella attuale."
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
-msgstr "Schema utilizzato per memorizzare la configurazione di FusionDirectory"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "La 'Nuova password' immessa è troppo corta."
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
-msgstr "Utilizzato per memorizzare le informazioni in modalità fiducia in utenti o gruppi."
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "La password contiene caratteri Unicode eventualmente problematici!"
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
-msgstr "Usato per memorizzare i modelli."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr "Statistiche sugli utenti"
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr "Usato per memorizzare le informazioni POSIX."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
+msgstr "Statistiche utenti"
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
-msgstr "Manca la classe di oggetti necessaria \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
+msgstr "Gruppi di statistiche"
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
-msgstr "Manca classe di oggetti optional \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
+msgstr "Account scaduti"
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Classe(i) disponibile(i)"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
+msgstr "Dashboard"
 
-#: include/functions.inc:2668
-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."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr "Statistiche e informazioni varie"
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr "Per usare gruppi misti l'objetClass \"posixGroup\" deve essere AUSILIARIO"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
+msgstr "Reporting"
 
-#: include/functions.inc:2672
-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."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr "Statistiche"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
-msgstr "L'objectClass \"posixGroup\" deve essere STRUTTURALE"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Recupero della password"
+
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Gestione delle impostazioni per il recupero della password"
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "Impossibile assegnare un ID libero:"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Impostazioni per il recupero della password"
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "Metodo idAllocation sconosciuto !"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Attivare il recupero della password"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
+msgstr "Sia che si attivi o no la funzione di recupero password"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "sambaUnixIdPool non è univoco !"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Indirizzo email del mittente"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "nessun ID disponibile !"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "Indirizzo e-mail da cui la mail sarà inviata"
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "Il numero massimo di tentativi è stato superato"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Durata del link (minuti)"
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Impossibile assegnare un ID libero!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr "Numero di minuti prima che il link di recupero scada"
 
-#: include/functions.inc:3345
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr "Stringa aleatoria per il tokens"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "Il canale richiesto non esiste! Contatta l'amministratore del sistema."
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Solo una misura di sicurezza, potete mettere qualsiasi cosa dentro, anche dei caratteri casuali"
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr "Modello di oggetti, utilizzato per creare diversi oggetti con valori simili"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Consentire l'uso di indirizzi alternativi"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Nome del modello"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Gli utenti possono usare uno dei loro indirizzi email alternativi per il recupero della loro password"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Tutti gli oggetti in questa categoria"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "Prima email"
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "File"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Oggetto"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Linea"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Soggetto della prima email"
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "Errore PHP"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] link verso il recupero della password"
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "classe"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr "Corpo del messaggio (il primo %s è il login, il secondo è il link)"
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "funzione"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr "Corpo del messaggio della prima email, inviata quando l'utente chiede una nuova password. %s è usato per il login utente e il link di recupero."
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "statico"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Salve,\n\necco le informazioni sul tuo account : \n - Login : %s\n - Link : %s\n\nQuesto link sarà valido solo per 10 minuti."
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "metodo"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Seconda email"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Traccia"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Soggetto della seconda email"
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Tipo"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Il recupero della password è stato eseguito con successo"
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argomenti"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr "Corpo del messaggio (%s è il login utente)"
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "La creazione di questa pagina, secondo l'interprete PHP, ha generato degli errori ! "
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr "Corpo del messaggio della seconda email, inviata per confermare la modifica della password. %s è usato per il login dell'utente."
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Invia i tuoi commenti a proposito di un bug al Team di FusionDirectory"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Salve,\n\nLa tua password è stata modificata.\nIl tuo login è sempre %s."
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Invia un rapporto di bug"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Configurazione"
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Mostra/Nascondi l'informazione"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr "Configurazione di FusionDirectory"
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Correggi l'errore qui sotto e ricarica la pagina."
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr "Schermo di configirazione di FusionDirectory"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
-msgstr "Creare una copia instantanea degli oggetti"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Temi e apparenze"
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
-msgstr "Ripristinare snapshots"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Lingua"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Registrazione cronologica"
+#: 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 "Linguaggio dell'applicazione. Se 'automatico' oppure non disponibile, verrà usato quello richiesto dal browser. Questa impostazione puó essere ridefinita per utente."
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
-msgstr "Timestamp di questa creazione di snapshot"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Tema"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
-msgstr "Motivo"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr "Tema da usare"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
-msgstr "Motivo della creazione di questa copia instantanea"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Fuso orario"
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Anno-mese-giorno, Ore:minuti:secondi"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr "Fuso orario da usare"
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr "Restaura"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr "Impostazione schema"
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
-msgstr "Ripristinare snapshots"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
+msgstr "Convalida dello schema"
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
-msgstr "Copia istantanea esistente per questo oggetto"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr "Attivare la validazione degli schemi alla connessione"
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Pagina"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Impostazioni per la password"
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr "Algoritmo di memorizzazione delle password"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "L'esportazione PDF non è possibile: non ci sono librerie PDF installate."
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr "Algoritmo di default da usare"
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr "Forza l'algoritmo di default"
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "nel"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr "Forza l'uso dell'algoritmo di default per le password"
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "on line"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Lunghezza minima per le password"
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Errore XML"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr "Lunghezza minima per le password utente"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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 "L'oggetto é cambiato dopo l'apertura in FusionDurectory. Tutte le modifiche che possono essere state fatte da altri andranno perse se si salva questa voce !"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr "Differenze minime della password"
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr "La dipendenza riccorsiva nei campi di modello: \"%1$s\" non puo' dipendere da \"%2$s\" dato che \"%2$s\" dipende già da \"%1$s\""
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr "Numero minimo di caratteri diversi rispetto alla  vecchia password"
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
-msgstr "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Utilizza una scadenza per l'account"
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Annulla tutto"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
+msgstr "Attiva gli attributi di test della password durante la connessione a FusionDirectory e forza il rinnovo della password oppure blocca l'account"
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Impossibile incollare"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
+msgstr "SASL Realm"
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
-msgstr "Impostazioni del template"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr "SASL Exop"
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
-msgstr "Questo è il nome del template"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
+msgstr "Attributo da salvare nell'attributo userPassword"
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
-msgstr "Solo la scheda principale puo' calcolare il dn"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
+msgstr "Impostazioni di base"
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
-msgstr "Non puo' calcolare il dn: nessuna scheda di classe parente per \"%s\""
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Mostra il riepilogo negli elenchi"
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:162
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
-msgstr "Impossibile calcolare il dn: impossibile trovare le informazioni di objectType in questa  classe scheda \"%s\""
+"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 "Determina se una barra di stato verrà visualizzata nella parte inferiore delle liste, visualizzando una breve sintesi del tipo e del numero di elementi nella lista."
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Errore durante il salvataggio"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr "Blocco modifica"
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "C'é già un'altra entry con il medesimo dn: %s"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr "Controlla se una voce attualmente in fase di modifica è stata modificata al di fuori di FusionDirectory nel frattempo."
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "La voce %s non esiste"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr "Attiva il debugging"
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
-msgstr "Campo \"%s\" sconosciuto"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr "Log degli eventi dal lato di FusionDirectory."
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Seleziona le entries desiderate"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr "Dimensione massima dell'annuario LDAP"
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr "Modello %s"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr "Definisce il numero di voci ottenibili da LDAP come impostazione predefinita."
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
-msgstr "Mostra %s"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Connessione e sessione"
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr "Gruppo POSIX %s"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Attributo di connessione"
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
-msgstr "Ruolo %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
+msgstr "Quale attributo LDAP deve essere utilizzato come nome di login durante il login."
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
-msgstr "Raggruppa %s"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Forza le connessioni criptate"
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Gruppo di utenti"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
+msgstr "Abilita i controlli di sicurezza PHP per forzare l'accesso cifrato (https) verso l'interfaccia web."
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Nessuno"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Mostra un avvertimento quando la sessione non è criptata"
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Sconosciuto"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr "verrà visualizzato un avvertimento all'utente quando si utilizza http invece di https."
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Durata di vita della sessione"
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
-msgstr "KiB"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr "Definisce, in secondi, quando una sessione scade (0 per disabilitare)"
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
-msgstr "MiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr "Autentificazione HTTP Basic"
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
-msgstr "GiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
+msgstr "Usa protocollo di autenticazione HTTP Basic anziché il modulo di login."
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
-msgstr "TiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
+msgstr "Autenticazione HTTP Header"
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "secondi"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
+msgstr "Utilizzare l'autenticazione HTTP Header anziché il modulo di login."
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "minuti"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
+msgstr "Nome intestazione"
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "ore"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
+msgstr "Nome dell'header contenente identificativo utente."
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "giorni"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Attiva le copie istantanee"
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (necessario)"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr "Questo abilita la possibilità di salvare alcuni stati delle entrate per poterle in seguito restaurare"
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
-msgstr "Il valore \"%s\" per il campo \"%s\" non si trova nella lista delle scelte possibili"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Base per le copie istantanee"
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "Un numero intero compreso tra %d e %d"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr "La base dove gli snapshot saranno immagazzinati nell'annuario LDAP."
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "Un numero intero più grande di %d"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
+msgstr "SSL"
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "Un numero intero più piccolo di %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
+msgstr "Percorso della chiave"
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Un numero con la virgola compreso tra %f e %f"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
+msgstr "Percorso a chiave privata FusionDirectory . Inutilizzato per ora."
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr "Un numero con la virgola più grande di %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
+msgstr "Percorso del Certificato"
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
-msgstr "Un numero con la virgola più piccolo di %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
+msgstr "Percorso al certificato di FusionDirectory;  Inutilizzato per ora."
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
-msgstr "Errore, la data non é corretta: %s"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
+msgstr "Percorso del certificato CA"
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "Impossibile leggere il file importato : %s"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+msgstr "Percorso al certificato CA. Usato per convalidare l'host del Server Argonaut."
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "il file è vuoto"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
+msgstr "CAS"
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "Il file non è stato trovato"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
+msgstr "Abilita CAS"
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "Il file non puó essere letto"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr "IL Login CAS verrà usato al posto del bind LDAP"
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
-msgstr "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr "Percorso del file contenente il certificato CA sul server CAS"
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Caricare"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Host"
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Scarica"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
+msgstr "Host del server CAS"
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
-msgstr "Impossibile salvare la foto dell'utente, Fusiondirectory necessita che il modulo PHP \"imagick\" sia installato "
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Porta"
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
+msgstr "Porta sulla quale il server CAS è all'ascolto"
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
-msgstr "Base dell'oggetto"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr "Contesto CAS"
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
-msgstr "Valore non valido per %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr "Contesto CAS da utilizzare"
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr "Nessuna etichetta"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Ramo dell'annuario dove sono immagazzinate le informazioni sugli utenti e i gruppi"
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "Non è stata trovata nessuna estensione per inizializzare '%s', verifica il file di configurazione."
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "Tipo di attributo DN degli utenti"
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "La cancellazione è stata interrotta dall'estensione '%s': %s"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr "Attributo da usare all'inizio del dn degli utenti"
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
-msgstr "Passare da \"%s\" a \"%s\" non riuscito"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr "Modello CN"
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
-msgstr "L'impostazione  \"%s\" del fuso orario nella vostra configurazione non é valida."
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
+msgstr "Modello da usare per costruire il nome comune del campo"
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr "Regola di denominazione rigorosa"
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Gestire le liste di controllo degli accessi"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr "Consente il controllo rigoroso di nomi utente e di gruppo"
 
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr "Gruppo/utente minimo ID"
+
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
-msgstr "Tipo '%s'! ACL sconosciuto! Potrebbe seere necessario eseguire \"fusiondirectory-impostazione --migrare-acls\" per migrare gli ACL verso un nuovo formato."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
+msgstr "Il minimo utente o grupp ID assegnabile per evitare perdite di sicurezza con iaccount ID 0."
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Voce '%s' sconosciuta !"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr "Id hook successivo"
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Tutti gli utenti"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr "Script da nominare per trovare il prossimo numero ID libero per gli utenti o i gruppi."
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "Impossibile cambiare la password, '%s' utente sconosciuto"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr "Numero base per questo ID utente"
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
-msgstr "é necessario compilare saslRealm o saslExop nello schermo di configurazione per usare SASL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr "Dove cominciare a cercare un nuovo id libero per un utente."
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
-msgstr "C'é stato un problema nella decompressione dei dati di snapshot"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr "Numero base per questo id gruppo"
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Registrazione nel giornale di sistema non riuscita : %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr "Dove cominciare a cercare un nuovo id libero per un gruppo ."
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
-msgstr "Opzione '%s' non valida!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
+msgstr "RDN utenti"
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "Il tipo d'oggetto specificato è vuoto oppure non è valido !"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
+msgstr "Ramo nel quale gli utenti sono immagazzinati"
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
-msgstr "Attenzione: la sessione  <a href=\"%s\"> non é crittografata!</a>"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
+msgstr "RDN gruppi"
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
-msgstr "Attenzione: la durata della sessione configurata nel fusiondirectory.conf verrà sostituita dalle impostazioni di php.ini."
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr "Il ramo nel quale i gruppi saranno immagazzinati."
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"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."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
+msgstr "Ruolo ACL RDN"
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Errore Smarty"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr "Ramo nel quale i ruoli ACL sono immagazzinati"
+
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Metodo di assegnazione Id"
 
-#: 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!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
+msgstr "Metodo per allocare utente / gruppo id"
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "La tua sessione in FusionDirectory è scaduta!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Tradizionale"
 
-#: html/index.php:211
-msgid "Your IP has changed!"
-msgstr "Il tuo IP è stato cambiato!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr "Id del pool di Samba unix"
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
-msgstr "Parametro \"%s\" di plugin invalido"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
+msgstr "Minimo pool id dell'utente"
 
-#: html/index.php:217
-msgid "No session found!"
-msgstr "Nessuna sessione trovata!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
+msgstr "Valore minimo di un id utente quando si utilizza il metodo pool"
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
-msgstr "Lo schema LDAP verifica gli errori riportati:"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
+msgstr "Id utente pool max"
 
-#: html/index.php:255
-msgid "LDAP schema error"
-msgstr "Errore di schema LDAP"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr "Valore massimo di un id utente quando si utilizza il metodo pool"
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Prego specifica un nome utente valido !"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr "Id utente pool min"
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Prego specifica la tua password !"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr "Valore minimo di un id gruppo quando si utilizza il metodo pool"
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Verifica il nome utente e la password."
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
+msgstr "Id gruppo pool min"
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Conto bloccato. Contatta l'amministratore del sistema!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
+msgstr "Valore massimo di un id gruppo quando si utilizza il metodo pool"
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
-msgstr "Nessun valore trovato nell'header HTTP \"%s\""
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
+msgstr "Limitare i membri del ruolo"
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
-msgstr "L'utente header \"%s\"  non è stato trovato nel LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
+msgstr "Quando è abilitato solo gli utenti dello stesso ramo o membri di gruppi dello stesso ramo possono essere aggiunti ad un ruolo."
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
-msgstr "L'utente header \"%s\" corrisponde a più utenti in LDAP"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Debugging"
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
-msgstr "Impossibile trovare l'utente \"%s\" CAS nell'annuario LDAP"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr "Mostra gli errori"
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
-msgstr "L'utente CAS \"%s\" corrisponde a più utenti nell'annuario LDAP"
+#: plugins/config/class_configInLdap.inc:387
+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 "Mosta gli errori PHP nella parte alta della schermata. Questo dovrebbe essere disabilitato nelle installazioni di produzione, a causa di possibili password che potrebbero passare in chiaro."
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Durata massima di una richiesta LDAP"
+
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Il tuo navigatore web ha i cookies disattivati. Attiva i cookies e ricarica la pagina prima di connetterti !"
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr "Interrompi le azioni LDAP se non ci sono risposte nel tempo limite impartito in secondi."
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Configurazione PHP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Inserisci le statistiche dell'annuario LDAP nel giornale di sistema"
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:397
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Errore fatale: Register globals è attivato. FusionDirectory rifiuterà ogni accesso utente finchè questo errore non sarà corretto da un amministratore."
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr "Invia le statistiche di timing LDAP al syslog. Questo può aiutare a trovare i problemi di indicizzazione o i filtri di ricerca erronei."
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Modifica della password"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Livello per il debug"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "La tua password sta per scadere, per favore cambiala !"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr "Mostra alcune informazioni su ogni caricamento della pagina."
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
-msgstr "La tua password é scaduta, per favore impostarne una nuova."
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Altro"
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "Fine della memoria disponibile !"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
+msgstr "Hooks che sarà chiamato quando un'azione specificasi verifica"
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Le verifiche ACL dell'utente sono state disattivate"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr "tab"
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Estensione"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr "Il tab concernente questo hook"
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
-msgstr "Errore fatale: Impossibile trovare alcuna definizione per il plugin '%s' ('%s' non è un file)!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "Modalità"
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Errore di configurazione"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr "Quando chiamare questo comando"
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Errore fatale: non tutte le variabili POST sono state trasferite da PHP - per favore informane l'amministratore!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr "comando"
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "Il file di configurazione %s/%s non è leggibile. Operazione Annullata."
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr "Il comando che sarà chiamato"
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "La cartella '%s' dichiarata come cartella di compilazione è inaccessibile !"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Connessioni"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
-msgstr "Alcun account trovato con login \"%s\" "
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr "Mostra hook di uscita"
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
-msgstr "Trovati più accounts con login \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
+msgstr "Quando l'esecuzione dell'hook é abilitata con successo il risultato é mostrato all'utente tramite una finestra di dialogo."
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Indirizzo di posta elettronica"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr "Shell disponibili"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
-msgstr "Non c'è nessun account che usa l'indirizzo mail %s"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr "Shell POSIX disponibili per gli utenti FD"
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
-msgstr "Ci sono più account che usano l'indirizzo mail %s"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr "Mostra tab ACL su tutti gli oggetti"
+
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
+msgstr "Per l'impostazione di diritti ACL molto specifici potreste aver bisogno di dare accesso ad un singolo oggetto."
+
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
+msgstr "Categorie di reparto disponibili"
+
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
+msgstr "Categorie disponibili nel menu a discesa"
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
-msgstr "L'utente che usa la mail \"%s\" é bloccato. Si prega di contattare l'amministratore di sistema."
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Plugins"
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Contattare l'amministratore, c'è stato un problema con il server di posta elettronica"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr "Configurazione dei plugins"
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
-msgstr "Questo token non è valido"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr "Configurazione plugins"
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
-msgstr "Si è verificato un problema con il server mail, la email di conferma non è stata inviata"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr "Configurazione dei plugins di FusionDirectory"
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Gruppi di oggetti"
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
-msgstr "Connessione LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
+msgstr "OGroup RDN"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Nome del luogo"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
+msgstr "Ramo nel quale i gruppi di oggetti saranno salvati"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
-msgstr "Nome di questo collegamento per mostrare nell'elenco dei server LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "URI di connessione"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
+msgstr "Obbligare a chiedere la password"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
-msgstr "URI per contattare il server LDAP. Di solito inizia con ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
+msgstr "Utile se si aggiunge un gancio con valore di password quando le password degli utenti SASL vengono modificate"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "Connessione TLS"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr "Configurazione dashboard"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
-msgstr "TLS dovrebbe essere usato per connetterlo a questo server LDAP?"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr "Configurazione del plugin dashbord di FusionDirectory"
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
-msgstr "Base del directory LDAP"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr "Schema nome dashbord"
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Autentificazione"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr "Numero di cifre"
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
-msgstr "DN dell'account amministratore da utilizzare per il legame alla LDAP . La base viene automaticamente aggiunta."
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr "NUmero di cifre da usare dopo il prefisso"
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "DN dell'amministratore"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr "Prefissi"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Password dell'amministratore"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr "Prefissi da usare per gli Id del computer"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
-msgstr "Password dell'account amministratore da utilizzare per il legame alla LDAP . "
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
+msgstr "Utenti dashbord scaduti"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Stato attuale"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr "Numero di giorni"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
-msgstr "Risultato dell'ultimo tentativo di controllo dei vincoli LDAP e degli schemi di base."
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
+msgstr "Numero di giorni prima della scadenza necessari per un account per mostrare nel dashboard la prossima scadenza degli account"
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Configurazione di LDAP"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Dipartimenti"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Configurazione della connessione di LDAP"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "dipartimento"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Questa finestra permette di indicare la configurazione di base di LDAP per FusionDirectory."
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Proprietà"
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "La connessione anonima sul server '%s' è fallita !"
+msgid "Name of %s"
+msgstr "Nome dell' %s "
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "La connessione dell'utente '%s' è fallita !"
-
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Riprova"
+msgid "A name for this %s"
+msgstr "Nome unico per questo  %s "
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "La connessione anonima al server '%s' è riuscita."
+msgid "Short description of this %s"
+msgstr "Breve descrizione di questo  %s "
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Aggiorna"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Categoria"
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Specifica il nome utente e la password !"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
+msgstr "Categoria di questo  %s "
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr "Sito Web"
+
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "La connessione dell'utente '%s' al server '%s' è riuscita !"
+msgid "Website of this %s"
+msgstr "Sito Web di questo %s"
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
-msgstr "%s\nSchema \"%s\": %s"
+msgid "Manager of this %s"
+msgstr "Responsabile di questo %s "
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Benvenuto"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Stato"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Finito"
+#: plugins/admin/departments/class_department.inc:102
+#, php-format
+msgid "A postal address for this %s"
+msgstr "Indirizzo postale di questo %s "
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Finito - Scrivi il file di configurazione"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Numero di telefono"
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Scrivi il file di configurazione"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr "Facsimile di numero di telefono"
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Il file di configurazione è attualmente accessibile in lettura a tutti. Aggiorna i permessi di accesso sul file !"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr "Organizzazione"
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Il file di configurazione attualmente non è leggibile oppure non esiste."
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Dominio"
+
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr "Dominio"
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Gestisci i dipartimenti"
+
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Dopo aver scaricato e messo il file nella cartella %s, assicurati che sia solo l'account abilitato al server Web a poter leggere %s, mentre gli altri account non dovrebbero."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr "Gestire i reparti, i paesi, i componenti di dominio, i domini, le località e le note di organizzazione,"
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Migra"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Utenti e gruppi"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "Verifica del modulo PHP e delle sue estensioni"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Oggetto di Dominio"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Ispezione dell'annuario LDAP"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr "Oggetto di dominio"
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Analisi dell'annuario LDAP per la compatibilità con FusionDirectory"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Nome della località"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
-msgstr "Dare tutti i diritti sugli utenti nel ramo dato"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
+msgstr "Località"
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr "Permette agli utenti di modificare le proprie informazioni (uso di scheda e posix principale solo sulla base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Elenco dei dipartimenti"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
-msgstr "Permette agli utenti di modificare la loro password (usare solo su base)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr "Paese"
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Ispezione delle classi di oggetti nell'oggetto radice"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Gestisci gli utenti"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Verifica del permesso di accesso al database LDAP"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
+msgstr "Gestire gli account utente e le loro proprietà"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Verifica degli utenti nascosti"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Blocco dell'account"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Verifica del super amministratore"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr "La metodologia password \"%s\"  non sopporta il blocco. L'account \"%s\" non é stato bloccato!"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr "Controllo per i ruoli ed i gruppi ACL predefiniti"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Sblocca l'account"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Verifica degli utenti al di fuori del ramo \"people\""
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Blocca l'account"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Verifica dei gruppi al di fuori del ramo \"groups\""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Elenco degli utenti"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Verifica dei dipartimenti nascosti"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Cognome"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Verifica dei possibili doppioni UID"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Nome"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr "Verifica dei possibili doppioni GID"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Blocca gli utenti"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "La richiesta al database LDAP è fallita!"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Sblocca gli utenti"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr "Forse l'\"oggetto radice\" é mancante"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Applica il modello"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Fallito"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Nuovo utente a partire dal modello"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "L'oggetto di classe '%s' richiesto per FusionDirectory è mancante !"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Modifica utente"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Verifica la tua installazione."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "Impossibile gestire il tipo di oggetto strutturale del tuo oggetto radice. Prova ad aggiungere manualmente la classe d'oggetto '%s'. "
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Elimina utente"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr "L'utente \"%s\" non ha accesso completo al vostro database LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Ruolo"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
-msgstr "L'utente \"%s\" non ha pieno accesso al database LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr "Informazioni sul ruolo"
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "Ho trovato %s utenti(e) che non saranno visibili in FusionDirectory che sono incompleti."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
+msgstr "Ruolo organizzativo"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr "Migrazione utente"
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Informazioni"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Errore durante la migrazione"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr "Nome del gruppo"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
-msgstr "Impossibile eseguire la migrazione di voce \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Descrizione del ruolo"
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr "FD 1.0.7 account amministrativi trovati: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Numero di telefono"
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
-msgstr "FD 1.0.7 gruppi amministrativi trovati: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Numero di Fax"
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
-msgstr "é possibile eseguire <i>fusiondirectory-setup --migrate-acls</i> dopo aver salvato il file do configurazione al termine della messa a punto per la migrazione."
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
+msgstr "Membri del ruolo"
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
-msgstr "Non vi è alcun account amministratore FusionDirectory 1.0.8 valido all'interno del vostro LDAP ."
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Aggiungi degli utenti per il ruolo"
+
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
+msgstr "Gestione dei gruppi e dei ruoli"
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Gruppi"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
+msgstr "Vi permette di gestire gruppi di oggetti, gruppi e ruoli POSIX"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "Non ho trovato alcun amministratore di FusionDirectory nel tuo annuario LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
+msgstr "Modifica le proprietà del ruolo"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
-msgstr "Dà tutti i diritti su ogni oggetto"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr "I ruoli ACL di default non sono stati inseriti"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Modifica le proprietà posix"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
-msgstr "Mancano alcuni ruoli ACL di default"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
+msgstr "Mostra i gruppi di utenti"
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
-msgstr "Ruoli ACL di default sono stati inseriti"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Mostra i gruppi principali"
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
-msgstr "Impossibile aggiungere ruolo \"%s\" ACL "
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
+msgstr "Mostra i ruoli organizzativi"
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr "Ho trovato %s utente(i) al di fuori del ramo \"%s\" configurato."
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
+msgstr "Mostra i gruppi di applicazioni"
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Sposta gli utenti nel ramo utenti configurato nell'annuario"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
+msgstr "Mostra gruppi non identificati"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
-msgstr "Impossibile spostare le entrate nel dipartimento richiesto!"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Mostra i gruppi di posta elettronica"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
-msgstr "L'entrata verrà spostata"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Mostra i gruppi samba"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "verso"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
+msgstr "Mostra voci DSA"
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Le seguenti reference saranno aggiornate"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
+msgstr "Mostra i gruppi di servers"
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Ho trovato %s gruppi al di fuori del ramo '%s' configurato."
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr "Mostra i gruppi di workstations"
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
-msgstr "Sposta i gruppi nel ramo di gruppi configurato"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr "Mostra i gruppi"
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Ho trovato %s departimenti(o) che non saranno visibili in FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
+msgstr "Mostra i gruppi di terminali"
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
-msgstr "Migrazione Dipartilento"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr "Mostra i gruppi di stampanti"
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
-msgstr "Trovati %s valori duplicati per l'attributo \"uidNumber\":%s"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
+msgstr "Mostra i gruppi di telefoni"
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
-msgstr "Trovati %s valori duplicati per l'attributo \"gidNumber\":%s"
+msgid "Unknown type : %s"
+msgstr "Tipo sconosciuto : %s"
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Impostazioni della lingua"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
+msgstr "Non esiste il dn: %s"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Questa tappa ti permette di impostare la tua lingua preferita."
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Gruppo di oggetti"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
-msgstr "A questo punto , è possibile selezionare la lingua predefinita a livello di sito . Scegliendo \" automatico\" utilizzerà la lingua richiesta dal browser. Questa impostazione può essere sovrascritto per utente ."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr "Informazioni gruppo di oggetti"
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Benvenuto nell'interfaccia di aiuto alla configurazione di FusionDirectory"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Gruppo"
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Messaggio di benvenuto"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr "Breve descrizione del gruppo"
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
-msgstr "Configurazione di installazione PHP (<a href=\"?info\" target=\"_blank\">mostra informazione)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Oggetti membri"
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Verifica dell'istallazione"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr "Oggetti membro di questo gruppo"
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Verifiche di base della compatibilità PHP e delle estensioni necessarie"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr "Consenti all'utente di connettersi solo a questo elenco di host "
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Controllo della versione di PHP"
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr "Non é consentito mettre workstations e terminali nello stesso gruppo"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP deve essere nella versione %s o superiore."
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Elenco dei gruppi"
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Aggiorna ad una versione supportata."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr "Informazioni gruppo POSIX"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory ha bisogno di questo modulo per poter comunicare con il server LDAP."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr "Gruppo POSIX"
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory ha bisogno di questo modulo per l'interfaccia multilingue."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr "Gruppo utenti POSIX"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory ha bisogno di questo modulo per comunicare con differenti tipi di server e protocolli."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Forza il GID"
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory ha bisogno di questo modulo per l'integrazione di Samba"
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr "Forzare il valore GID per questo gruppo"
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory richiede il modulo 'mhash' oppure 'sha1' per poter utilizzare l'algoritmo di criptaggio SSHA."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr "Valore GID per questo gruppo"
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory ha bisogno di questo modulo per comunicare con il server IMAP."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Membri del gruppo"
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr "Creazione assegnazione ACL"
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory ha bisogno di questo modulo per gestire i caratteri Unicode."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr "Crea assegnazione ACL su un dn arbitrario"
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr "Dn"
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory ha bisogno di questa estensione per gestire le immagini."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr "DN per il quale si desiderano aggiungere assegnazioni"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "modulo di compressione"
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr "Impossibile trovare il dn che avete inserito nell'LDAP"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory ha bisogno di questa estensione per gestire gli snapshot (le copie istantanee)."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr "Assegnazioni ACL"
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "register_globals è un meccanismo PHP che permette di registrare tutte le variabili globali affinchè gli scripts possano accedervi senza cambiare la portata delle variabili. Questo puó generare un rischio per la sicurezza."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr "Gestione delle assagnazioni ACL"
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Cerca l'opzione register_globals nel tuo file php.ini e impostalo su 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr "Gestione delle assegnazioni dei ruoli ACL per gli utenti"
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP utilizza questa variabile per cancellare delle vecchie sessioni."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "Gestione delle ACL"
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Impostare questa variabile a \"1 giorno\" eviterà di perdere i coockies e le sessioni prima che siano realmente scadute."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr "Assegnazione Dialog ACL"
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Cerca la variabile 'session.gc_maxlifetime' nel tuo file php.ini e impostala a 86400 o un valore più grande."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr "Gestione della lista di controllo degli accessi"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Modalità"
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "Per non avere problemi nell'uso di FusionDirectory, è necessario impostare l'opzione 'session.auto_start' su 'Off' nel file php.ini."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr "Si applica ad una sottostruttura completa oppure soltanto alla base?"
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Cerca la variabile 'session.auto_start' nel file php.ini e impostala su 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr "Sottostruttura"
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
-msgstr "FusionDirectory ha un bisogno minimo di 128MB di memoria. Meno di 128MB di memoria causeranno degli errori imprevisti che non saranno riproducibili ! Aumenta la memoria per delle installazioni più complesse."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr "Base"
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
-msgstr "Cerca la variabile 'memory_limit' nel file php.ini e impostala su '128MB' o un valore più grande."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr "Ruolo da applicare"
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Questa opzione influenza la gestione delle uscite. Per aumentare le prestazioni, impostala su 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr "Per tutti gli utenti"
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Cerca la variabile 'implicit_flush' nel file php.ini e impostala su 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr "Applica questo ACL a tutti gli utenti LDAP"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "Il tempo di esecuzione deve essere di almeno 30 secondi."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Membri"
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Cerca la variabile 'max_execution_time' nel file php.ini e impostala su '30' o un valore più grande."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr "Utenti o gruppi a cui assegnare questo ruolo"
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Aumenta la sicurezza del tuo server impostando la variabile 'expose_php' su 'Off'. PHP non trasmetterà alcuna informazione a proposito del server che stai configurando."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr "Assegnazioni ACL"
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Cerca la variabile 'expose_php' nel file php.ini e impostala su 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr "Gestione della lista di controllo degli accessi"
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Aumenta le prestazioni del tuo server impostando la variabile 'magic_quotes_gpc' su 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr "Assegnazioni"
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Cerca la variabile 'zend.ze1_compatibility_mode' nel file php.ini e impostala su 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr "Assegnazioni ACL per questa base"
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Errore di configurazione"
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr "Assegnazioni su un ogetto o sottostruttura %s"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Completato"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Nessuna ACL per questa categoria"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Successivo"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL per questi oggetti: %s"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "Il team di FusionDirectory"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Modifica la categoria di ACL"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr "< strong> % 1 < / strong> referenze < strong> % 3 < / strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Resetta la categoria di ACL"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr "<strong>%1</strong> referenze nostro campo <strong>%3</strong> dalla scheda <strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Elenco delle categorie di ACL disponibili"
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Questo oggetto non ha relazioni con altri oggetti."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Tutti gli oggetti nell'attuale sottostruttura"
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtro"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
+msgstr "Modifica ACL per \"%s\""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Mostra i modelli"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "lettura"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Mostra gli utenti funzionali"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "scrittura"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "Mostra gli utenti POSIX"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Mostra/Nascondi le opzioni avanzate"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Mostra gli utenti di posta elettronica"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Creare degli oggetti"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Mostra gli utenti di Samba"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Sposta degli oggetti"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr "Attenzione: si sta per cancellare le assegnazioni ACL sui seguenti oggetti"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Elimina degli oggetti"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
-msgstr "Cio' include tutte le assegnazioni ACL fatte su questo nodo(i). Se si desidera l'elenco delle assegnazioni, si prega di annullare e aprire l'oggetto."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Concedere l'autorizzazione al proprietario"
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Premi \"Rimuovi\" per continuare oppure \"Annulla\" per interrompere"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "L'oggetto al completo"
+
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
+msgstr "Gestione dei ruoli ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] "C'é un account scaduto"
-msgstr[1] "Ci sono %1 di accounts scaduti"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr "Gestire i ruoli ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr "Non ci sono account scaduti"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Contiene i parametri per questi oggetti: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
-msgstr "Responsabile interessato"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Ruoli di controllo d'accesso"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "Ruolo ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
+msgstr "Nome unico per questo ruolo"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "Numero di telefono"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
+msgstr "Breve descrizione di questo ruolo"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
-msgstr "Data di scadenza della password"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
+msgstr "ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
-msgstr "Responsabile"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
+msgstr "ACL appartenenti a questo gruppo"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr "mail"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "Fusiondirectory NON funzionerà prima di aver corretto questo."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] "C'é un account in scadenza nei prossimi 1% giorni "
-msgstr[1] "Ci sono %2 di accounts in scadenza nei prossimi 1% giorni "
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "Fusiondirectory funzionerà anche senza aver corretto questo."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr "Non c'é alcun account in scadenza nei prossimi %1 giorni"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Crea un nuovo account amministratore di FusionDirectory"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr "Prossimi account che scadranno"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Questa finestra ti permette di aggiungere automaticamente un super-amministratore al tuo albero LDAP."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] "C'é 1 gruppo:"
-msgstr[1] "Ci sono %1 gruppi:"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "ID dell'utente"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] "Uno di essi é un gruppo %1 "
-msgstr[1] "%2 sono %1 gruppi"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Password (ripeti)"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr "Non c'é alcun gruppo %1"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Sembra che sia la prima volta che avvii FusionDirectory - per il momento non trovo nessun file di configurazione. Questo assistente ti potrà aiutare durante la fase di configurazione."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] "C'é un utente"
-msgstr[1] "Ci sono %1 utenti:"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "Cosa farà per te il il programma d'assistenza ?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] "Uno di essi ha un account %1"
-msgstr[1] "%2 di essi hanno %1 account"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Crea una semplice configurazione mono sito"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr "Nessuno di essi ha %1 di account"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Prova a vedere se ci sono dei problemi nella configurazione di PHP o di LDAP"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] "L'1% di essi sono bloccati"
-msgstr[1] "L'1% di essi sono bloccati"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Puoi scegliere tra le opzioni di base o quelle avanzate "
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr "Nessuno di loro è bloccato"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Migrazione assistita di un annuario LDAP esistente"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Hai cambiato con successo la tua password. Ricorda di modificare tutti i programmmi configurati per usarla."
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "Cosa l'assistente non farà per te ?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Impostazioni dell'utente"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Trovare ogni possibile errore di configurazione"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Rimuovi la  password"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migra ogni possibile configurazione LDAP - fai delle copie !"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Imposta la nuova password"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr "Per continuare:"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Foto personale"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr "Per motivi di sicurezza é necessario autenticarsi per l' installazione creando il file ' % 1 ', contenente l'ID di sessione corrente sui server filesystem locale. Questo può essere fatto eseguendo il comando seguente :"
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Foto personale"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Premi il bottone 'Continua' quando avrai finito."
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Elimina foto"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "Aggiungi la classe di oggetto richiesta alla base LDAP"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "Non hai il permesso di cambiare la tua password in questo momento."
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Attuale"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "L'algoritmo della tua password non puó essere cambiato !"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Dopo la migrazione"
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Rilevato un conflitto di chiusura"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Chiuso"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
-msgstr "\"%1\" é stato bloccato da \"%2\" dalle %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
+msgstr "Questa finestra di dialogo consente di spostare un paio di voci nell'albero configurato. In questo modo si può raddrizzare il servizio LDAP ."
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
-msgstr "Se questo conflitto di chiusura è falso, un'altra persona potrebbe aver chiuso il navigatore web durante un'operazione di inserimento dati. In questo caso puoi togliere il blocco premendo il tasto \"%1\"."
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
+msgstr "Fate attenzione con questa opzione! Ci possono essere riferimenti che puntano a queste voci . Il setup di FusionDirectory non puo' migrare i riferimenti, di conseguenza potreste voler annullare la migrazione in questo caso."
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Solo lettura"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr "Sposta gli utenti selezionati in questo ramo"
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
-msgstr "Crea un nuovo oggetto usando i modelli"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
+msgstr "Le voci listate sono al momento invisibili nell'interfaccia di FusionDirectory. Se desiderate cambiare questo solo per un paio di voci, selezionatele e usate il tasto \"Migrare\" qui di seguito."
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Se vuoi sapere cosa sarà fatto quando migrerai le \"entries\" selezionate, usa il bottone \"Mostra i cambiamenti\" qui sotto, per vedere il file LDIF."
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Continua"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Mostra le modifiche"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "L'opzione \"dimensione massima\" rende les operationi LDAP più veloci e permette di alleggerire il carico di lavoro del server LDAP. La maniera più semplice di gestire enormi basi di dati senza avere lunghi tempi d'attesa è quella di limitare la ricerca a dei piccoli valori e di utilizzare i filtri per ottenere i valori ricercati."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Durante l'ispezione LDAP, analizzeremo i problemi classici che possono sopraggiungere durante la migrazione verso un sistema d'amministratione basato su FusionDirectory. Potrai correggere i seguenti errori al fine di procurarti una facile amministrazione del sistema."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Scegli il modo di reagire per questa sessione"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Verifica di nuovo"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "ignora questo errore e mostra tutte le voci restituite dal server LDAP"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Crea il file di configurazione"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "ignora questo errore e mostra tutte le voci che rientrano nel sizelimit definito e lasciami invece utilizzare i filtri per limitare i dati da visualizzare "
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr "Eseguire %1 per mettere le giuste autorizzazioni su fusiondirectory.conf "
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Attiva"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Scarica il file di  configurazione"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Stato :"
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtro"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4936,17 +4845,6 @@ msgid ""
 "contact your administrator"
 msgstr "Il recupero della password non è attivato. Se hai perso la tua password, contatta il tuo amministratore di rete."
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr "Questo puo' essere utilizzato da diversi gruppi. Si prega di controllare due volte se si vuole veramente fare questo in quanto non vi è alcun modo per FusionDirectory per ottenere di nuovo i vostri dati."
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Quindi - se sei sicuro - premi 'Rimuovi' per continuare oppure 'Annulla' per interrompere."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Schermata di connessione"
@@ -4974,26 +4872,141 @@ msgstr "Entra"
 msgid "Click here to log in"
 msgstr "Clicca qui per connetterti"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr "Attenzione! Stai per cancellare i seguenti oggetti"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "L'opzione \"dimensione massima\" rende les operationi LDAP più veloci e permette di alleggerire il carico di lavoro del server LDAP. La maniera più semplice di gestire enormi basi di dati senza avere lunghi tempi d'attesa è quella di limitare la ricerca a dei piccoli valori e di utilizzare i filtri per ottenere i valori ricercati."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
-msgstr "Qualsiasi modifica apportata all'oggetto da questa istantanea sarà persa."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Scegli il modo di reagire per questa sessione"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "ignora questo errore e mostra tutte le voci restituite dal server LDAP"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "ignora questo errore e mostra tutte le voci che rientrano nel sizelimit definito e lasciami invece utilizzare i filtri per limitare i dati da visualizzare "
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Attiva"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr "Attenzione! Stai per cancellare i seguenti oggetti"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Assicurati che vuoi davvero eseguire l'azione visto che poi sarà impossibile per FusionDirectory recuperare i tuoi dati."
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Quindi - se sei sicuro - premi 'Rimuovi' per continuare oppure 'Annulla' per interrompere."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Principale"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Termina la sessione"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Connesso:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "La sessione termina a %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr "Attenzione! Stai per cancellare i seguenti oggetti"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr "Qualsiasi modifica apportata all'oggetto da questa istantanea sarà persa."
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr "Quindi - se sei sicuro - premi 'Continua' per continuare oppure 'Annulla' per interrompere."
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Continua"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Rilevato un conflitto di chiusura"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr "\"%1\" é stato bloccato da \"%2\" dalle %3"
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr "Se questo conflitto di chiusura è falso, un'altra persona potrebbe aver chiuso il navigatore web durante un'operazione di inserimento dati. In questo caso puoi togliere il blocco premendo il tasto \"%1\"."
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Solo lettura"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr "Questo puo' essere utilizzato da diversi gruppi. Si prega di controllare due volte se si vuole veramente fare questo in quanto non vi è alcun modo per FusionDirectory per ottenere di nuovo i vostri dati."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Guida per il copia & incolla"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr "Alcuni valori devono essere univoci nella directory completa, mentre alcune combinazioni non hanno senso. FusionDirectory mostra i valori corrispondenti. Mantieni i valori qui sotto per soddisfare i criteri di sicurezza."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "Ricorda che certe propietà, come fare una 'copia instantanea', non saranno copiate!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "Oppure se copi o tagli una voce con FusionDirectory e poi ne cancelli l'origine, potrai incorrere in errori tentando di incollarla di nuovo!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Operazione eseguita"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr "Crea un nuovo oggetto usando i modelli"
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Informazione"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "ACL attribuita alla voce attuale"
@@ -5038,211 +5051,197 @@ msgstr "ACL per questo oggetto"
 msgid "Available roles"
 msgstr "Ruoli disponibili"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr "Attenzione! Stai per cancellare i seguenti oggetti"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Guida per il copia & incolla"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr "Alcuni valori devono essere univoci nella directory completa, mentre alcune combinazioni non hanno senso. FusionDirectory mostra i valori corrispondenti. Mantieni i valori qui sotto per soddisfare i criteri di sicurezza."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "Il team di FusionDirectory"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "Ricorda che certe propietà, come fare una 'copia instantanea', non saranno copiate!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr "< strong> % 1 < / strong> referenze < strong> % 3 < / strong>"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "Oppure se copi o tagli una voce con FusionDirectory e poi ne cancelli l'origine, potrai incorrere in errori tentando di incollarla di nuovo!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Operazione eseguita"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Informazione"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr "<strong>%1</strong> referenze nostro campo <strong>%3</strong> dalla scheda <strong>%2</strong>"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Principale"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Questo oggetto non ha relazioni con altri oggetti."
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Termina la sessione"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Impostazioni dell'utente"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Connesso:"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Rimuovi la  password"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "La sessione termina a %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Imposta la nuova password"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "Aggiungi la classe di oggetto richiesta alla base LDAP"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Foto personale"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Attuale"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Foto personale"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Dopo la migrazione"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Elimina foto"
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Chiuso"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "Non hai il permesso di cambiare la tua password in questo momento."
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Crea il file di configurazione"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "L'algoritmo della tua password non puó essere cambiato !"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr "Eseguire %1 per mettere le giuste autorizzazioni su fusiondirectory.conf "
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Hai cambiato con successo la tua password. Ricorda di modificare tutti i programmmi configurati per usarla."
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Scarica il file di  configurazione"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] "C'é 1 gruppo:"
+msgstr[1] "Ci sono %1 gruppi:"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Stato :"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] "Uno di essi é un gruppo %1 "
+msgstr[1] "%2 sono %1 gruppi"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Crea un nuovo account amministratore di FusionDirectory"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr "Non c'é alcun gruppo %1"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Questa finestra ti permette di aggiungere automaticamente un super-amministratore al tuo albero LDAP."
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] "C'é un utente"
+msgstr[1] "Ci sono %1 utenti:"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "ID dell'utente"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] "Uno di essi ha un account %1"
+msgstr[1] "%2 di essi hanno %1 account"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Password (ripeti)"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr "Nessuno di essi ha %1 di account"
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Sembra che sia la prima volta che avvii FusionDirectory - per il momento non trovo nessun file di configurazione. Questo assistente ti potrà aiutare durante la fase di configurazione."
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] "L'1% di essi sono bloccati"
+msgstr[1] "L'1% di essi sono bloccati"
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "Cosa farà per te il il programma d'assistenza ?"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr "Nessuno di loro è bloccato"
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Crea una semplice configurazione mono sito"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] "C'é un account scaduto"
+msgstr[1] "Ci sono %1 di accounts scaduti"
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Prova a vedere se ci sono dei problemi nella configurazione di PHP o di LDAP"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr "Non ci sono account scaduti"
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Puoi scegliere tra le opzioni di base o quelle avanzate "
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
+msgstr "Responsabile interessato"
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Migrazione assistita di un annuario LDAP esistente"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "Cosa l'assistente non farà per te ?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr "cn"
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Trovare ogni possibile errore di configurazione"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "Numero di telefono"
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migra ogni possibile configurazione LDAP - fai delle copie !"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr "Data di scadenza della password"
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
-msgstr "Per continuare:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
+msgstr "Responsabile"
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr "Per motivi di sicurezza é necessario autenticarsi per l' installazione creando il file ' % 1 ', contenente l'ID di sessione corrente sui server filesystem locale. Questo può essere fatto eseguendo il comando seguente :"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
+msgstr "mail"
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Premi il bottone 'Continua' quando avrai finito."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] "C'é un account in scadenza nei prossimi 1% giorni "
+msgstr[1] "Ci sono %2 di accounts in scadenza nei prossimi 1% giorni "
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "Fusiondirectory NON funzionerà prima di aver corretto questo."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
+msgstr "Non c'é alcun account in scadenza nei prossimi %1 giorni"
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "Fusiondirectory funzionerà anche senza aver corretto questo."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
+msgstr "Prossimi account che scadranno"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
-msgstr "Questa finestra di dialogo consente di spostare un paio di voci nell'albero configurato. In questo modo si può raddrizzare il servizio LDAP ."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Mostra i modelli"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
-msgstr "Fate attenzione con questa opzione! Ci possono essere riferimenti che puntano a queste voci . Il setup di FusionDirectory non puo' migrare i riferimenti, di conseguenza potreste voler annullare la migrazione in questo caso."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Mostra gli utenti funzionali"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
-msgstr "Sposta gli utenti selezionati in questo ramo"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "Mostra gli utenti POSIX"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
-msgstr "Le voci listate sono al momento invisibili nell'interfaccia di FusionDirectory. Se desiderate cambiare questo solo per un paio di voci, selezionatele e usate il tasto \"Migrare\" qui di seguito."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Mostra gli utenti di posta elettronica"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Se vuoi sapere cosa sarà fatto quando migrerai le \"entries\" selezionate, usa il bottone \"Mostra i cambiamenti\" qui sotto, per vedere il file LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Mostra gli utenti di Samba"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Mostra le modifiche"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr "Attenzione: si sta per cancellare le assegnazioni ACL sui seguenti oggetti"
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Durante l'ispezione LDAP, analizzeremo i problemi classici che possono sopraggiungere durante la migrazione verso un sistema d'amministratione basato su FusionDirectory. Potrai correggere i seguenti errori al fine di procurarti una facile amministrazione del sistema."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr "Cio' include tutte le assegnazioni ACL fatte su questo nodo(i). Se si desidera l'elenco delle assegnazioni, si prega di annullare e aprire l'oggetto."
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Verifica di nuovo"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Premi \"Rimuovi\" per continuare oppure \"Annulla\" per interrompere"
diff --git a/locale/lv/fusiondirectory.po b/locale/lv/fusiondirectory.po
index ffeaae56a805bcf6949361cbd61a5d94f0ff4581..b2d94df91a3564a164b623641eb5500a1a21ea2c 100644
--- a/locale/lv/fusiondirectory.po
+++ b/locale/lv/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n"
@@ -17,4857 +17,4759 @@ msgstr ""
 "Language: lv\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Vārds "
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Apraksts"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Faksa numurs"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Brīdinājums"
-
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Darbības"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Izveidot"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Labot"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Noņemt"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr ""
-
-#: 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:87
-msgid "Posix"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr ""
-
-#: 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:132
-msgid "Show organizational roles"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
-
-#: 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:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Nodaļa"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Atrašanās vieta"
-
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Valsts"
-
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Valsts"
-
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Adrese"
-
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Tālrunis"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Tālruņa numurs"
-
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fakss"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Checks.inc:198
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organizācija"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Uzvārds"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Vārds"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Lietotāji"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Atļauja"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "LDAP kļūda"
+
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Brīdinājums"
+
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "ACL for these objects: %s"
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:860
 #, php-format
-msgid "Delete"
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Izveidot"
+
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Lietotāji"
+
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Kļūda"
+
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Migrate.inc:1378
 #, php-format
-msgid "Contains settings for these objects: %s"
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Biedri"
-
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr ""
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Iekšējā kļūda"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Uzvārds"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Atļauja"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Vārds"
-
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Mobilais"
-
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Peidžeris"
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Darbības"
+
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Mājas pasta adrese"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Mājas tālruņa numurs"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Nosaukums"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:2619
 #, php-format
-msgid "Group of user %s"
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr ""
+
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
+#: include/class_config.inc:280
+#, php-format
 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."
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr ""
+
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr ""
+
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
 msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
+#: include/class_msgPool.inc:876
+#, php-format
 msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
-#, php-format
-msgid "Body (first %s is login, second is link)"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Veids"
+
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
-#, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
 #, php-format
-msgid "Body (%s is login)"
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:846
 #, php-format
 msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:882
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr ""
-
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
+#: include/class_ldap.inc:1170
+#, php-format
 msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Vārds "
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Apraksts"
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Kļūda"
-
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Labot"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Noņemt"
+
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
-#, php-format
-msgid "You are not allowed to create a snapshot for %s."
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/class_simplePlugin.inc:290
 #, php-format
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_config.inc:156
-#, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "LDAP kļūda"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "%s (required)"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Iekšējā kļūda"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr ""
 
-#: include/class_ldap.inc:846
-#, php-format
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "while operating on LDAP server %s"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_msgPool.inc:43
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects of type '%s'."
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted!"
+msgid "All users"
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/setup.php:59
+msgid "Smarty"
+msgstr ""
+
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "This '%s' object will be deleted: %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:150
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:171
+msgid "Smarty error"
+msgstr ""
+
+#: html/index.php:173
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr ""
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr ""
+
+#: html/index.php:214
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/index.php:454
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:475
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:485
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr ""
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "E-pasta adrese"
 
-#: include/class_msgPool.inc:225
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "Cannot connect to %s database!"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:245
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Cannot select %s database!"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "No %s server defined!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr ""
+
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr ""
+
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr ""
+
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:341
+#: html/main.php:290
 #, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:347
+#: html/main.php:306
 #, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:362
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Value for '%s' is too large!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Uzvārds"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Vārds"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Atrašanās vieta"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Valsts"
+
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Adrese"
+
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Tālrunis"
+
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Mobilais"
+
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Peidžeris"
+
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fakss"
+
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Mājas pasta adrese"
+
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Mājas tālruņa numurs"
+
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:859
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Nosaukums"
+
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organizācija"
+
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Nodaļa"
+
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:607
+#, php-format
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2117
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:3345
+#: plugins/config/class_recoveryConfig.inc:91
 #, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Veids"
-
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: 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 ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:162
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr ""
-
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+"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 ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "E-pasta adrese"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Valsts"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Tālruņa numurs"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr ""
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Uzvārds"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Vārds"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Faksa numurs"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Biedri"
+
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtrs"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Lietotāja ID"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr ""
+
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr ""
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtrs"
+
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
 msgstr ""
@@ -4940,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Ja esat pārliecināts, spiediet \"izdzēst\", lai turpinātu, vai \"Atcelt\", lai pārtrauktu. "
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4978,26 +4869,141 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Ja esat pārliecināts, spiediet \"izdzēst\", lai turpinātu, vai \"Atcelt\", lai pārtrauktu. "
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr ""
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Informācija"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr ""
@@ -5042,211 +5048,204 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
-msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Informācija"
-
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Lietotāja ID"
-
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/nb/fusiondirectory.po b/locale/nb/fusiondirectory.po
index 11014eb2e52312fe937b5dfdea883676d0235c00..6499af1f2acf11cc953cf6188afebecc115924a6 100644
--- a/locale/nb/fusiondirectory.po
+++ b/locale/nb/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Norwegian Bokmål (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n"
@@ -17,4850 +17,4759 @@ msgstr ""
 "Language: nb\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Navn"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Egenskaper"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Opprett"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Endre"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Fjern"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Feil"
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "LDAP-feil"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Etternavn"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Bruker"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Opprett"
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Feil"
+
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1084
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "ACL for these objects: %s"
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "Delete"
-msgstr ""
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#: setup/class_setupStep_Migrate.inc:1422
 #, php-format
-msgid "Edit ACL for \"%s\""
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
+msgstr ""
+
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:678
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:1130
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:2642
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_config.inc:156
 #, php-format
-msgid "Group of user %s"
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr ""
+
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Vert"
-
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
+#: include/class_msgPool.inc:806
+#, php-format
 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."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/php_setup.inc:132
+msgid "Type"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr ""
+
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
+#: include/class_ldap.inc:846
+#, php-format
 msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:1130
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:1134
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:1139
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Navn"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (%s is login)"
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Endre"
+
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Fjern"
+
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Feil"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
+msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "LDAP-feil"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
+#, php-format
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:885
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
-msgstr ""
-
-#: include/class_config.inc:1005
-msgid "All categories"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/class_plugin.inc:1322
+#, php-format
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/class_acl.inc:118
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
-msgstr ""
-
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/class_acl.inc:170
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/class_acl.inc:173
 #, php-format
-msgid "while operating on LDAP server %s"
+msgid "All users"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: html/index.php:150
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:173
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_msgPool.inc:47
+#: html/index.php:214
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:69
-#, php-format
-msgid "This '%s' object will be deleted!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:74
-#, php-format
-msgid "This object will be deleted: %s"
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:76
-#, php-format
-msgid "This '%s' object will be deleted: %s"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:454
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:475
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:485
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
 msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:285
+#: html/main.php:290
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:313
+#: html/main.php:306
 #, php-format
-msgid "'%s' command is invalid!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:315
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "'%s' command for plugin %s is invalid!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Bruker"
+
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:2119
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sMiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sTiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:3345
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: 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 ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Vert"
+
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:315
+msgid ""
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Egenskaper"
+
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr ""
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Etternavn"
+
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Feil"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr ""
+
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr ""
+
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr ""
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filter"
+
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
 msgstr ""
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4971,6 +4869,65 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:2
 msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
@@ -4979,16 +4936,72 @@ msgstr ""
 msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"FusionDirectory to get your data back."
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr ""
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
 msgstr ""
 
 #: ihtml/themes/breezy/acl.tpl.c:2
@@ -5035,211 +5048,197 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/nl/fusiondirectory.po b/locale/nl/fusiondirectory.po
index bd81621638326230502fae7ae8642d2fe5daa876..24d9266efe14b5d42e09d9e46383ec468a103991 100644
--- a/locale/nl/fusiondirectory.po
+++ b/locale/nl/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n"
@@ -17,4849 +17,4758 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Welkom %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Referenties"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Funktie"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Informatie"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Naam"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Omschrijving"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Beschrijving van de rol"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Telefoonnummer"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Fax nummer"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Voeg gebruikers toe voor de rol"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Groep"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Eigenschappen"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Forceer GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Groepsleden"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Gewenste taal"
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Systeem vertrouwen"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Taal setup"
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Vertrouwensmodus"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Deze stap laat je toe om je gewenste taal te kiezen."
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "gedeactiveerd"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "volledige toegang"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automatisch"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "sta toegang op deze computers toe"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "PHP module en extensie verificaties"
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Waarschuwing"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Installatie verificatie"
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Timeout tijdens het wachten voor een lock. lock is genegeerd!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Standaard verificatie voor PHP compatibiliteit en extensies"
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "PHP versie word geverifiëerd"
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Objectgroep"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr ""
+msgid "PHP must be of version %s or above."
+msgstr "PHP moet versie %s zijn of meer"
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Lidmaatschap objecten"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Upgrade aub naar de gesupporteerde versie."
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory heeft deze module nodige om te kunnen communiceren met de LDAP server."
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Lijst met groepen"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Acties"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Aanmaken"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Bewerken"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Verwijderen"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr ""
-
-#: 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:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Wijzig posix eigenschappen"
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Toon primaire groepen"
-
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Toon mailgroepen"
-
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Toon Samba groepen"
-
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr ""
-
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Domein Component"
-
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Afdeling"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Afdelingen"
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory heeft deze module nodig voor een internationale inferface."
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "afdeling"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory heeft deze module nodig om te kunnen communiceren met verschillende types van servers en protocollen."
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory heeft deze module nodig voor samba integratie."
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory heeft of de 'mhash' of de 'sha1' module nodig om gebruik te maken van SSHA encryptie."
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory heeft deze module nodig om met de IMAP server te kunnen communiceren."
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Categorie"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory heeft deze module nodig om unicode strings te kunnen behandelen."
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory heeft deze extensie nodig om afbeeldingen te kunnen bewerken."
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Beheerder"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "compressie module"
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory heeft deze extensie nodig om snapshots te kunnen behandelen."
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Plaats"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "register_globals is een PHP mechanisme om alle globale variabelen te registreren en toegankelijk te maken vanuit scripts zonder de scope te moeten aanpassen. Dit kan een veiligheidsrisico vormen. "
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Provincie"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Zoek voor 'register_globals' in je php.ini en schakel het 'uit'."
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Land"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP gebruikt deze waarde voor de vuilbak verzamelaar en om oude sessies te verwijderen."
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Adres"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Deze waarde naar 1 dag plaatsen kan het verliezen van de sessies en cookiesdoor timeout voorkomen."
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Zoek voor 'session.gc_maxlifetime' in je php.ini en plaats het naar 86400 of hoger."
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Telefoon"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Uit"
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Telefoonnummer"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "Om FusionDirectory zonder problemen te kunnen gebruiken, de moet je de session.auto_start optie in je php.ini naar 'Off' wijzigen."
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Zoek naar 'session.auto_start' in je php.ini en zet de waarde naar 'Off'."
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr "FusionDirectory heeft tenminste 128MB geheugen nodig. Het lager dan deze limiet plaatsen kan errors veroorzaken die niet hergeproduceerd kunnen worden! Vergroot deze waarde voor grotere installaties."
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr "Zoek voor 'memory_limit' in je php.ini en plaats het naar '128M' of hoger."
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Checks.inc:182
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Deze optie beinvloed de PHP output handling. Zet deze optie uit, om performantie te verhogen."
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Gebruikers en groepen"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Zoek naar 'implicit_flush' in je php.ini and zet de waarde 'Off'."
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Localiteit"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "De uitvoertijd zou minstens 30 seconden moeten zijn."
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Zoek naar 'max_execution_time' in je php.ini en zet het naar '30' of hoger."
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Verhoog de veiligheid van de server door de optie expose_php naar 'off' te plaatsen. PHP zal geen informatie over de server die je draait verzenden als je dit doet."
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Domein"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Zoek naar 'expose_php' in je php.ini en zet het naar 'Off'."
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Verhoog je server performantie door de optie magic_quotes_gpc naar 'off' te plaatsen."
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Lijst met afdelingen"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Zoek naar 'zend.ze1_compatibility_mode' in je php.ini en plaats het naar 'Off'."
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organisatie"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Welkom"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Welkom bij de FusionDirectory setup wizard"
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Lijst met gebruikers"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Het welkomstbericht"
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Achternaam"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Naam"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Migratie"
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Inlognaam"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "LDAP inspectie"
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Gebruiker"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Analyseer je huidige LDAP voor FusionDirectory compatibiliteit"
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Sjabloon"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Blokkeer gebruikers"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Deblokkeer gebruikers"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Inspectie van de object classes in root object"
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Template toepassen"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Rechten aan het nakijken voor de LDAP databank"
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Nieuwe gebruiker vanaf template"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Verificatie voor onzichtbare gebruikers"
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Bewerk gebruiker"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Verificatie voor super administrator"
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Verwijder gebruiker"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Verificatie voor gebruikers buiten de people tree"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Gebruikers"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Verificatie voor groepen buiten de groups tree"
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Beheer gebruikers"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Verificatie voor onzichtbare departementen"
+
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Verificatie voor duplicate UID nummers"
+
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "LDAP query faalde"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Rechten"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Mislukt"
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Account locking"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "Ontbrekende FusionDirectory object class '%s'!"
+
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Kijk je installatie na aub."
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
-msgstr ""
-
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Deblokkeer account"
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "Kan het structurele object type van je root object niet gebruiken. Probeer de object class '%s' manueel toe te voegen."
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Blokkeer account"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "LDAP fout"
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Geen ACL opties voor deze categorie"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Waarschuwing"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:574
 #, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL voor deze objecten: %s"
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "%s gebruiker(s) gevonden die niet zichtbaar zijn in FusionDirectory of die incompleet zijn."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Wijzig ACL categorie"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Migratie error"
+
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "Delete"
-msgstr "Verwijderen"
+msgid "Cannot migrate entry \"%s\":"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Reset ACL categorie"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Toon beschikbare ACL categoriëen"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Alle objecten in huidige subtree"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "alleen lezen"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Aanmaken"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "afleveren, lezen & schrijven"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Gebruikers"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Object"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Groepen"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Toon/verberg geavanceerde opties"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "Er is geen FusionDirectory administrator account in je LDAP."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Maak objecten"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Verplaats objecten"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Fout"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Verwijder objecten"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Rechten toekennen aan eigenaar"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Volledig object"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "ACL rollen"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Verplaats gebruikers in deze geconfigureerde user tree"
+
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "naar"
+
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "De volgende referenties zullen upgedate worden"
+
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Bevat opties voor deze objecten: %s"
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Vond %s groepen buiten de geconfigureerde tree '%s'."
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Access control rollen"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "ACL rol"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Vond %s departement(en) die niet zichtbaar zullen zijn in FusionDirectory."
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Naam van de locatie"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "Connectie URI"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "TLS connectie"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Basis"
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "ACL toekenning"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Authentificatie"
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "Beheerders DN"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Modus"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Beheerders wachtwoord"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Status"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Huidige status"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "LDAP setup"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "LDAP connectie setup"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Groepsleden"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Deze dialoog zorgt voor de basis configuratie van de LDAP connectiviteit voor FusionDirectory."
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "Anonieme bind naar server '%s' is mislukt! "
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "Bind als gebruiker '%s' is mislukt!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Opnieuw proberen"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "Anonieme bind naar server '%s' is succesvol."
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Ververs"
+
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Specifieer aub een gebruikersnaam en paswoord!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: setup/class_setupStep_Ldap.inc:178
 #, php-format
-msgid "Assignments on object or subtree %s"
-msgstr ""
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "Bind als gebruiker '%s' naar server '%s' is succesvol!"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Opslaan"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Voltooid - schrijf configuratie bestand"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Schrijf configuratie bestand"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Je configuratie bestand is momenteel wereldleesbaar. Update aub de bestandsrechten!"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "De configuratie is momenteel niet leesbaar of bestaat niet."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Na het downloaden en plaatsen van het bestand onder %s, verifieer aub dat de gebruiker die de webserver draait de mogelijkheid heeft om %s te lezen, terwijl andere gebruikers dit niet kunnen."
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Setup error"
+
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Voltooid"
+
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Volgende"
+
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Interne fout"
+
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Logging faalde: %s"
+
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Paswoord methode"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "Gespecifieerd objectType is leeg of ongeldig!"
+
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "niet geconfigureerd"
+
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Filter fout"
+
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "Deze filter is niet compleet!"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr ""
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Rechten"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Wachtwoord"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Permissiefout"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr ""
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "U heeft geen toestemming om een snapshot te maken voor %s."
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr ""
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "U heeft geen toestemming om een snapshot te herstellen voor %s."
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr ""
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "Geen tab declaratie voor '%s' gevonden in je configuratie bestand. Kan plugin instantie niet aanmaken!"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Persoonlijke informatie"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Basis"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Achternaam"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Verwerk"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr ""
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Omhoog"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Voornaam"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Omlaag"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr ""
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Selecteer alles"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr ""
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "aangemaakt door"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr ""
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Ga naar basis afdelingen"
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Ga een afdeling omhoog"
+
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Kamer nr."
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Home"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Kamernummer"
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Lijst herladen"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr ""
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Acties"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "GSM"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Kopieer"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr ""
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Knip"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Pieper"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Plakken"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr ""
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Deze invoer knippen"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr ""
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Deze invoer kopieren"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Homepage"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Restaureer snapshots"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr ""
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Export lijst"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr ""
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Restaureer snapshot"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr ""
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Maak snapshot"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Gewenste taal"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Maak een nieuw snapshot van dit object"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr ""
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Fatale fout."
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr ""
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "in"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Getoonde naam"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "op lijn"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr ""
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "XML error"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "Kan wachtwoord niet wijzigen, onbekende gebruiker '%s'"
+
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Postadres thuis"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Configuratie fout"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Telefoon privé"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Pagina"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Prive nummer"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "Geen PDF export mogelijk: Er is geen FPDF library geinstalleerd."
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Organisatie informatie"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Titel"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr ""
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "Gevraagde kanaal bestaat niet! Gelieve je Systeembeheerder te contacteren."
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Annuleer alles"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Afdeling nr."
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Kan niet plakken"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Departement nummer"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Inlognaam"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Personeel nr."
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Sjabloon"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Werknemer nummer"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Functie"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Sjabloon naam"
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:123
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr ""
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "Fatale error: geen class locaties gedefinieerd - draai aub '%s' om dit op te lossen"
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr ""
+#: include/functions.inc:142
+#, php-format
+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"
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:512
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr ""
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "FATAAL: Fout bij het verbinden met de LDAP server. De server meldt: '%s'."
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Authentificatie error"
+
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "U moet uw huidige wachtwoord opgeven om door te kunnen gaan."
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Error tijdens het toevoegen van de lock. Contacteer de programmeurs!"
 
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:678
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr ""
+"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!"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nieuw wachtwoord"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "LDAP server returned: %s"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Het huidige wachtwoord en het nieuwe wachtwoord lijken te veel op elkaar."
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Het nieuw opgegeven wachtwoord is te kort."
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "De hoeveelheidslimiet van %d invoeren is overschreden!"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "Het paswoord bevat mogelijke probleemgevende Unicode karakters!"
+#: include/functions.inc:1132
+#, 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."
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr ""
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Instellen"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Wijzig gebruikers POSIX opties"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "onvolledig"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Persoonlijke map"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Toch doorgaan"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr ""
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Alsnog bewerken"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/functions.inc:1563
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr ""
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Regels per pagina"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Primaire groep"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Filter toepassen"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Status"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Groep lidmaatschap"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Account"
+#: include/functions.inc:2267
+#, 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."
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "Het wachtwoord moet bij de eerste aanmelding gewijzigd worden"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Kan niet wegschrijven naar revisie bestand!"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "Kan revisie bestand niet lezen!"
+
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "LDAP waarschuwing"
+
+#: include/functions.inc:2559
+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:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Class(es) beschikbaar"
+
+#: include/functions.inc:2641
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
+#: include/functions.inc:2645
 msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "niet geconfigureerd"
-
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automatisch"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "Kan geen vrij ID  toekennen:"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "verlopen"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "onbekende idAllocation methode!"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "gratie tijd actief"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "%sPoolMin >=%sPoolMax!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "actief"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "sambaUnixIdPool is niet uniek!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "paswoord is vervallen"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "Geen ID beschikbaar!"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "paswoord niet wijzigbaar"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "maximum pogingen overschreden!"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Kan geen vrij ID toekennen!"
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:3321
 #, php-format
-msgid "Group of user %s"
-msgstr ""
+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"
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr ""
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Alle objecten in deze categorie"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr ""
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Los aub de bovenstaande error op en herlaad de pagina."
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr ""
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "XML fout in fusiondirectory.conf: %s op regel %d"
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Objectgroepen"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Kan niet binden met de LDAP. Gelie je systeembeheerder te contacteren."
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr ""
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/class_config.inc:899
+#, 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'."
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr ""
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Alle categoriën"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr ""
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Mijn account"
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Configuratie"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Selecteer om objecten van type '%s' te tonen."
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr ""
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Selecteer om objecten die '%s' bevatten te tonen."
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Selecteer om objecten te tonen die '%s' actief hebben"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Kijk en voel"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Selecteer om binnen subonderdelen te zoeken"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Taal"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Zoek in subtrees"
 
-#: 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 ""
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Dit object zal verwijderd worden!"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Thema"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Dit '%s' obkect zal verwijderd worden!"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr ""
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Dit object zal verwijder worden: %s"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Tijdzone"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Dit '%s' object zal verwijderd worden: %s"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr ""
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Dit object zal verwijderd worden:"
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr ""
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Dit '%s' object zal verwijderd worden:"
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr ""
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Deze objecten zullen verwijderd worden: %s"
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr ""
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Deze '%s' objecten zullen verwijderd worden: %s"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Paswoord opties"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Je hebt geen rechten om dit object te verwijderen!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr ""
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Je hebt geen rechten om dit object te verwijderen:"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr ""
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Je hebt geen rechten om deze objecten te verwijderen:"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr ""
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Je hebt geen rechten om dit object aan te maken!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr ""
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Je hebt geen rechten om dit object aan te maken:"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Paswoord minimum lengte"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Je hebt geen rechten om deze objecten aan te maken:"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Je hebt geen rechten om dit object te wijzigen!"
+
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Gebruik account expiration"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Je hebt geen rechten om dit object te bekijken!"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr ""
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Je hebt geen rechten om dit object te bekijken:"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr ""
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Je hebt geen rechten om deze objecten te bekijken:"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr ""
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Je hebt geen rechten om dit object te verplaatsen!"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr ""
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Je hebt geenr rechten om dit object te verplaatsen:"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr ""
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Je hebt geen rechten om deze objecten te verplaatsen:"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Toon overzicht in lijsten"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Connectie informatie"
 
-#: plugins/config/class_configInLdap.inc:162
-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 ""
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Kan niet connecteren met %s databank!"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr ""
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Kan %s databank niet selecteren!"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr ""
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Geen %s server gedefinieerd!"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr ""
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Kan geen query maken naar %s databank!"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr ""
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Het veld '%s' bevat een gereserveerd keyword!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr ""
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "Commando gespecifieerd als %s hook voor plugin '%s' bestaat niet!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr ""
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "'%s' commando is niet geldig!"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Login en sessie"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "'%s' commando voor plugin %s is niet geldig!"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Login attribuut"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "'%s' commando (%s) is niet geldig!"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr ""
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "'%s' commando (%s) voor plugin %s is niet geldig!"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Forceer gëencrypteerde connecties"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Kan '%s' commando niet uitvoeren!"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr ""
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Kan '%s' commando voor plugin %s niet uitvoeren!"
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Verwittig mij als de sessie niet gëencrypteerd is"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "Kan '%s' commando (%s) niet uitvoeren!"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr ""
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Kan '%s' commando (%s) voor plugin %s niet uitvoeren!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Sessie levensduur"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Waarde voor '%s' is te groot!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "'%s' moet kleiner zijn dan %s!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Waarde voor '%s' is te klein!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "'%s' moet %d zijn of hoger!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "'%s' hangt af van '%s' - geef aub beidde waarden in!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Er is al een inzending met dit '%s' attribuut in het systeem!"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Het vereiste veld '%s' is leeg!"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Activeer snapshots"
-
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Snaphosts basis"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "'%s' is niet toegelaten:"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr ""
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "'%s' zijn niet toegelaten!"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr ""
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "%s PHP extensie ontbreekt!"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr ""
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Annuleren"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Toepassen"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr ""
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Opslaan"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Toevoegen"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Voeg %s toe"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Verwijderen"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr ""
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Verwijder %s"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Wijzig..."
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Wijzig %s..."
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Terug"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Host"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "De account heeft geen geldige %s extensies!"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Deze account heeft %s opties actief. Je kan deze desactiveren door op ze te klikken hieronder."
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Poort"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Deze account heeft %s opties actief. Om ze te desactiveren, zal je de %s opties eerst moeten verwijderen!"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Deze account heeft %s opties op non-actief. Om ze te activeren kan je hieronder op ze klikken."
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Deze account heeft %s opties op non-actief. Om ze te activeren moet je de %s opties eerst toevoegen!"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Voeg %s opties toe"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "People and group opslag"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Verwijder %s opties"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "People DN attribuut"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Gebruik de 'Bewerk' knop hieronder om de informatie in deze dialoog te veranderen"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Januari"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Februari"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Maart"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "April"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Mei"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Juni"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Juli"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Augustus"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "September"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Oktober"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "November"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "December"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Zondag"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Maandag"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Dinsdag"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Woensdag"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Donderdag"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Vrijdag"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Zaterdag"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr ""
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "Databank operatie faalde!"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "lees operatie"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "voeg operatie toe"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "wijzig operatie"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "verwijder operatie"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "zoek operatie"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "authentificatie"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "LDAP %s faalde!"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr ""
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "LDAP operaite faalde!"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Object"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr ""
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "Upload faalde!"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Upload faalde: %s"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "Communicatie met de infrastructuur dienst faalde!"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr ""
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Communicatie met de infrastructuur dienst faalde: %s"
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Debugging"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "De '%s' is nog steeds in gebruik door dit object: %s"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr ""
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "De '%s' is nog steeds in gebruik."
 
-#: plugins/config/class_configInLdap.inc:387
-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 ""
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "De '%s' is nog steeds in gebruik door deze objecten: %s"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Maximum LDAP query tijd"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Bestand '%s' bestaat niet!"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr ""
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Kan bestand '%s' niet openen om te lezen!"
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Log LDAP statistieken"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "Kan bestand '%s' niet openen om te schrijven!"
 
-#: plugins/config/class_configInLdap.inc:397
+#: include/class_msgPool.inc:806
+#, php-format
 msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "De waarde voor '%s' is momenteel niet geconfigureerd of niet geldig, verifieer aub je configuratie bestand!"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Debug level"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "Kan bestand '%s' niet verwijderen!"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr ""
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "Kan folder '%s' niet maken!"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Terminal Service diverse"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "Kan folder '%s' niet verwijderen!"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr ""
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Verificatie voor %s support"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr ""
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
+msgstr "Installeer en activeer de %s PHP module."
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr ""
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
+msgstr "Installeer en activeer de %s Pear module."
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "Modus"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "Kan class '%s' niet initializeren! Misschien ontbreekt er een plugin in je FusionDirectory setup?"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr ""
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr "De opgegeven base is niet geldig en is veranderd naar de vorige waarde!"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Inhakers"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Timestamp"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr ""
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d,H-i:s"
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr "Restaureer"
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automatisch"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Bestand"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Paswoord herstel"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Regel"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Instellingen voor de wachtwoord herstel feature"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "PHP fout"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Paswoord herstel opties"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "klasse"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Activeer paswoord herstel"
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "functie"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr ""
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "statisch"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Zender email adres"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "methode"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "Email adres van waaruit de mails zullen verzonden worden"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Trace"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Link geldigheid (minuten)"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Type"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr ""
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argumenten"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr ""
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "Er is minimaal één PHP fout opgetreden bij het genereren van deze pagina!"
 
-#: plugins/config/class_recoveryConfig.inc:66
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Stuur probleemrapport naar het FusionDirectory Teal"
+
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Stuur probleemrapport"
+
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Informatie weergeven/verbergen"
+
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Performantie waarschuwing"
+
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr "LDAP performantie is slecht: laatste query duurde ongeveer %.2fs!"
+
+#: include/class_ldap.inc:846
+#, php-format
 msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr ""
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "bij het bewerken van '%s' op LDAP server '%s'"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "bij het bewerken van LDAP server %s"
+
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Onderwerp"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Paswoord herstel link"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:1134
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:1139
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:1170
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Hallo,⏎ ⏎ Hier is je informatie : ⏎  - Login : %s⏎  - Link : %s⏎ ⏎ Deze link is enkel geldig voor 10 minuten."
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Fout bij het importeren van dn: '%s', controleer uw LDIF bestand a.u.b. vanaf regel %s!"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Gelieve de items te selecteren"
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Naam"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Paswoord herstel succesvol"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Omschrijving"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (%s is login)"
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Hallo,⏎ ⏎ Je paswoord is gewijzigd ⏎ Je login is nog steeds %s."
-
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Gebruikersgroep"
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Geen"
+
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Onbekend"
+
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Bewerken"
+
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Verwijderen"
+
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "Geen plugin definities gevonden om '%s' te initializeren, verifieer aub je configuratie bestand."
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr ""
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "Het verwijder proces is geannuleerd door plugin '%s': %s"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "seconden"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "minuten"
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Omhoog"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "uren"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Omlaag"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "dagen"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Selecteer alles"
-
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Fout"
-
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "aangemaakt door"
-
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Ga naar basis afdelingen"
-
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Basis"
-
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Ga een afdeling omhoog"
-
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Home"
-
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Lijst herladen"
-
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Verwerk"
-
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Kopieer"
-
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Knip"
-
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Plakken"
-
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Deze invoer knippen"
-
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Deze invoer kopieren"
-
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Restaureer snapshots"
-
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Export lijst"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Restaureer snapshot"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Maak snapshot"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Maak een nieuw snapshot van dit object"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Filter fout"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "Deze filter is niet compleet!"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Permissiefout"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "U heeft geen toestemming om een snapshot te maken voor %s."
+msgid "There is already an entry with the same dn : %s"
+msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "U heeft geen toestemming om een snapshot te herstellen voor %s."
+msgid "The entry %s is not existing"
+msgstr ""
 
-#: include/class_management.inc:679
-#, php-format
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "Geen tab declaratie voor '%s' gevonden in je configuratie bestand. Kan plugin instantie niet aanmaken!"
+"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 ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "XML fout in fusiondirectory.conf: %s op regel %d"
-
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Configuratie fout"
+msgid "Unknown field \"%s\""
+msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "LDAP fout"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Kan niet binden met de LDAP. Gelie je systeembeheerder te contacteren."
-
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, 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."
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+msgstr ""
 
-#: include/class_config.inc:898
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, 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'."
+msgid "Cannot read uploaded file: %s"
+msgstr "Kan geupload bestand niet lezen: %s"
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Alle categoriën"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "bestand is leeg"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Mijn account"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "bestand niet gevonden"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Performantie waarschuwing"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "bestand onleesbaar"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr "LDAP performantie is slecht: laatste query duurde ongeveer %.2fs!"
+msgid "%s (%d bytes)"
+msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Interne fout"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Uploaden"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Downloaden"
 
-#: include/class_ldap.inc:846
-#, php-format
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "bij het bewerken van '%s' op LDAP server '%s'"
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "bij het bewerken van LDAP server %s"
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "A float smaller than %f"
+msgstr ""
+
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Fout bij het importeren van dn: '%s', controleer uw LDIF bestand a.u.b. vanaf regel %s!"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr ""
 
-#: include/class_msgPool.inc:43
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Selecteer om objecten van type '%s' te tonen."
+msgid "Tab \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Selecteer om objecten die '%s' bevatten te tonen."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "Rechten"
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Selecteer om objecten te tonen die '%s' actief hebben"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Beheer access control lists"
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Selecteer om binnen subonderdelen te zoeken"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "ACL rollen"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Zoek in subtrees"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Dit object zal verwijderd worden!"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Onbekende inzending '%s'!"
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Dit '%s' obkect zal verwijderd worden!"
+msgid "All users"
+msgstr "Alle gebruikers"
 
-#: include/class_msgPool.inc:74
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
+
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Dit object zal verwijder worden: %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Directory '%s' die opgegeven is als compileer directory is niet toegankelijk!"
 
-#: include/class_msgPool.inc:76
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Dit '%s' object zal verwijderd worden: %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Dit object zal verwijderd worden:"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
+msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:150
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Dit '%s' object zal verwijderd worden:"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Smarty error"
+
+#: html/index.php:173
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Deze objecten zullen verwijderd worden: %s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
+msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Je FusionDirectory sessie is vervallen!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr ""
+
+#: html/index.php:214
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Deze '%s' objecten zullen verwijderd worden: %s"
+msgid "Invalid plugin parameter \"%s\"!"
+msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Je hebt geen rechten om dit object te verwijderen!"
+#: html/index.php:217
+msgid "No session found!"
+msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Je hebt geen rechten om dit object te verwijderen:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Je hebt geen rechten om deze objecten te verwijderen:"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Je hebt geen rechten om dit object aan te maken!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Geef a.u.b. een geldige gebruikersnaam op!"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Je hebt geen rechten om dit object aan te maken:"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Geef a.u.b. uw wachtwoord op!"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Je hebt geen rechten om deze objecten aan te maken:"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Controleer a.u.b. de gebruikersnaam/wachtwoord combinatie."
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Je hebt geen rechten om dit object te wijzigen!"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Accound geblokkeerd. Contacteer aub je systeembeheerder!"
 
-#: include/class_msgPool.inc:151
+#: html/index.php:454
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:475
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:485
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Je hebt geen rechten om dit object te bekijken!"
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Je hebt geen rechten om dit object te bekijken:"
-
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Je hebt geen rechten om deze objecten te bekijken:"
-
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Je hebt geen rechten om dit object te verplaatsen!"
-
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Je hebt geenr rechten om dit object te verplaatsen:"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Je hebt geen rechten om deze objecten te verplaatsen:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Connectie informatie"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Cookies zijn uitgeschakeld in uw browser. Schakel cookies a.u.b. in en herlaad deze pagina voordat u inlogt!"
 
-#: include/class_msgPool.inc:225
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Kan niet connecteren met %s databank!"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "FusionDirectory configuratie %s/%s is niet leesbaar. Geannuleerd."
 
-#: include/class_msgPool.inc:245
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "Cannot select %s database!"
-msgstr "Kan %s databank niet selecteren!"
+msgid "Did not find an account with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "No %s server defined!"
-msgstr "Geen %s server gedefinieerd!"
+msgid "Found multiple accounts with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
-msgstr "Kan geen query maken naar %s databank!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "E-mail adres"
 
-#: include/class_msgPool.inc:285
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Het veld '%s' bevat een gereserveerd keyword!"
+msgid "There is no account using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:297
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "Commando gespecifieerd als %s hook voor plugin '%s' bestaat niet!"
+msgid "There are several accounts using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:313
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "'%s' commando is niet geldig!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "'%s' commando voor plugin %s is niet geldig!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Contacteer je systeembeheerder, er was een probleem met de mailserver"
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "'%s' commando (%s) is niet geldig!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr "Deze token is niet geldig"
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "'%s' commando (%s) voor plugin %s is niet geldig!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr "Er was een probleem met de mail server, de bevestiging werd niet verstuurd"
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Kan '%s' commando niet uitvoeren!"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "PHP configuratie"
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Kan '%s' commando voor plugin %s niet uitvoeren!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Fatale error : Registreer globals in aan. FusionDirectory zal login weigeren als dit niet opgelost wordt door een admin."
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "Kan '%s' commando (%s) niet uitvoeren!"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Paswoord wijzigen"
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Kan '%s' commando (%s) voor plugin %s niet uitvoeren!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Je paswoord gaat vervallen, gelieve je paswoord te wijzigen!"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Waarde voor '%s' is te groot!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "'%s' moet kleiner zijn dan %s!"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "Bijna zonder geheugen!"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Waarde voor '%s' is te klein!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Gebruiker ACL verificatie is niet actief"
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "'%s' moet %d zijn of hoger!"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Plugin"
 
-#: include/class_msgPool.inc:393
+#: html/main.php:290
 #, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "'%s' hangt af van '%s' - geef aub beidde waarden in!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr "Fatale error: Kan plugin definities niet vinden voor plugin '%s' ('%s' is geen bestand)!"
 
-#: include/class_msgPool.inc:404
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Configuratie Error"
+
+#: html/main.php:306
 #, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Er is al een inzending met dit '%s' attribuut in het systeem!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Fatale error: niet alle POST variabelen zijn verplaatst naar PHP - Informeer aub je administrator!"
 
-#: include/class_msgPool.inc:406
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+msgid "Welcome %s!"
+msgstr "Welkom %s!"
+
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Referenties"
+
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Het vereiste veld '%s' is leeg!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Wijzig gebruikers POSIX opties"
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Persoonlijke map"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "'%s' is niet toegelaten:"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Primaire groep"
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "'%s' zijn niet toegelaten!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "%s PHP extensie ontbreekt!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Annuleren"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Toepassen"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Opslaan"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Toevoegen"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Voeg %s toe"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Verwijder %s"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Groep lidmaatschap"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Wijzig..."
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Account"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Wijzig %s..."
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "Het wachtwoord moet bij de eerste aanmelding gewijzigd worden"
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Terug"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "De account heeft geen geldige %s extensies!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:169
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Deze account heeft %s opties actief. Je kan deze desactiveren door op ze te klikken hieronder."
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Deze account heeft %s opties actief. Om ze te desactiveren, zal je de %s opties eerst moeten verwijderen!"
+"Date after which this user password will expire (leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Deze account heeft %s opties op non-actief. Om ze te activeren kan je hieronder op ze klikken."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Deze account heeft %s opties op non-actief. Om ze te activeren moet je de %s opties eerst toevoegen!"
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Voeg %s opties toe"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Systeem vertrouwen"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "Verwijder %s opties"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Vertrouwensmodus"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Gebruik de 'Bewerk' knop hieronder om de informatie in deze dialoog te veranderen"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Januari"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "gedeactiveerd"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Februari"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "volledige toegang"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Maart"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "sta toegang op deze computers toe"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "April"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Mei"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automatisch"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Juni"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "verlopen"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Juli"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "gratie tijd actief"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Augustus"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "actief"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "September"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "paswoord is vervallen"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Oktober"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "paswoord niet wijzigbaar"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "November"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "December"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Zondag"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Timeout tijdens het wachten voor een lock. lock is genegeerd!"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Maandag"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Dinsdag"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Woensdag"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Donderdag"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Vrijdag"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Zaterdag"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Paswoord methode"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "Databank operatie faalde!"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "lees operatie"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Wachtwoord"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "voeg operatie toe"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "wijzig operatie"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Gebruiker"
+
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "verwijder operatie"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Persoonlijke informatie"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "zoek operatie"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Achternaam"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "authentificatie"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "LDAP %s faalde!"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Voornaam"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "LDAP operaite faalde!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "Upload faalde!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Upload faalde: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "Communicatie met de infrastructuur dienst faalde!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Communicatie met de infrastructuur dienst faalde: %s"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "De '%s' is nog steeds in gebruik door dit object: %s"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Plaats"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "De '%s' is nog steeds in gebruik."
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Provincie"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "De '%s' is nog steeds in gebruik door deze objecten: %s"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Adres"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Bestand '%s' bestaat niet!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Kan bestand '%s' niet openen om te lezen!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Kamer nr."
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Kan bestand '%s' niet openen om te schrijven!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Kamernummer"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "De waarde voor '%s' is momenteel niet geconfigureerd of niet geldig, verifieer aub je configuratie bestand!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Telefoon"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Kan bestand '%s' niet verwijderen!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "Kan folder '%s' niet maken!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "GSM"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "Kan folder '%s' niet verwijderen!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Verificatie voor %s support"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Pieper"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Installeer en activeer de %s PHP module."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr "Installeer en activeer de %s Pear module."
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "Kan class '%s' niet initializeren! Misschien ontbreekt er een plugin in je FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr "De opgegeven base is niet geldig en is veranderd naar de vorige waarde!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Homepage"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "Fatale error: geen class locaties gedefinieerd - draai aub '%s' om dit op te lossen"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-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"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Fatale fout."
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr ""
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Authentificatie error"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Getoonde naam"
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Error tijdens het toevoegen van de lock. Contacteer de programmeurs!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr ""
 
-#: include/functions.inc:678
-#, 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!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Postadres thuis"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Telefoon privé"
 
-#: include/functions.inc:859
-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."
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Prive nummer"
+
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Organisatie informatie"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "De hoeveelheidslimiet van %d invoeren is overschreden!"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Titel"
 
-#: include/functions.inc:1132
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 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."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Instellen"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organisatie"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "onvolledig"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Afdeling"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Toch doorgaan"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
+msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Alsnog bewerken"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Afdeling nr."
 
-#: include/functions.inc:1563
-#, 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"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Departement nummer"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Regels per pagina"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Personeel nr."
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Filter toepassen"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Werknemer nummer"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Functie"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Beheerder"
 
-#: include/functions.inc:2119
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sMiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sTiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "U moet uw huidige wachtwoord opgeven om door te kunnen gaan."
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nieuw wachtwoord"
 
-#: include/functions.inc:2294
-#, 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."
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Het huidige wachtwoord en het nieuwe wachtwoord lijken te veel op elkaar."
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "Kan niet wegschrijven naar revisie bestand!"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Het nieuw opgegeven wachtwoord is te kort."
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "Kan revisie bestand niet lezen!"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "Het paswoord bevat mogelijke probleemgevende Unicode karakters!"
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "LDAP waarschuwing"
-
-#: include/functions.inc:2586
-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:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Class(es) beschikbaar"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Paswoord herstel"
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Instellingen voor de wachtwoord herstel feature"
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Paswoord herstel opties"
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Activeer paswoord herstel"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "Kan geen vrij ID  toekennen:"
-
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "onbekende idAllocation methode!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Zender email adres"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "%sPoolMin >=%sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "Email adres van waaruit de mails zullen verzonden worden"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "sambaUnixIdPool is niet uniek!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Link geldigheid (minuten)"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "Geen ID beschikbaar!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "maximum pogingen overschreden!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Kan geen vrij ID toekennen!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr ""
 
-#: include/functions.inc:3345
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "Gevraagde kanaal bestaat niet! Gelieve je Systeembeheerder te contacteren."
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Sjabloon naam"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Onderwerp"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Alle objecten in deze categorie"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Bestand"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Paswoord herstel link"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Regel"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "PHP fout"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "klasse"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Hallo,⏎ ⏎ Hier is je informatie : ⏎  - Login : %s⏎  - Link : %s⏎ ⏎ Deze link is enkel geldig voor 10 minuten."
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "functie"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "statisch"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "methode"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Paswoord herstel succesvol"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Trace"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Type"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argumenten"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Hallo,⏎ ⏎ Je paswoord is gewijzigd ⏎ Je login is nog steeds %s."
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "Er is minimaal één PHP fout opgetreden bij het genereren van deze pagina!"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Configuratie"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Stuur probleemrapport naar het FusionDirectory Teal"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Stuur probleemrapport"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Informatie weergeven/verbergen"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Kijk en voel"
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Los aub de bovenstaande error op en herlaad de pagina."
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Taal"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: 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 ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Thema"
+
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Timestamp"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Tijdzone"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d,H-i:s"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr "Restaureer"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Paswoord opties"
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Pagina"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "Geen PDF export mogelijk: Er is geen FPDF library geinstalleerd."
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Paswoord minimum lengte"
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "in"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "op lijn"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "XML error"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Gebruik account expiration"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
+#: plugins/config/class_configInLdap.inc:144
 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!"
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Annuleer alles"
-
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Kan niet plakken"
-
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Toon overzicht in lijsten"
+
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Gelieve de items te selecteren"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Login en sessie"
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Login attribuut"
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Forceer gëencrypteerde connecties"
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Verwittig mij als de sessie niet gëencrypteerd is"
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Gebruikersgroep"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Geen"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Sessie levensduur"
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Onbekend"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "seconden"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "minuten"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Activeer snapshots"
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "uren"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "dagen"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Snaphosts basis"
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "Kan geupload bestand niet lezen: %s"
-
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "bestand is leeg"
-
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "bestand niet gevonden"
-
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "bestand onleesbaar"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Uploaden"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Downloaden"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Host"
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Basis"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Poort"
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "Geen plugin definities gevonden om '%s' te initializeren, verifieer aub je configuratie bestand."
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "People and group opslag"
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "Het verwijder proces is geannuleerd door plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "People DN attribuut"
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "Rechten"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Beheer access control lists"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Onbekende inzending '%s'!"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Alle gebruikers"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "Kan wachtwoord niet wijzigen, onbekende gebruiker '%s'"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Logging faalde: %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "Gespecifieerd objectType is leeg of ongeldig!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
+msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Smarty error"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Je FusionDirectory sessie is vervallen!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
+msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Geef a.u.b. een geldige gebruikersnaam op!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Geef a.u.b. uw wachtwoord op!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Controleer a.u.b. de gebruikersnaam/wachtwoord combinatie."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Accound geblokkeerd. Contacteer aub je systeembeheerder!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
+msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Debugging"
+
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Maximum LDAP query tijd"
+
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Cookies zijn uitgeschakeld in uw browser. Schakel cookies a.u.b. in en herlaad deze pagina voordat u inlogt!"
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "PHP configuratie"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Log LDAP statistieken"
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:397
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Fatale error : Registreer globals in aan. FusionDirectory zal login weigeren als dit niet opgelost wordt door een admin."
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Paswoord wijzigen"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Debug level"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Je paswoord gaat vervallen, gelieve je paswoord te wijzigen!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Terminal Service diverse"
+
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "Bijna zonder geheugen!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Gebruiker ACL verificatie is niet actief"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "Modus"
+
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Plugin"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
-msgstr "Fatale error: Kan plugin definities niet vinden voor plugin '%s' ('%s' is geen bestand)!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Inhakers"
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Configuratie Error"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Fatale error: niet alle POST variabelen zijn verplaatst naar PHP - Informeer aub je administrator!"
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
+msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "FusionDirectory configuratie %s/%s is niet leesbaar. Geannuleerd."
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Directory '%s' die opgegeven is als compileer directory is niet toegankelijk!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "E-mail adres"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Contacteer je systeembeheerder, er was een probleem met de mailserver"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
-msgstr "Deze token is niet geldig"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
-msgstr "Er was een probleem met de mail server, de bevestiging werd niet verstuurd"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Objectgroepen"
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Naam van de locatie"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "Connectie URI"
-
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "TLS connectie"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Authentificatie"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "Beheerders DN"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Beheerders wachtwoord"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Huidige status"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "LDAP setup"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Afdelingen"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "LDAP connectie setup"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "afdeling"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Deze dialoog zorgt voor de basis configuratie van de LDAP connectiviteit voor FusionDirectory."
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Eigenschappen"
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "Anonieme bind naar server '%s' is mislukt! "
+msgid "Name of %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Bind als gebruiker '%s' is mislukt!"
+msgid "A name for this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Opnieuw proberen"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Categorie"
+
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "Anonieme bind naar server '%s' is succesvol."
+msgid "Category of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Ververs"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Specifieer aub een gebruikersnaam en paswoord!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "Bind als gebruiker '%s' naar server '%s' is succesvol!"
+msgid "Manager of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Land"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Welkom"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Telefoonnummer"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Opslaan"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Voltooid - schrijf configuratie bestand"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Schrijf configuratie bestand"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Domein"
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Je configuratie bestand is momenteel wereldleesbaar. Update aub de bestandsrechten!"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "De configuratie is momenteel niet leesbaar of bestaat niet."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Na het downloaden en plaatsen van het bestand onder %s, verifieer aub dat de gebruiker die de webserver draait de mogelijkheid heeft om %s te lezen, terwijl andere gebruikers dit niet kunnen."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Migratie"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Gebruikers en groepen"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "PHP module en extensie verificaties"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Domein Component"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "LDAP inspectie"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Analyseer je huidige LDAP voor FusionDirectory compatibiliteit"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Localiteit"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr ""
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Lijst met afdelingen"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Inspectie van de object classes in root object"
-
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Rechten aan het nakijken voor de LDAP databank"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Beheer gebruikers"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Verificatie voor onzichtbare gebruikers"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Verificatie voor super administrator"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Account locking"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Verificatie voor gebruikers buiten de people tree"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Deblokkeer account"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Verificatie voor groepen buiten de groups tree"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Blokkeer account"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Verificatie voor onzichtbare departementen"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Lijst met gebruikers"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Verificatie voor duplicate UID nummers"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Achternaam"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Naam"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "LDAP query faalde"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Blokkeer gebruikers"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Deblokkeer gebruikers"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Mislukt"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Template toepassen"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "Ontbrekende FusionDirectory object class '%s'!"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Nieuwe gebruiker vanaf template"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Kijk je installatie na aub."
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Bewerk gebruiker"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "Kan het structurele object type van je root object niet gebruiken. Probeer de object class '%s' manueel toe te voegen."
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Verwijder gebruiker"
+
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Funktie"
+
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "%s gebruiker(s) gevonden die niet zichtbaar zijn in FusionDirectory of die incompleet zijn."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Informatie"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Migratie error"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Beschrijving van de rol"
+
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Telefoonnummer"
+
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Fax nummer"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Voeg gebruikers toe voor de rol"
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Groepen"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "Er is geen FusionDirectory administrator account in je LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Wijzig posix eigenschappen"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Toon primaire groepen"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Toon mailgroepen"
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Verplaats gebruikers in deze geconfigureerde user tree"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Toon Samba groepen"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "naar"
-
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "De volgende referenties zullen upgedate worden"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Vond %s groepen buiten de geconfigureerde tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Vond %s departement(en) die niet zichtbaar zullen zijn in FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Taal setup"
-
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Deze stap laat je toe om je gewenste taal te kiezen."
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Objectgroep"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Welkom bij de FusionDirectory setup wizard"
-
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Het welkomstbericht"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Groep"
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Installatie verificatie"
-
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Standaard verificatie voor PHP compatibiliteit en extensies"
-
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "PHP versie word geverifiëerd"
-
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP moet versie %s zijn of meer"
-
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Upgrade aub naar de gesupporteerde versie."
-
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory heeft deze module nodige om te kunnen communiceren met de LDAP server."
-
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory heeft deze module nodig voor een internationale inferface."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Lidmaatschap objecten"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory heeft deze module nodig om te kunnen communiceren met verschillende types van servers en protocollen."
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory heeft deze module nodig voor samba integratie."
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory heeft of de 'mhash' of de 'sha1' module nodig om gebruik te maken van SSHA encryptie."
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory heeft deze module nodig om met de IMAP server te kunnen communiceren."
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Lijst met groepen"
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory heeft deze module nodig om unicode strings te kunnen behandelen."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory heeft deze extensie nodig om afbeeldingen te kunnen bewerken."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Forceer GID"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "compressie module"
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory heeft deze extensie nodig om snapshots te kunnen behandelen."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "register_globals is een PHP mechanisme om alle globale variabelen te registreren en toegankelijk te maken vanuit scripts zonder de scope te moeten aanpassen. Dit kan een veiligheidsrisico vormen. "
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Groepsleden"
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Zoek voor 'register_globals' in je php.ini en schakel het 'uit'."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP gebruikt deze waarde voor de vuilbak verzamelaar en om oude sessies te verwijderen."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Deze waarde naar 1 dag plaatsen kan het verliezen van de sessies en cookiesdoor timeout voorkomen."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Zoek voor 'session.gc_maxlifetime' in je php.ini en plaats het naar 86400 of hoger."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Uit"
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "Om FusionDirectory zonder problemen te kunnen gebruiken, de moet je de session.auto_start optie in je php.ini naar 'Off' wijzigen."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Zoek naar 'session.auto_start' in je php.ini en zet de waarde naar 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
-msgstr "FusionDirectory heeft tenminste 128MB geheugen nodig. Het lager dan deze limiet plaatsen kan errors veroorzaken die niet hergeproduceerd kunnen worden! Vergroot deze waarde voor grotere installaties."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
-msgstr "Zoek voor 'memory_limit' in je php.ini en plaats het naar '128M' of hoger."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "ACL toekenning"
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Deze optie beinvloed de PHP output handling. Zet deze optie uit, om performantie te verhogen."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Zoek naar 'implicit_flush' in je php.ini and zet de waarde 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "De uitvoertijd zou minstens 30 seconden moeten zijn."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Modus"
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Zoek naar 'max_execution_time' in je php.ini en zet het naar '30' of hoger."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Verhoog de veiligheid van de server door de optie expose_php naar 'off' te plaatsen. PHP zal geen informatie over de server die je draait verzenden als je dit doet."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Zoek naar 'expose_php' in je php.ini en zet het naar 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Verhoog je server performantie door de optie magic_quotes_gpc naar 'off' te plaatsen."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Zoek naar 'zend.ze1_compatibility_mode' in je php.ini en plaats het naar 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Setup error"
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Voltooid"
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Groepsleden"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Volgende"
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "Het FusionDirectory team"
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Dit object heeft geen relatie met andere objecten."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filter"
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Toon sjablonen"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Geen ACL opties voor deze categorie"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Toon functionerende gebruikers"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL voor deze objecten: %s"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "Toon POSIX gebruikers"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Wijzig ACL categorie"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Toon Mail gebruikers"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Reset ACL categorie"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Toon Samba gebruikers"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Toon beschikbare ACL categoriëen"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Alle objecten in huidige subtree"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "alleen lezen"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "afleveren, lezen & schrijven"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Toon/verberg geavanceerde opties"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Maak objecten"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Verplaats objecten"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Verwijder objecten"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Rechten toekennen aan eigenaar"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Volledig object"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Bevat opties voor deze objecten: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Access control rollen"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr "telefoonNummer"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "ACL rol"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr ""
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "FusionDirectory zal NIET werken zonder dit op te lossen. "
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory zal werken zonder dit op te lossen."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Maak een nieuwe FusionDirectory administrator account"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Deze dialoog zal automatisch een nieuwe super administrator toevoegen in je LDAP tree."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Gebruikers ID"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Paswoord (opnieuw)"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Dit blijkt de eerste keer te zijn dat je FusionDirectory start - we vonden op dit moment geen configuratie. Deze simpele wizard is hier om je te helpen FusionDirectory op te zetten."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "Wat doet deze wizard voor jou ?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Maak een basis, single site configuratie"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "U heeft succesvol uw wachtwoord veranderd. Denkt u eraan dat u alle programma's die dit wachtwoord gebruiken ook aanpast!"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Probeer problemen te vinden met je PHP en LDAP setup"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Gebruikersinstellingen"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Laat je kiezen van een set basis of geavanceerde configuratie switches"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Wachtwoord wissen"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Begeleide migratie van bestaande LDAP trees"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Nieuw wachtwoord instellen"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "Wat doet deze wizard NIET voor jou ?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Persoonlijk plaatje"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Vind elke mogelijke configuratie error"
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Persoonlijk plaatje"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migreer elke mogelijke LDAP setup - maak backup dumps!"
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Plaatje verwijderen"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "Je hebt momenteel geen rechten om je paswoord te wijzigen"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "Je paswoord hash methode zal niet worden aangepast!"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Klik op de 'Next' knop wanneer je klaar bent."
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Er is een blokkade conflict gedetecteerd"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "Voeg benodigde object classes naar de LDAP base"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Huidige"
+
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Na de migratie"
+
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Sluiten"
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Doorgaan"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Als je wilt weten wat er zal gebeuren wanneer je de geselecteerde inzendingen migreerd, gebruik de 'Toon veranderingen' knop om de LDIF te bekijken."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Toon wijzigingen"
+
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "De grootte limiet optie maakt LDAP bewerkingen sneller en behoedt de LDAP server voor een te grote werkdruk. De eenvoudigste manier om met grote databases te werken zonder lange timeouts is door zoekopdrachten in grootte te beperken en door filters te gebruiken voor de informatie die u zoekt."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Tijdens de LDAP inspectie, gaan we verschillende pitfalls verifiëren dit kan gebeuren wanneer er een migratie gebeurd van FusionDirectory base LDAP administratie. Je zou de onderstaande problemen moeten oplossen, om de services vlot te laten verlopen."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Kies a.u.b. de manier waarop gereageerd moet worden voor deze sessie"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Verifieer nogmaals"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "Negeer deze fout en toon alle gegevens die de LDAP server teruggeeft"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Maak je configuratie bestand"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "Negeer deze fout en toon alle gegevens die passen binnen de gedefiniëerde grootte limiet en laat me daarvoor in de plaats filters gebruiken"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Stel in"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Systeem configuratie"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Status:"
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filter"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr "Paswoord herstel is niet geactiveerd. Als u uw wachtwoord verloren hebt, gelieve dan uw beheerder te contacteren"
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Indien u zeker bent drukt u dan 'Verwijderen' om door te gaan of 'Annuleren' om te annuleren."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Login scherm"
@@ -4971,72 +4869,106 @@ msgstr "Inloggen"
 msgid "Click here to log in"
 msgstr "Klik hier om in te loggen"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "De grootte limiet optie maakt LDAP bewerkingen sneller en behoedt de LDAP server voor een te grote werkdruk. De eenvoudigste manier om met grote databases te werken zonder lange timeouts is door zoekopdrachten in grootte te beperken en door filters te gebruiken voor de informatie die u zoekt."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Kies a.u.b. de manier waarop gereageerd moet worden voor deze sessie"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "Negeer deze fout en toon alle gegevens die de LDAP server teruggeeft"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "Negeer deze fout en toon alle gegevens die passen binnen de gedefiniëerde grootte limiet en laat me daarvoor in de plaats filters gebruiken"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Stel in"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Controleer a.u.b. of u dit daadwerkelijk wil doen, aangezien er geen mogelijkheid voor FusionDirectory is om uw data terug te krijgen."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
-msgstr ""
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Indien u zeker bent drukt u dan 'Verwijderen' om door te gaan of 'Annuleren' om te annuleren."
 
-#: ihtml/themes/breezy/acl.tpl.c:2
-msgid "Assigned ACL for current entry"
-msgstr "ACL toegekend voor huidige inzending"
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Hoofdmenu"
 
-#: ihtml/themes/breezy/acl.tpl.c:5
-msgid "New ACL"
-msgstr "Nieuwe ACL"
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Uitloggen"
 
-#: ihtml/themes/breezy/acl.tpl.c:8
-msgid "ACL type"
-msgstr "ACL type"
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Aangemeld:"
 
-#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
-msgid "Select an acl type"
-msgstr "Selecteer een ACL type"
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "Sessie vervalt in %d!"
 
-#: ihtml/themes/breezy/acl.tpl.c:17
-msgid "Additional filter options"
-msgstr "Extra filter opties"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:20
-msgid "Use members from"
-msgstr "Gebruik leden van"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:23
-msgid "Available members"
-msgstr "Beschikbare leden"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
-msgid "List message possible targets"
-msgstr "Toon bericht mogelijke doelen"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Doorgaan"
 
-#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
-msgid "List message recipients"
-msgstr "Toon bericht ontvangers"
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Er is een blokkade conflict gedetecteerd"
 
-#: ihtml/themes/breezy/acl.tpl.c:44
-msgid "ACL for this object"
-msgstr "ACL voor dit object"
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:47
-msgid "Available roles"
-msgstr "Beschikbare rollen"
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Read only"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
 msgstr ""
 
 #: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
@@ -5064,182 +4996,249 @@ msgstr "Of als je een kopie of knip doet van een inzending in FusionDirectory en
 msgid "Operation complete"
 msgstr "Bewerking afgerond"
 
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
 #: ihtml/themes/breezy/msg_dialog.tpl.c:8
 msgid "Information"
 msgstr "Informatie"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Hoofdmenu"
+#: ihtml/themes/breezy/acl.tpl.c:2
+msgid "Assigned ACL for current entry"
+msgstr "ACL toegekend voor huidige inzending"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Uitloggen"
+#: ihtml/themes/breezy/acl.tpl.c:5
+msgid "New ACL"
+msgstr "Nieuwe ACL"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Aangemeld:"
+#: ihtml/themes/breezy/acl.tpl.c:8
+msgid "ACL type"
+msgstr "ACL type"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "Sessie vervalt in %d!"
+#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
+msgid "Select an acl type"
+msgstr "Selecteer een ACL type"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "Voeg benodigde object classes naar de LDAP base"
+#: ihtml/themes/breezy/acl.tpl.c:17
+msgid "Additional filter options"
+msgstr "Extra filter opties"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Huidige"
+#: ihtml/themes/breezy/acl.tpl.c:20
+msgid "Use members from"
+msgstr "Gebruik leden van"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Na de migratie"
+#: ihtml/themes/breezy/acl.tpl.c:23
+msgid "Available members"
+msgstr "Beschikbare leden"
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Sluiten"
+#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
+msgid "List message possible targets"
+msgstr "Toon bericht mogelijke doelen"
+
+#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
+msgid "List message recipients"
+msgstr "Toon bericht ontvangers"
+
+#: ihtml/themes/breezy/acl.tpl.c:44
+msgid "ACL for this object"
+msgstr "ACL voor dit object"
+
+#: ihtml/themes/breezy/acl.tpl.c:47
+msgid "Available roles"
+msgstr "Beschikbare rollen"
+
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "Het FusionDirectory team"
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Maak je configuratie bestand"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
+#: plugins/generic/references/contents.tpl.c:5
+msgid ""
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Systeem configuratie"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Dit object heeft geen relatie met andere objecten."
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Status:"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Gebruikersinstellingen"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Maak een nieuwe FusionDirectory administrator account"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Wachtwoord wissen"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Deze dialoog zal automatisch een nieuwe super administrator toevoegen in je LDAP tree."
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Nieuw wachtwoord instellen"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Gebruikers ID"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Persoonlijk plaatje"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Paswoord (opnieuw)"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Persoonlijk plaatje"
 
-#: setup/setup_welcome.tpl.c:2
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Plaatje verwijderen"
+
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "Je hebt momenteel geen rechten om je paswoord te wijzigen"
+
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "Je paswoord hash methode zal niet worden aangepast!"
+
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Dit blijkt de eerste keer te zijn dat je FusionDirectory start - we vonden op dit moment geen configuratie. Deze simpele wizard is hier om je te helpen FusionDirectory op te zetten."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "U heeft succesvol uw wachtwoord veranderd. Denkt u eraan dat u alle programma's die dit wachtwoord gebruiken ook aanpast!"
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "Wat doet deze wizard voor jou ?"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Maak een basis, single site configuratie"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Probeer problemen te vinden met je PHP en LDAP setup"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Laat je kiezen van een set basis of geavanceerde configuratie switches"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Begeleide migratie van bestaande LDAP trees"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "Wat doet deze wizard NIET voor jou ?"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Vind elke mogelijke configuratie error"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migreer elke mogelijke LDAP setup - maak backup dumps!"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Klik op de 'Next' knop wanneer je klaar bent."
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "FusionDirectory zal NIET werken zonder dit op te lossen. "
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory zal werken zonder dit op te lossen."
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr "telefoonNummer"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Als je wilt weten wat er zal gebeuren wanneer je de geselecteerde inzendingen migreerd, gebruik de 'Toon veranderingen' knop om de LDIF te bekijken."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
+msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Toon wijzigingen"
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Toon sjablonen"
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Toon functionerende gebruikers"
+
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "Toon POSIX gebruikers"
+
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Toon Mail gebruikers"
+
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Toon Samba gebruikers"
+
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Tijdens de LDAP inspectie, gaan we verschillende pitfalls verifiëren dit kan gebeuren wanneer er een migratie gebeurd van FusionDirectory base LDAP administratie. Je zou de onderstaande problemen moeten oplossen, om de services vlot te laten verlopen."
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Verifieer nogmaals"
+#: plugins/admin/acl/remove.tpl.c:5
+msgid ""
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr ""
+
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
diff --git a/locale/pl/fusiondirectory.po b/locale/pl/fusiondirectory.po
index b3630d2f886ccda57aa15cbac0a9a0454eabb8b2..86a0d12f4b976c17760e519194534a40e94e9b7d 100644
--- a/locale/pl/fusiondirectory.po
+++ b/locale/pl/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n"
@@ -17,4856 +17,4758 @@ msgstr ""
 "Language: pl\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Witaj %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Zależności"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Pełniona funkcja"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "ImiÄ™"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Opis"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Numer telefonu"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Numer fax"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Grupa"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Właściwości"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "WymuÅ› GID"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Preferowany język"
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Ustawienia językowe"
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Tek krok umożliwia wybranie preferowanego języka."
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Członkowie grupy"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Zaufanie systemowe"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Tryb zaufania"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automatycznie"
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "wyłączone"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "pełen dostęp"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "zezwól na dostęp do tych hostów"
-
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Ostrzeżenie"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Sprawdzenie instalacji"
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Sprawdzam wersjÄ™ PHP"
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Grupa obiektu"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Dodaj członka"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Proszę zaktualizować do wspieranej wersji."
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Lista grup"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Akcje"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Utwórz"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Edytuj"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Usuń"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr ""
-
-#: 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:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Pokaż podstawowe grupy"
-
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
-
-#: 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:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Pokaż grupy samba"
-
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Departament"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Departamenty"
-
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "departament"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Kategoria"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "moduł kompresji"
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Lokalizacja"
-
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Stan"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Kraj"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Wyłączone"
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Adres"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Telefon"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Numer telefonu"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Checks.inc:191
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Domena"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Witaj"
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Lista departamentów"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Wiadomość powitalna"
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organizacja"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Lista użytkowników"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Nazwisko"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "ImiÄ™"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Login"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Użytkownik"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Szablon"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Edytuj użytkownika"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Użytkownicy"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Zarządzaj użytkownikami"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Niepowodzenie"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Uprawnienie"
-
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Blokowanie konta"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Odblokuj konto"
-
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Zablokuj konto"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "błąd LDAP"
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Brak ustawień ACL w tej kategorii"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Ostrzeżenie"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:574
 #, php-format
-msgid "ACL for these objects: %s"
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
-msgstr "Usuń"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Błąd migracji"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Lista dostępnych kategorii ACL"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Wszystkie obiekty w obecnym poddrzewie"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#: setup/class_setupStep_Migrate.inc:857
 #, php-format
-msgid "Edit ACL for \"%s\""
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "czytanie"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "zapisywanie"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Obiekt"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Utwórz obiekty"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Utwórz"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "PrzenieÅ› obiekty"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Użytkownicy"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Usuń obiekty"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Grupy"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Błąd"
+
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Migrate.inc:1029
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Zawiera ustawienia dla tych obiektów: %s"
-
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Przenieś użytkowników do skonfigurowanego drzewa"
+
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "do"
+
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Nazwa lokalizacji"
+
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Tryb"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Kontener"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "DN Administratora"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Hasło Administratora"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Członkowie"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Status"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Obecny status"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Ustawienia LDAP"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: setup/class_setupStep_Ldap.inc:166
 #, php-format
-msgid "Assignments on object or subtree %s"
-msgstr ""
-
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Ponawia"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Odśwież"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Zakończ"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Hasło"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Zapisz plik konfiguracyjny"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Informacje osobiste"
-
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Nazwisko"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Błąd ustawień"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "ImiÄ™"
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Następne"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr ""
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Błąd wewnętrzny"
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "nieskonfigurowane"
+
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Numer pokoju"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Uprawnienie"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Numer pokoju"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Komórka"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Pager"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Główny"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr ""
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Wyślij"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr ""
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Góra"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Strona domowa"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "W dół"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr ""
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Wybierz wszystko"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Preferowany język"
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "utworzone przez"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr ""
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Idź do głównego departamentu"
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Idź jeden departament wyżej"
+
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Wyświetl nazwę"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Katalog domowy"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr ""
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Przeładuj listę"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr ""
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Akcje"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Adres domowy"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Kopiuj"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Telefon prywatny"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Wytnij"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Numer telefonu domowego"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Wklej"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Informacje organizacyjne"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Wytnij ten obiekt"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Tytuł"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Kopiuj ten obiekt"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Numer departamentu"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Odtwórz snapshot"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Numer departamentu"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Utwórz spanshot"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Numer pracownika"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Utwórz nowy snapshot z tego obiektu"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Numer pracownika"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Błąd krytyczny"
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Typ pracownika"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "w"
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/password-methods/class_password-methods-sasl.inc:59
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
-msgstr ""
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Błąd konfiguracji"
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Proszę podać obecne hasło aby kontynuować."
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Strona"
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nowe hasło"
-
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Hasło podane jako nowe jest zbyt podobne do obecnego."
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Hasło podane jako nowe jest za krótkie."
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr ""
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Anuluj wszystko"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr ""
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Nie można wkleić"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Katalog domowy"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Login"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Szablon"
+
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Nazwa Szablonu"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Grupa podstawowa"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:512
+#, 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:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Status"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Błąd autentykacji"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr ""
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Limit wielkości %d elementów został przekroczony!"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr ""
+#: include/functions.inc:1132
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Przynależność do grup"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Konfiguruj"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Konto"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "niepełne"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "Użytkownik musi zmienić hasło przy pierwszym logowaniu"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Kontynuuj mimo wszystko"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Edytuj mimo wszystko"
+
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Wpisów na stronie"
+
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Zastosuj filtr"
+
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "nieskonfigurowane"
-
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automatyczne"
-
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "wygasło"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "Czas prolongaty aktywny"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "Aktywne"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Ostrzeżenie LDAP"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "hasło wygasło"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "hasło niezmienialne"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
-#, php-format
-msgid "Group of user %s"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Grupy obiektów"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
+msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Konfiguracja"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Język"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr ""
 
-#: 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."
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Wszystkie obiekty w tej kategorii"
+
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Strefa czasowa"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Błąd XML w pliku fusiondirectory.conf: %s w linii %d"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Wszystkie kategorie"
+
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Moje konto "
+
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Zaznacz aby wyszukiwać wewnątrz poddrzew"
+
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Minimalna długość hasła"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Port"
-
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Anuluj"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Zastosuj"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr ""
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Zapisz"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Dodaj"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Dodaj %s"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr ""
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Usuń"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr ""
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Usuń %s"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Edytuj..."
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Edytuj %s..."
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Wróć"
+
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
+#: include/class_msgPool.inc:582
+#, php-format
 msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
+#: include/class_msgPool.inc:610
+#, php-format
 msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr ""
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Kliknij przycisk 'Edytuj' poniżej, aby zmienić informacje w tym oknie"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Styczeń"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Luty"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Marzec"
+
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Kwiecień"
+
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Maj"
+
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Czerwiec"
+
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Lipiec"
+
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Sierpień"
+
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Wrzesień"
+
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Październik"
+
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Listopad"
+
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Grudzień"
+
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Niedziela"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Poniedziałek"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "PiÄ…tek"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Sobota"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Obiekt"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr ""
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "Błąd komunikacji z usługą infrastruktury!"
 
-#: plugins/config/class_configInLdap.inc:387
-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 ""
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Błąd komunikacji z usługą infrastruktury: %s"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr ""
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Plik '%s' nie istnieje!"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Różne"
-
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "Tryb"
-
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Zaczepy"
-
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
+#: include/class_msgPool.inc:876
+#, php-format
 msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Czas"
+
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automatycznie"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr "Odtwórz"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr ""
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Plik"
+
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Linia"
+
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "błąd PHP:"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr ""
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "klasa"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr ""
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "funkcja"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr ""
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "statyczna"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr ""
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "metoda"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr ""
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Åšledzenie"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr ""
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Typ"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr ""
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argumenty"
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr ""
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "Tworzenie tej strony spowodowało, że interpreter PHP zwrócił błędy!"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr ""
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Przełącz informacje"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr ""
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Ostrzeżenie wydajności"
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:846
 #, php-format
 msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:882
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr ""
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "podczas działania na '%s' używając serwera LDAP '%s'"
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr ""
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "podczas połączenia z serwerem LDAP '%s'"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_ldap.inc:1109
 #, php-format
-msgid "Body (%s is login)"
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:1127
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:1130
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr ""
-
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr ""
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Błąd podczas importu dn: '%s', proszę sprawdzić LDIF od linii %s !"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "ImiÄ™"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Opis"
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Grupa użytkownika"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Góra"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Nieznane"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "W dół"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Edytuj"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Usuń"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Wybierz wszystko"
-
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Błąd"
-
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "utworzone przez"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "Proces usuwania został anulowany przez dodatek '%s': %s"
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Idź do głównego departamentu"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Główny"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Idź jeden departament wyżej"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
+msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Katalog domowy"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Przeładuj listę"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
+msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Wyślij"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Kopiuj"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Wytnij"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "godzin"
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Wklej"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "dni"
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Wytnij ten obiekt"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Kopiuj ten obiekt"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
+msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Odtwórz snapshot"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Utwórz spanshot"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Utwórz nowy snapshot z tego obiektu"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_management.inc:679
-#, php-format
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+"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 ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-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:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Błąd konfiguracji"
+msgid "Unknown field \"%s\""
+msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "błąd LDAP"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_config.inc:898
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Wszystkie kategorie"
-
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Moje konto "
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Ostrzeżenie wydajności"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Błąd wewnętrzny"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Wgraj"
 
-#: include/class_ldap.inc:846
-#, php-format
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "ÅšciÄ…gnij"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_ldap.inc:994
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "podczas działania na '%s' używając serwera LDAP '%s'"
-
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "podczas połączenia z serwerem LDAP '%s'"
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Błąd podczas importu dn: '%s', proszę sprawdzić LDIF od linii %s !"
+msgid "A float smaller than %f"
+msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_msgPool.inc:45
+#: include/class_plugin.inc:795
 #, php-format
-msgid "Select to list objects containig '%s'."
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_msgPool.inc:47
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Zaznacz aby wyszukiwać wewnątrz poddrzew"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr ""
+
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Nieznany wpis  '%s'!"
+
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted!"
+msgid "All users"
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
+
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr ""
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Katalog '%s' podany jako katalog kompilacji jest niedostępny!"
 
-#: include/class_msgPool.inc:76
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "This '%s' object will be deleted: %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:150
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_msgPool.inc:87
-#, php-format
-msgid "These objects will be deleted: %s"
-msgstr ""
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Błąd Smarty"
 
-#: include/class_msgPool.inc:89
+#: html/index.php:173
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/index.php:214
+#, php-format
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Proszę podać prawidłową nazwę użytkownika!"
+
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Proszę podać prawidłowe hasło!"
+
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Proszę sprawdzić kombinację login/hasło."
+
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/index.php:454
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:475
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:485
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/index.php:547
+#, php-format
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr ""
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Twoja przeglądarka ma wyłączone cookies. Proszę włączyć cookies i przeładować stronę przed logowaniem!"
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr ""
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Adres email"
 
-#: include/class_msgPool.inc:225
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "Cannot connect to %s database!"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:245
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Cannot select %s database!"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "No %s server defined!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
-msgstr ""
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Konfiguracja PHP"
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Zmiana hasła"
+
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:345
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Dodatek"
+
+#: html/main.php:290
 #, php-format
-msgid "Cannot execute '%s' command (%s)!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:347
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Błąd konfiguracji"
+
+#: html/main.php:306
 #, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:362
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Value for '%s' is too large!"
+msgid "Welcome %s!"
+msgstr "Witaj %s!"
+
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Zależności"
+
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Katalog domowy"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Grupa podstawowa"
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Anuluj"
-
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
-
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Zastosuj"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Przynależność do grup"
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Zapisz"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Konto"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Dodaj"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "Użytkownik musi zmienić hasło przy pierwszym logowaniu"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Dodaj %s"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Usuń %s"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Edytuj..."
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Edytuj %s..."
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Wróć"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Zaufanie systemowe"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Tryb zaufania"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Kliknij przycisk 'Edytuj' poniżej, aby zmienić informacje w tym oknie"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "wyłączone"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Styczeń"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "pełen dostęp"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Luty"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "zezwól na dostęp do tych hostów"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Marzec"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Kwiecień"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automatyczne"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Maj"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "wygasło"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Czerwiec"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "Czas prolongaty aktywny"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Lipiec"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "Aktywne"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Sierpień"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "hasło wygasło"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Wrzesień"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "hasło niezmienialne"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Październik"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
+
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
+
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Listopad"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Grudzień"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Niedziela"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Poniedziałek"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "PiÄ…tek"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Hasło"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Sobota"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Użytkownik"
+
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Informacje osobiste"
+
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Nazwisko"
+
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "ImiÄ™"
+
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Lokalizacja"
+
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Stan"
+
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Adres"
+
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "Błąd komunikacji z usługą infrastruktury!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Numer pokoju"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Błąd komunikacji z usługą infrastruktury: %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Numer pokoju"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Telefon"
+
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Komórka"
+
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Pager"
+
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Plik '%s' nie istnieje!"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Strona domowa"
+
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Wyświetl nazwę"
+
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Adres domowy"
+
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Telefon prywatny"
+
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Numer telefonu domowego"
+
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Informacje organizacyjne"
+
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Tytuł"
 
-#: include/class_msgPool.inc:876
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organizacja"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Departament"
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Błąd krytyczny"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Numer departamentu"
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Numer departamentu"
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Numer pracownika"
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Błąd autentykacji"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Numer pracownika"
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Typ pracownika"
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:678
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:678
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "LDAP server returned: %s"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Limit wielkości %d elementów został przekroczony!"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr ""
 
-#: include/functions.inc:1132
-#, 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"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Proszę podać obecne hasło aby kontynuować."
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Konfiguruj"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "niepełne"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nowe hasło"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Kontynuuj mimo wszystko"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Hasło podane jako nowe jest zbyt podobne do obecnego."
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Edytuj mimo wszystko"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Hasło podane jako nowe jest za krótkie."
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Wpisów na stronie"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Zastosuj filtr"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
+msgstr ""
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Ostrzeżenie LDAP"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:2650
+#: plugins/config/class_recoveryConfig.inc:90
 #, php-format
-msgid "Class(es) available"
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:2668
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
 msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/functions.inc:2669
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
 msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/functions.inc:3175
+#: plugins/config/class_recoveryConfig.inc:110
 #, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Konfiguracja"
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/functions.inc:3345
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Język"
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: 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 ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Nazwa Szablonu"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Wszystkie obiekty w tej kategorii"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Plik"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Strefa czasowa"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Linia"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "błąd PHP:"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "klasa"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
+msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "funkcja"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "statyczna"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "metoda"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Åšledzenie"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Typ"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argumenty"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "Tworzenie tej strony spowodowało, że interpreter PHP zwrócił błędy!"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Minimalna długość hasła"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Przełącz informacje"
-
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Czas"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
+msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr "Odtwórz"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Strona"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "w"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:197
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Anuluj wszystko"
-
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Nie można wkleić"
-
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Grupa użytkownika"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Nieznane"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "godzin"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "dni"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Port"
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:315
+msgid ""
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Wgraj"
-
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "ÅšciÄ…gnij"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Kontener"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "Proces usuwania został anulowany przez dodatek '%s': %s"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Nieznany wpis  '%s'!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
+#: plugins/config/class_configInLdap.inc:377
 msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Błąd Smarty"
-
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Proszę podać prawidłową nazwę użytkownika!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Proszę podać prawidłowe hasło!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Proszę sprawdzić kombinację login/hasło."
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Różne"
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "Tryb"
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Twoja przeglądarka ma wyłączone cookies. Proszę włączyć cookies i przeładować stronę przed logowaniem!"
-
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Konfiguracja PHP"
-
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Zmiana hasła"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Zaczepy"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Dodatek"
-
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Błąd konfiguracji"
-
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:463
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Katalog '%s' podany jako katalog kompilacji jest niedostępny!"
-
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Adres email"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Grupy obiektów"
+
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Nazwa lokalizacji"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
+#: plugins/config/class_dashBoardConfig.inc:62
 msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "DN Administratora"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Departamenty"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Hasło Administratora"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "departament"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Właściwości"
+
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Obecny status"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "A name for this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Ustawienia LDAP"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Kategoria"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Ponawia"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Kraj"
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Odśwież"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Numer telefonu"
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Domena"
+
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr ""
+
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr ""
+
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Witaj"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Zakończ"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Zapisz plik konfiguracyjny"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
+msgstr ""
+
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Lista departamentów"
+
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr ""
+
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Zarządzaj użytkownikami"
+
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Blokowanie konta"
 
-#: setup/class_setupStep_Finish.inc:96
+#: plugins/admin/users/class_userManagement.inc:192
 #, php-format
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Odblokuj konto"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Zablokuj konto"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr ""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Lista użytkowników"
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr ""
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Nazwisko"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
-msgstr ""
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "ImiÄ™"
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr ""
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Edytuj użytkownika"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Pełniona funkcja"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Numer telefonu"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Niepowodzenie"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Numer fax"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
+
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Błąd migracji"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Pokaż podstawowe grupy"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Pokaż grupy samba"
+
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Grupy"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Cannot add ACL role \"%s\":"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Przenieś użytkowników do skonfigurowanego drzewa"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Grupa obiektu"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Grupa"
+
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "do"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Dodaj członka"
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_ogroup.inc:321
+msgid ""
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr ""
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Lista grup"
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Ustawienia językowe"
-
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Tek krok umożliwia wybranie preferowanego języka."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "WymuÅ› GID"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Wiadomość powitalna"
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Członkowie grupy"
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Sprawdzenie instalacji"
-
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Sprawdzam wersjÄ™ PHP"
-
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Proszę zaktualizować do wspieranej wersji."
-
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
-
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
-
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "moduł kompresji"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Tryb"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Wyłączone"
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Członkowie"
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Brak ustawień ACL w tej kategorii"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Lista dostępnych kategorii ACL"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Wszystkie obiekty w obecnym poddrzewie"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "czytanie"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "zapisywanie"
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Błąd ustawień"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Utwórz obiekty"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "PrzenieÅ› obiekty"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Następne"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Usuń obiekty"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Ten obiekt nie posiada powiązań z innymi obiektami."
-
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtr"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Pokaż szablony"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Zawiera ustawienia dla tych obiektów: %s"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Identyfikator użytkownika"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
+#: setup/setup_welcome.tpl.c:32
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Pomyślnie zmieniono hasło. Proszę pamiętać aby zmienić również ustawienia w programach skonfigurowanych do używania tego hasła."
-
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Ustawienia użytkownika"
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Wyczyść hasło"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Ustaw nowe hasło"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Osobiste zdjęcie"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Obecne"
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Zdjęcie użytkownika"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Usuń obrazek"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Zamknij"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Wykryto konflikt blokady"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Tylko do odczytu"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Kontynuuj"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "Limit rozmiaru powoduje szybsze operacje LDAP i zapobiega nadmiernemu obciążeniu serwera LDAP. Najprostrzym sposobem działania na dużych bazach bez opóźnień jest ograniczanie wyszukiwań do mniejszej ilości wyników oraz użycie filtrów dla otrzymania poszukiwanych elementów."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Proszę wybrać sposób reakcji dla tej sesji"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "Ignoruj ten błąd i pokaż wszystkie elementy które zwraca serwer LDAP"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Konfiguracja pobierania"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "ignoruj ten błąd i pokaż wszystkie elementy które zmieszczą się w zdefiniowanych limicie rozmiaru i pozwól mi użyć filtrów"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Status:"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Ustaw"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtr"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4940,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Jeśli jesteś pewien - naciśnij 'Usuń' aby kontynuować lub 'Anuluj' aby anulować."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Ekran Logowania"
@@ -4978,26 +4869,141 @@ msgstr "Zaloguj"
 msgid "Click here to log in"
 msgstr "Kliknij tutaj aby się zalogować"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "Limit rozmiaru powoduje szybsze operacje LDAP i zapobiega nadmiernemu obciążeniu serwera LDAP. Najprostrzym sposobem działania na dużych bazach bez opóźnień jest ograniczanie wyszukiwań do mniejszej ilości wyników oraz użycie filtrów dla otrzymania poszukiwanych elementów."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Proszę wybrać sposób reakcji dla tej sesji"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "Ignoruj ten błąd i pokaż wszystkie elementy które zwraca serwer LDAP"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "ignoruj ten błąd i pokaż wszystkie elementy które zmieszczą się w zdefiniowanych limicie rozmiaru i pozwól mi użyć filtrów"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Ustaw"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Jeśli jesteś pewien - naciśnij 'Usuń' aby kontynuować lub 'Anuluj' aby anulować."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Główne"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Wyloguj"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Zalogowano:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Kontynuuj"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Wykryto konflikt blokady"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Tylko do odczytu"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "Pamiętaj, że niektóre właściwości jak snapshoty nie zostaną skopiowane!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Operacja zakończona"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Informacja"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr ""
@@ -5042,211 +5048,204 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "Pamiętaj, że niektóre właściwości jak snapshoty nie zostaną skopiowane!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Operacja zakończona"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Informacja"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Ten obiekt nie posiada powiązań z innymi obiektami."
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Główne"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Ustawienia użytkownika"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Wyloguj"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Wyczyść hasło"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Zalogowano:"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Ustaw nowe hasło"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Osobiste zdjęcie"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Zdjęcie użytkownika"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Obecne"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Usuń obrazek"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Zamknij"
-
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Pomyślnie zmieniono hasło. Proszę pamiętać aby zmienić również ustawienia w programach skonfigurowanych do używania tego hasła."
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Konfiguracja pobierania"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Status:"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Identyfikator użytkownika"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
-msgstr ""
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Pokaż szablony"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/pt/fusiondirectory.po b/locale/pt/fusiondirectory.po
index f46acf05f621b3360e90f17336af57765c7f0751..781c99258b6762d1fd9571f09a75ba24d8dfd038 100644
--- a/locale/pt/fusiondirectory.po
+++ b/locale/pt/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n"
@@ -17,4849 +17,4758 @@ msgstr ""
 "Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Bem vindo %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Referências"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Papel"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nome"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Descrição"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Propriedades"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Forçar GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Membros do grupo"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Sistema de confiança"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Modo de confiança"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "desabilitado"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "acesso completo"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "permitir acesso a estas máquinas"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Atenção"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:166
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Lista dos grupos"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Ações"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr ""
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Criar"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr ""
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Editar"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Remover"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
+
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Departamento"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Departamentos"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Erro"
+
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Short description of this %s"
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Category of this %s"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Erro de LDAP"
 
-#: plugins/admin/departments/class_department.inc:80
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "Website of this %s"
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Atenção"
+
+#: setup/class_setupStep_Migrate.inc:574
 #, php-format
-msgid "Manager of this %s"
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Localização"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Estado"
-
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "País"
-
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Endereço"
-
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Fone"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
-
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Migrate.inc:862
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Criar"
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Usuários"
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Grupos"
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Lista dos departamentos"
-
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organização"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Erro"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Lista de usuários"
-
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Sobrenome"
-
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Nome fornecido"
-
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Login"
-
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Usuário"
-
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Modelo"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Usuários"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1422
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
-msgstr "Deletar"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Todos os objetos na subárvore atual"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "leitura"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "escrita"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objeto"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Exibir/Ocultar configurações avançadas"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Criar objetos"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Mover objetos"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Remover objetos"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Estatus"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Conceder permissão para o dono"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Objeto completo"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Regras de ACL"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Ldap.inc:166
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Contém configurações para estes objetos: %s"
+msgid "Anonymous bind to server '%s' failed!"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Recarregar"
+
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Finalizar"
+
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Erro interno"
+
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "desconfigurado"
+
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Membros"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Raiz"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr ""
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Submeter"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr ""
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Para cima"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr ""
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Para baixo"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Ir para departamento raiz"
+
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Subir um departamento"
+
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Origem"
+
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Recarregar lista"
+
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Ações"
+
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Colar"
+
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Senha"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Informação pessoal"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Último nome"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Primeiro nome"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Erro de configuração"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Nº da sala"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Impossível colar"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr ""
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Login"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Modelo"
+
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Celular"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Nome modelo"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Pager"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Página pessoal"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Configurar"
+
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Caixa postal residencial"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Editar mesmo assim"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Telefone privativo"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Informação organizacional"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Aplicar filtro"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Nº do departamento"
-
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Nº do empregado"
-
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Tipo de empregado"
-
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:2095
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:2097
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Você precisa especificar sua senha atual para continuar."
-
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nova senha"
-
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "A senha utilizada como nova e atual são muito similares."
-
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "A senha utilizada como nova é curta."
-
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Diretório pessoal"
-
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
-
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Grupo primário"
-
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Estatus"
-
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Membros do grupo"
-
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Conta"
-
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "O usuário deve alterar sua senha no primeiro acesso"
-
-#: plugins/personal/posix/class_posixAccount.inc:160
+#: include/functions.inc:2641
 msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
+#: include/functions.inc:2645
 msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "desconfigurado"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Todos os objetos nessa categoria"
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automático"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "expirado"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/class_config.inc:156
+#, php-format
+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:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "ativo"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Não foi possível realizar bind para o LDAP. Por favor, contacte o administrador do sistema."
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
-
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_config.inc:899
 #, php-format
-msgid "Group of user %s"
-msgstr ""
-
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr ""
-
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr ""
-
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr ""
-
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr ""
-
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr ""
-
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Grupos de objeto"
-
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr ""
-
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr ""
-
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr ""
-
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr ""
-
-#: plugins/config/class_mainPluginsConfig.inc:55
 msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Configuração"
-
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr ""
-
-#: 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:96
-msgid "Theme"
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr ""
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Todas as categorias"
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr ""
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Minha conta"
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr ""
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Selecione para listar objetos do tipo '%s'."
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Configurações de senha"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Selecione para listar objetos contendo '%s'."
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr ""
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Selecione para listar objetos que possuem '%s' habilitado"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr ""
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Selecione para pesquisar dentro das sub-árvores"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr ""
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Procurar em subárvores"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr ""
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Esse objeto será apagado!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr ""
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Esse objeto '%s' será apagado!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr ""
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Esse objeto será apagado: %s"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr ""
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Esse objeto '%s' será apagado: %s"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr ""
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Esse objeto será apagado:"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr ""
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Esse objeto '%s' será apagado:"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr ""
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Estes objetos serão apagados: %s"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr ""
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Estes objetos '%s' serão apagados: %s"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr ""
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Você não tem permissão para apagar esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr ""
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Você não tem permissão para apagar o objeto:"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr ""
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Você não tem permissão para apagar estes objetos:"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr ""
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Você não tem permissão para criar esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:162
-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 ""
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Você não tem permissão para criar o objeto:"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr ""
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Você não tem permissão para criar estes objetos:"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr ""
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Você não tem permissão para modificar esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr ""
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Você não tem permissão para ver esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr ""
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Você não tem permissão para ver o objeto:"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr ""
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Você não tem permissão para ver estes objetos:"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr ""
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Você não tem permissão para mover esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr ""
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Você não tem permissão para mover o objeto:"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr ""
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Você não tem permissão para mover estes objetos:"
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr ""
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Informação da conexão"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr ""
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Não foi possível conectar ao banco de dados  %s!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr ""
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Não foi possível selecionar o banco de dados %s!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Servidor %s não definido!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Não foi possível pesquisar no banco de dados %s!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "O campo '%s' contém uma palavra reservada!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "O comando especificado como %s, relativo ao plugin '%s', não existe!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "O comando '%s' é inválido!"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "O comando '%s' para o plugin %s is invalid!"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "O comando '%s' (%s) é inválido!"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr ""
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "O comando '%s' (%s) para o plugin %s é inválido!"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr ""
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Não foi possível executar o comando '%s'!"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr ""
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Não foi possível executar o comando '%s' para o plugin %s!"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr ""
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Não foi possível executar o comando '%s' (%s) para o plugin %s!"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr ""
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Aplicar"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Salvar"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Adicionar"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr ""
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Deletar"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Voltar"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
 msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
 msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr ""
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Clique em Editar para alterar as informações desta janela"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Janeiro"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Fevereiro"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Março"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Abril"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Maio"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Junho"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Julho"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Agosto"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Setembro"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Outubro"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Novembro"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Dezembro"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Domingo"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Segunda"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Terça"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Quarta"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Quinta"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Sexta"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Sábado"
+
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objeto"
+
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
+#: include/class_msgPool.inc:876
+#, php-format
 msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
-#, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr ""
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Tipo"
 
-#: plugins/config/class_recoveryConfig.inc:91
-#, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
-#, php-format
-msgid "Body (%s is login)"
-msgstr ""
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Alerta de performance"
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr ""
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr "A performance do LDAP está ruim: a última pesquisa levou cerca de %.2fs!"
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:846
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr ""
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "enquanto executava em '%s' usando LDAP server '%s'"
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr ""
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "enquanto executava no LDAP server %s"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
+#: include/class_ldap.inc:1170
+#, php-format
 msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
-msgstr ""
-
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Erro enquanto importava dn: '%s', por favor, verifique seu LDIF na linha %s!"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Para cima"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nome"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Para baixo"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Descrição"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Erro"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Grupo do usuário"
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Ir para departamento raiz"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Desconhecido"
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Raiz"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Editar"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Subir um departamento"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Remover"
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Origem"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Recarregar lista"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Submeter"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Colar"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
-#, php-format
-msgid "You are not allowed to create a snapshot for %s."
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/class_simplePlugin.inc:290
 #, php-format
 msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_config.inc:156
-#, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "Erro de XML no fusiondirectory.conf: %s na linha %d"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Erro de configuração"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
+msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Erro de LDAP"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Não foi possível realizar bind para o LDAP. Por favor, contacte o administrador do sistema."
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
+msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "%s (required)"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Todas as categorias"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Minha conta"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Alerta de performance"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr "A performance do LDAP está ruim: a última pesquisa levou cerca de %.2fs!"
+msgid "%s (%d bytes)"
+msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Erro interno"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr ""
 
-#: include/class_ldap.inc:846
-#, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "enquanto executava em '%s' usando LDAP server '%s'"
+msgid "Invalid value for %s"
+msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "enquanto executava no LDAP server %s"
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Erro enquanto importava dn: '%s', por favor, verifique seu LDIF na linha %s!"
+msgid "A float smaller than %f"
+msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Selecione para listar objetos do tipo '%s'."
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr ""
 
-#: include/class_msgPool.inc:45
+#: include/class_plugin.inc:795
 #, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Selecione para listar objetos contendo '%s'."
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr ""
 
-#: include/class_msgPool.inc:47
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Selecione para listar objetos que possuem '%s' habilitado"
+msgid "Tab \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Selecione para pesquisar dentro das sub-árvores"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Procurar em subárvores"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Gerenciar listas de controle de acesso"
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Esse objeto será apagado!"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Regras de ACL"
 
-#: include/class_msgPool.inc:69
+#: include/class_acl.inc:118
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Esse objeto '%s' será apagado!"
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr ""
 
-#: include/class_msgPool.inc:74
+#: include/class_acl.inc:170
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Esse objeto será apagado: %s"
+msgid "Unknown entry '%s'!"
+msgstr "Entrada desconhecida '%s'!"
 
-#: include/class_msgPool.inc:76
+#: include/class_acl.inc:173
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Esse objeto '%s' será apagado: %s"
-
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Esse objeto será apagado:"
+msgid "All users"
+msgstr ""
 
-#: include/class_msgPool.inc:83
-#, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Esse objeto '%s' será apagado:"
+#: html/setup.php:59
+msgid "Smarty"
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Estes objetos serão apagados: %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Estes objetos '%s' serão apagados: %s"
-
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Você não tem permissão para apagar esse objeto!"
-
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Você não tem permissão para apagar o objeto:"
-
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Você não tem permissão para apagar estes objetos:"
-
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Você não tem permissão para criar esse objeto!"
-
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Você não tem permissão para criar o objeto:"
-
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Você não tem permissão para criar estes objetos:"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Você não tem permissão para modificar esse objeto!"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
+msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/index.php:150
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:173
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Você não tem permissão para ver esse objeto!"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Você não tem permissão para ver o objeto:"
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Você não tem permissão para ver estes objetos:"
+#: html/index.php:214
+#, php-format
+msgid "Invalid plugin parameter \"%s\"!"
+msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Você não tem permissão para mover esse objeto!"
+#: html/index.php:217
+msgid "No session found!"
+msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Você não tem permissão para mover o objeto:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Você não tem permissão para mover estes objetos:"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Informação da conexão"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Por favor, especifique um nome de usuário válido!"
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Não foi possível conectar ao banco de dados  %s!"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Por favor, especifique sua senha!"
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
-msgstr "Não foi possível selecionar o banco de dados %s!"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Por favor, verifique a combinação usuário / senha"
+
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/index.php:454
 #, php-format
-msgid "No %s server defined!"
-msgstr "Servidor %s não definido!"
+msgid "No value found in HTTP header \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:275
+#: html/index.php:475
 #, php-format
-msgid "Cannot query %s database!"
-msgstr "Não foi possível pesquisar no banco de dados %s!"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:285
+#: html/index.php:485
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "O campo '%s' contém uma palavra reservada!"
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:297
+#: html/index.php:547
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "O comando especificado como %s, relativo ao plugin '%s', não existe!"
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:313
+#: html/index.php:557
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "O comando '%s' é inválido!"
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "O comando '%s' para o plugin %s is invalid!"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Seu navegador está com suporte a cookies desabilitado. Por favor, habilite-o e recarregue essa página antes de entrar!"
 
-#: include/class_msgPool.inc:319
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "O comando '%s' (%s) é inválido!"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr ""
 
-#: include/class_msgPool.inc:321
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "O comando '%s' (%s) para o plugin %s é inválido!"
+msgid "Did not find an account with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:339
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Não foi possível executar o comando '%s'!"
+msgid "Found multiple accounts with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Não foi possível executar o comando '%s' para o plugin %s!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr ""
 
-#: include/class_msgPool.inc:345
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "Cannot execute '%s' command (%s)!"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:347
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Não foi possível executar o comando '%s' (%s) para o plugin %s!"
+msgid "There are several accounts using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:362
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "Value for '%s' is too large!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Senha alterada"
+
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:456
+#: html/main.php:289
+msgid "Plugin"
+msgstr ""
+
+#: html/main.php:290
 #, php-format
-msgid "'%s' is not allowed:"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:456
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr ""
+
+#: html/main.php:306
 #, php-format
-msgid "'%s' are not allowed!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:470
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Missing %s PHP extension!"
+msgid "Welcome %s!"
+msgstr "Bem vindo %s!"
+
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Referências"
+
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Cancelar"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Diretório pessoal"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Aplicar"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Salvar"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Adicionar"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Grupo primário"
+
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Membros do grupo"
+
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Conta"
+
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "O usuário deve alterar sua senha no primeiro acesso"
+
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Voltar"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Sistema de confiança"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Modo de confiança"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Clique em Editar para alterar as informações desta janela"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "desabilitado"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Janeiro"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "acesso completo"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Fevereiro"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "permitir acesso a estas máquinas"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Março"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Abril"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automático"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Maio"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "expirado"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Junho"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Julho"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "ativo"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Agosto"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Setembro"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Outubro"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Novembro"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Dezembro"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Domingo"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Segunda"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Terça"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Quarta"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Quinta"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Sexta"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Sábado"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Senha"
+
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Usuário"
+
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Informação pessoal"
+
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Último nome"
+
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Primeiro nome"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Localização"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Estado"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Endereço"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Nº da sala"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Fone"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Celular"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Pager"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Página pessoal"
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Caixa postal residencial"
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Telefone privativo"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Informação organizacional"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Configurar"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organização"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Departamento"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Editar mesmo assim"
-
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Nº do departamento"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Aplicar filtro"
-
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Nº do empregado"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Tipo de empregado"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sTiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2123
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sEiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Você precisa especificar sua senha atual para continuar."
 
-#: include/functions.inc:2294
-#, php-format
+#: plugins/personal/generic/class_user.inc:653
 msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nova senha"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "A senha utilizada como nova e atual são muito similares."
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "A senha utilizada como nova é curta."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:3345
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Nome modelo"
-
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Todos os objetos nessa categoria"
-
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Tipo"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Configuração"
+
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: 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 ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Configurações de senha"
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:144
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Impossível colar"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
+msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Grupo do usuário"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Desconhecido"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
-
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Gerenciar listas de controle de acesso"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Entrada desconhecida '%s'!"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Por favor, especifique um nome de usuário válido!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Por favor, especifique sua senha!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Por favor, verifique a combinação usuário / senha"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:387
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Seu navegador está com suporte a cookies desabilitado. Por favor, habilite-o e recarregue essa página antes de entrar!"
+"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 ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Senha alterada"
-
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Grupos de objeto"
+
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
+#: plugins/config/class_mainPluginsConfig.inc:55
 msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
-#, php-format
-msgid "Anonymous bind to server '%s' failed!"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
-#, php-format
-msgid "Bind as user '%s' failed!"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Departamentos"
 
-#: setup/class_setupStep_Ldap.inc:174
-#, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Recarregar"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Propriedades"
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Finalizar"
-
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_department.inc:84
+#, php-format
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "País"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Lista dos departamentos"
+
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Erro"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Lista de usuários"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr ""
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Sobrenome"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Nome fornecido"
+
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Papel"
+
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Grupos"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
+
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:63
+#, php-format
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr ""
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Lista dos grupos"
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr ""
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Forçar GID"
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Membros do grupo"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Membros"
+
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Todos os objetos na subárvore atual"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "leitura"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "escrita"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Exibir/Ocultar configurações avançadas"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Criar objetos"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Mover objetos"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Remover objetos"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Conceder permissão para o dono"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Objeto completo"
+
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Contém configurações para estes objetos: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "ID do usuário"
+
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Sua senha foi alterada com sucesso. Lembre-se de alterar todos os programas que a usem."
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Configurações do usuário"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Senha limpa"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Definir nova senha"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Foto pessoal"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Foto do usuário"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Remover foto"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Fechar"
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Conflito de travamento detectado"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Continuar"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Definir"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Então, se você tem certeza, pressione 'Deletar' para continuar ou 'Cancelar' para abortar."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4971,26 +4869,141 @@ msgstr "Entrar"
 msgid "Click here to log in"
 msgstr "Clique aqui para logar"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Definir"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Então, se você tem certeza, pressione 'Deletar' para continuar ou 'Cancelar' para abortar."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Principal"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Sair"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Logado:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Continuar"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Conflito de travamento detectado"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Operação finalizada"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Informação"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr ""
@@ -5035,211 +5048,197 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Operação finalizada"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Informação"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Configurações do usuário"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Principal"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Senha limpa"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Sair"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Definir nova senha"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Logado:"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Foto pessoal"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Foto do usuário"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Remover foto"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Fechar"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Sua senha foi alterada com sucesso. Lembre-se de alterar todos os programas que a usem."
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "ID do usuário"
-
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/pt_BR/fusiondirectory.po b/locale/pt_BR/fusiondirectory.po
index 913941c1fee3ddb782204616b3808c761532eef4..6c93e8db16154f98971aa7ef35abe26fdc4756cd 100644
--- a/locale/pt_BR/fusiondirectory.po
+++ b/locale/pt_BR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n"
@@ -18,4849 +18,4758 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Bem-vindo %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Referências"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Atribuição"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Idioma desejado"
 
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Informações"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Configuração de idioma"
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Nome"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Esta etapa permite que você selecione seu idioma preferido."
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Descrição"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Descrição da atribuição"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Número de telefone"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automático"
 
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Número de Fax"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "Módulo de PHP e checagem de extensões"
 
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Adicionar usuários para a atribuição"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Grupo"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Checagem de instalação"
 
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Verificando a compatibilidade básica com PHP e extensões"
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Checando versão do PHP"
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
+msgstr "A versão do PHP deverá ser %s ou superior."
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Propriedades"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Por favor, atualize para uma versão suportada."
 
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory necessita deste módulo para conversar com seu servidor LDAP."
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory necessita deste módulo para uma interface internacionalizada."
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory necessita deste módulo para se comunicar com diferentes tipo de servidores e protocolos."
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory requer este módulo para integação com o samba."
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory necessita tanto do módulo 'mhash' quanto do módulo 'sha1' para fazer uso da criptografia SSHA."
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "O FusionDirectory necessita deste módulo para conversar com um servidor IMAP"
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Sistema de confiança"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Modo de confiança"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory requer esta extensão para lidar com strings unicode."
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "desabilitado"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory requer esta extensão para lidar com imagens."
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "Acesso total"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "módulo de compressão"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "Permitir acesso a esses servidores"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory requer esta extensão para lidar com snapshots."
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "register_globals é um mecanismo do PHP utilizado para registrar todas as variáveis globais para serem acessíveis por meio de scripts sem modificar o escopo. Isto pode ser um risco à segurança."
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Aviso"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Procurar por 'register_globals' em seu php.ini e marcado como 'Desativado'."
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP usa este valor para deletar sessões antigas do garbage collector."
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Procurar por 'session.gc_maxlifetime' no seu php.ini e configurá-lo para 86400 ou maior."
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Grupo de objeto"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Desativar"
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Pesquisar por 'session.auto_start' no seu php.ini e configurá-lo como 'Desligado'."
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:175
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Lista de grupos"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Ações"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Criar"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Editar"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Procurar por 'implicit_flush' no seu php.ini e configurá-lo como 'Desligado'."
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Remover"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "O tempo de Execução deve ser no mínimo 30 segundos."
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Pesquisa por 'max_execution_time' no seu php.ini e defina-o como '30' ou superior."
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Pesquisar por 'expose_php' no seu php.ini e defina-o como 'Desligado'."
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Aumente o desempenho do seu servidor definindo magic_quotes_gpc para 'desligado'."
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Pesquisar por 'zend.ze1_compatibility_mode' no seu php.ini e defina-o como 'Desligado'."
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Editar propriedades do posix"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Bem-vindo"
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Bem vindo ao assistente de configuração do FusionDirectory"
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "A mensagem de \"bem vindo\""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Inspeção LDAP"
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Analisar seu LDAP atual para verificação de compatibilidade com o FusionDirectory"
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Inspecionando classes de objeto em objeto root"
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Checando permissão para banco de dados LDAP"
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Checando por usuários invisíveis"
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Checando por super administrador"
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Componente de domínio"
-
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Checando por usuários fora da árvore de pessoas"
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Departamento"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Checando por grupos fora da árvore de grupos"
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Departamentos"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Checando por departamentos invisíveis"
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "departamento"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Checando por números de UID duplicados"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "Consulta em LDAP falhou"
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Categoria"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Falhou"
 
-#: plugins/admin/departments/class_department.inc:76
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Category of this %s"
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Website of this %s"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Gerente"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Erro de LDAP"
 
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "Manager of this %s"
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Localização"
-
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Estado"
-
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "País"
-
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Endereço"
-
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Migrate.inc:511
 #, php-format
-msgid "A postal address for this %s"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Telefone"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Número de telefone"
-
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
-
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Gerenciar departamentos"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Aviso"
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Usuários e grupos"
-
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Localização"
-
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Domínio"
-
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Lista de departamentos"
-
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organização"
-
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Lista de usuários"
-
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Sobrenome"
-
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Primeiro nome"
-
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Login"
-
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Usuário"
-
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Modelo"
-
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Usuários bloqueados"
-
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Usuários desbloqueados"
-
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Aplicar modelo"
-
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Novo usuário para modelo"
-
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Editar usuário"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Remover usuário"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Criar"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
 msgid "Users"
 msgstr "Usuários"
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Gerenciar usuários"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Grupos"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "Não existe uma conta de administrador do FusioDirectory no seu LDAP."
+
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Permissão"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Erro"
+
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Bloqueando conta"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1029
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Desbloquear conta"
-
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Bloquear conta"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Sem configurações de ACL para esta categoria"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL para estes objetos: %s"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Editar categoria de ACL"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1203
 #, php-format
-msgid "Delete"
-msgstr "Deletar"
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Encontrado %s grupos fora da árvore configurada '%s'."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Reiniciar categoria de ACL"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Lista de categorias de ACL"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Todos objetos na atual sub-árvore"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#: setup/class_setupStep_Migrate.inc:1378
 #, php-format
-msgid "Edit ACL for \"%s\""
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objeto"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Nome do local"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "URI da conexão"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "conexão TLS"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Base"
+
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Papéis de ACL"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Autenticação"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "DN do administrador"
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Senha do administrador"
+
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Cargos de controle de acesso"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Estado"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "Cargo ACL"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Status atual"
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Configuração de LDAP"
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Configuração da conexão de LDAP"
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Este diálogo executa a configuração básica da conectividade LDAP para o FusionDirectory."
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "Ligação anônima para o servidor '%s' falhou!"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "Ligação como usuário '%s' falhou!"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Tente novamente"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "Ligação anônima para o servidor '%s' bem sucedida."
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Atualizar"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Por favor, especifique usuário e senha!"
+
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "Ligação como usuário '%s' para o servidor '%s' bem sucedida!"
+
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Fim"
+
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "Atribuições de ACL"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Modo"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Erro de configuração"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr ""
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Concluído"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr ""
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Próximo"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr ""
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Erro interno"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr ""
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Registro de dados falhou: %s"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "objectType especificado está vazio ou inválido!"
+
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Membros"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Erro no filtro"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr ""
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "O filtro está incompleto!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr ""
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Permissão"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr ""
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Erro de permissão"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr ""
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Você não tem permissões para criar um snapshot para %s."
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr ""
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Você não tem permissões para restaurar um snapshot para %s."
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: include/class_management.inc:679
 #, php-format
-msgid "Assignments on object or subtree %s"
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr "Estatísticas e informações diversas"
-
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr "Estatísticas"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Subir"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr "Estatísticas a respeito de usuários"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Descer"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr "Contas expiradas"
-
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Método de autentcação"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Selecionar tudo"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Método de hash para usar na senha"
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Senha"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Senha (Mantenha vazio caso não deseje alterar)"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Senha novamente"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr "Mesma senha como acima, para evitar erros"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Página inicial"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Sobrenome"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Ações"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr ""
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Copiar"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Nome"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Recortar"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr ""
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Colar"
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr ""
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Restaurar snapshots"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr ""
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Restaurar snapshot"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr ""
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Criar snapshot"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Número da sala"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Criar um novo snapshots deste objeto"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr ""
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Erro fatal"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Celular"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "dentro"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr ""
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "online"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Pager"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Erro de XML"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Página inicial"
-
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr ""
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Erro de configuração"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Idioma desejado"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Nome de exibição"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Cancelar tudo"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr ""
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Login"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Endereço residencial"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Modelo"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Telefone residencial"
-
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Título"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/functions.inc:142
+#, php-format
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Número do departamento"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Erro de autenticação"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Número do funcionário"
-
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Tipo de funcionário"
-
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:678
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Você precisa especificar sua atual senha para prosseguir."
-
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:1132
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nova senha"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Configurar"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "A nova senha é muito similar à senha atual."
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "A nova senha é muito curta."
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "A senha contém caracteres Unicode  problemáticos."
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Diretório principal"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "O pacote para o diretório principal deste usuário"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Estado"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2267
+#, 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:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr "'nextIdHook' não está disponível. Utilizando base padrão."
+
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Conta"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:2641
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:2645
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Permitir apenas que este usuário conecte-se à lista de hosts"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automático"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "senha expirada"
+#: include/functions.inc:3321
+#, 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"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_timezone.inc:52
 #, php-format
-msgid "Group of user %s"
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr ""
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Grupo de objetos"
+#: include/class_config.inc:899
+#, 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'."
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr ""
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Todas as categorias"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Minha conta"
+
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Configuração"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Procurar em sub-árvores"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr ""
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Esse objeto será apagado!"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Esse objeto '%s' será apagado!"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr ""
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Esse objeto será apagado: %s"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Idioma"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Esse objeto '%s' será apagado: %s"
 
-#: 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 "Idioma da aplicação. Se for \"automático\" ou indisponível, será utilizado o padrão do navegador. Essa configuração pode ser substituída pelo usuário. "
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Esse objeto será apagado:"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Tema"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Esse objeto '%s' será apagado:"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr ""
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Esses objetos serão apagados: %s"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Fuso horário"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Esses objetos '%s' serão apagados: %s"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr ""
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Você não possui permissões para apagar esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr ""
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Você não possui permissões para apagar o objeto:"
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr ""
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Você não possui permissões para apagar esses objetos:"
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr ""
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Você não possui permissões para criar esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Configurações de senha"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Você não possui permissões para criar o objeto:"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr ""
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Você não possui permissões para criar esses objetos:"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Você não possui permissões para modificar esse objeto!"
+
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Comprimento mínimo de senha"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Você não possui permissões para ver esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr ""
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Você não possui permissões para ver o objeto:"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr ""
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Você não possui permissões para ver esses objetos:"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr ""
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Você não possui permissões para mover esse objeto!"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr ""
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Você não possui permissões para mover o objeto:"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr ""
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Você não possui permissões para mover esses objetos:"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr ""
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Informação de conexão"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr ""
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Não é possível conectar-se ao banco de dados %s"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr ""
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Não é possível selecionar o banco de dados %s!"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr ""
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Não há servidor %s definido!"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr ""
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Não é possível consultar banco de dados %s!"
 
-#: plugins/config/class_configInLdap.inc:162
-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 ""
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "O campo '%s' contém uma palavra-chave reservada! "
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr ""
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "Comando especificado como gancho %s para o plugin '%s\" não existe!"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr ""
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "comando '%s' é inválido!"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr ""
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "comando '%s' para o plugin %s é inválido!"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr ""
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "comando '%s' (%s) é inválido!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr ""
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "comando '%s' (%s) para o plugin %s é inválido!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr ""
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Impossível executar o comando '%s'!"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr ""
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Impossível executar o comando '%s' para o plugin %s!"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr ""
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "impossível executar o comando '%s' (%s)!"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr ""
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Impossível executar o comando '%s' (%s) para o plugin %s!"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Habilitar snapshots"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr ""
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Aplicar"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Base de snapshots"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Salvar"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr "A base onde os snapshots devem ser armazenados dentro do LDAP."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Adicionar"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr "Chave de pacote"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Deletar"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr "Caminho de certificado"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Editar..."
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Voltar"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Host"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Porta"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Clique no botão 'Editar' abaixo para mudar as informações neste diálogo"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "fevereiro"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "março"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "abril"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "maio"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "junho"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "julho"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "agosto"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "setembro"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "outubro"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "novembro"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "dezembro"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "domingo"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "segunda-feira"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "terça-feira"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "quarta-feira"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "quinta-feira"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "sexta-feira"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "sábado"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Método de alocação de id"
-
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Tradicional"
-
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr "Pool de id samba unix"
-
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objeto"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
+#: include/class_msgPool.inc:806
+#, php-format
 msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Diversos"
-
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "Modo"
-
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Ganchos"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Data e hora"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automático"
-
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Recuperação de senha"
-
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Configurações para recuperar senha"
-
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Configurações de recuperação de senha"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Arquivo"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Ativar recuperador de senha"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Endereço de e-mail do remetente"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "E-mail a partir dos e-mail que serão enviados"
+#: include/php_setup.inc:70
+msgid "function"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Validade do link (minutos)"
+#: include/php_setup.inc:76
+msgid "static"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr "Número de minutos antes do link de recuperação expirar"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr "graça para simbolos "
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Apenas uma medida de segurança, você pode botar qualquer coisa lá, até caracteres aleatórios"
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Tipo"
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Permitir o uso de endereços alternativos"
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Os usuário também serão capazes de entrar no endereço alternativo para recuperar sua senha"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "Primeiro e-mail"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Assunto"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Assunto do primeiro e-mail"
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Link de recuperação de senha"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
 #, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr "Corpo(primeiro %s é o login, segundo é o link)"
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:846
 #, php-format
 msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
-msgstr "Corpo do primeiro e-mail, envie quando o usuário perguntar pela nova senha. Use %s para o login e o link de recuperação."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:882
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Olá,\n\nAqui estão suas informações:\n-Login : %s\n-Link : %s\n\nEste link é válido por apenas 10 minutos."
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Segundo e-mail"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Assunto do segundo e-mail"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Senha recuperada com sucesso"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_ldap.inc:1109
 #, php-format
-msgid "Body (%s is login)"
-msgstr "Corpo (%s é o login)"
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_ldap.inc:1127
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr "Corpo do segundo e-mail, enviado para confirmar senha alterada. Use %s para Login de usuário. "
+msgid "Error line %s, references to an external file are not supported"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_ldap.inc:1130
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Olá,\n\nSua senha foi alterada.\nSeu login permanece %s."
-
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Por favor, selecione as entradas desejadas"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Nome"
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Descrição"
+
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Grupo de usuário"
+
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Nenhum"
+
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Desconhecido"
+
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Editar"
+
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Remover"
+
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
 msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Plugins"
-
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Subir"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Descer"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Selecionar tudo"
-
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Erro"
-
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "segundos"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Página inicial"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "dias"
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Copiar"
-
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Recortar"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
+msgstr "Mostrar %s"
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Colar"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr "SEM RÓTULO"
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Restaurar snapshots"
-
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Restaurar snapshot"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Criar snapshot"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Criar um novo snapshots deste objeto"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Erro ao salvar"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Erro no filtro"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
+msgstr "Já há uma entrada com o mesmo dn: %s"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "O filtro está incompleto!"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
+msgstr "A entrada %s não é existente"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Erro de permissão"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Você não tem permissões para criar um snapshot para %s."
+msgid "Unknown field \"%s\""
+msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Você não tem permissões para restaurar um snapshot para %s."
+msgid "%s (required)"
+msgstr "%s (required)"
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr "Base de objeto"
+
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr ""
+msgid "Cannot read uploaded file: %s"
+msgstr "Não é possível ler arquivo enviado: %s"
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Erro de configuração"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "arquivo está vazio"
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "arquivo não encontrado"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "arquivo não é legivel"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Erro de LDAP"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Upload"
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Download"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "Invalid value for %s"
+msgstr "Valor inválido para %s"
+
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
+#, php-format
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, 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."
+msgid "An integer between %d and %d"
+msgstr "Um inteiro entre %d e %d"
 
-#: include/class_config.inc:898
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, 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'."
+msgid "An integer larger than %d"
+msgstr "Um inteiro maior que %d"
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Todas as categorias"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
+msgstr "Um inteiro menor que %d"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Minha conta"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
+#, php-format
+msgid "A float between %f and %f"
+msgstr "Um float entre %f e %f"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr ""
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
+#, php-format
+msgid "A float larger than %f"
+msgstr "Um float maior que %f"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr ""
+msgid "A float smaller than %f"
+msgstr "Um float menor que %f"
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Erro interno"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
+
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Gerenciar Listas de Controle de Acesso (ACLs)"
+
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Papéis de ACL"
+
+#: include/class_acl.inc:118
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: include/class_acl.inc:170
 #, php-format
-msgid "while operating on LDAP server %s"
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
-msgstr ""
+#: include/class_acl.inc:173
+#, php-format
+msgid "All users"
+msgstr "Todos os usuários"
+
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
 
-#: include/class_ldap.inc:1133
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
-msgstr ""
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Diretório '%s' especificado como diretório de compilação não está acessível!"
 
-#: include/class_ldap.inc:1151
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: html/index.php:150
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
-msgstr ""
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"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:171
+msgid "Smarty error"
+msgstr "Erro Smarty"
 
-#: include/class_ldap.inc:1163
+#: html/index.php:173
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1194
-#, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Sua sessão foi encerrada!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_msgPool.inc:43
+#: html/index.php:214
 #, php-format
-msgid "Select to list objects of type '%s'."
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Procurar em sub-árvores"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Por favor, especifique um nome de usuário válido!"
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Esse objeto será apagado!"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Por favor, especifique sua senha!"
 
-#: include/class_msgPool.inc:69
-#, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Esse objeto '%s' será apagado!"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Por favor, verifique o usuário ou senha."
 
-#: include/class_msgPool.inc:74
-#, php-format
-msgid "This object will be deleted: %s"
-msgstr "Esse objeto será apagado: %s"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Conta bloqueada. Entre em contato com o administrador do sistema!"
 
-#: include/class_msgPool.inc:76
+#: html/index.php:454
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Esse objeto '%s' será apagado: %s"
-
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Esse objeto será apagado:"
+msgid "No value found in HTTP header \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:475
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Esse objeto '%s' será apagado:"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:485
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Esses objetos serão apagados: %s"
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:547
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Esses objetos '%s' serão apagados: %s"
-
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Você não possui permissões para apagar esse objeto!"
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Você não possui permissões para apagar o objeto:"
+#: html/index.php:557
+#, php-format
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Você não possui permissões para apagar esses objetos:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Cookies estão desabilitados. Por favor, habilite os cookies em seu navegador e atualize esta página antes de efetuar o login!"
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Você não possui permissões para criar esse objeto!"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "Abortado. Configuração %s/%s do FusionDirectory não pôde ser lida."
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Você não possui permissões para criar o objeto:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Você não possui permissões para criar esses objetos:"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Você não possui permissões para modificar esse objeto!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Endereço de email"
 
-#: include/class_msgPool.inc:151
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Você não possui permissões para ver esse objeto!"
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Você não possui permissões para ver o objeto:"
-
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Você não possui permissões para ver esses objetos:"
-
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Você não possui permissões para mover esse objeto!"
-
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Você não possui permissões para mover o objeto:"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Entre em contato com o administrador, houve um problema com o servidor de e-mail."
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Você não possui permissões para mover esses objetos:"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Informação de conexão"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr ""
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Não é possível conectar-se ao banco de dados %s"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Configuração PHP"
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
-msgstr "Não é possível selecionar o banco de dados %s!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Erro fatal: O registro global do PHP, register_globals, está ativado. Não será possível realizar login enquanto o problema não for solucionado por um administrador."
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
-msgstr "Não há servidor %s definido!"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Mudança de senha"
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
-msgstr "Não é possível consultar banco de dados %s!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Sua senha está prestes a expirar. Por favor, altere a senha!"
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "O campo '%s' contém uma palavra-chave reservada! "
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "Comando especificado como gancho %s para o plugin '%s\" não existe!"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "Memória virtual baixa!"
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
-msgstr "comando '%s' é inválido!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Checagem de Usuário de ACL desativada"
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "comando '%s' para o plugin %s é inválido!"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Plugin"
 
-#: include/class_msgPool.inc:319
+#: html/main.php:290
 #, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "comando '%s' (%s) é inválido!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "comando '%s' (%s) para o plugin %s é inválido!"
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Erro de Configuração"
 
-#: include/class_msgPool.inc:339
+#: html/main.php:306
 #, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Impossível executar o comando '%s'!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Erro faral: As variáveis POST não foram todas transferidas pelo PHP - por favor, informe ao administrador!"
 
-#: include/class_msgPool.inc:341
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Impossível executar o comando '%s' para o plugin %s!"
+msgid "Welcome %s!"
+msgstr "Bem-vindo %s!"
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "impossível executar o comando '%s' (%s)!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Referências"
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Impossível executar o comando '%s' (%s) para o plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Diretório principal"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "O pacote para o diretório principal deste usuário"
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Aplicar"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Salvar"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Conta"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Adicionar"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Editar..."
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Voltar"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:174
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Sistema de confiança"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Modo de confiança"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "desabilitado"
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "Acesso total"
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "Permitir acesso a esses servidores"
+
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Permitir apenas que este usuário conecte-se à lista de hosts"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Clique no botão 'Editar' abaixo para mudar as informações neste diálogo"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automático"
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "fevereiro"
-
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "março"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "abril"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "maio"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "senha expirada"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "junho"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "julho"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "agosto"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "setembro"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "outubro"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "novembro"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "dezembro"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "domingo"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "segunda-feira"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "terça-feira"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Método de autentcação"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "quarta-feira"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Método de hash para usar na senha"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "quinta-feira"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Senha"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "sexta-feira"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Senha (Mantenha vazio caso não deseje alterar)"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "sábado"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Senha novamente"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr "Mesma senha como acima, para evitar erros"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Usuário"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Sobrenome"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Nome"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Localização"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Estado"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Endereço"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Número da sala"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Telefone"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Celular"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Pager"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Página inicial"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Erro fatal"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Erro de autenticação"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Nome de exibição"
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Endereço residencial"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Telefone residencial"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Título"
+
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Configurar"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organização"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Departamento"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Número do departamento"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Número do funcionário"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Tipo de funcionário"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Gerente"
 
-#: include/functions.inc:2119
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sMiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sTiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Você precisa especificar sua atual senha para prosseguir."
+
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nova senha"
+
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "A nova senha é muito similar à senha atual."
+
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "A nova senha é muito curta."
+
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "A senha contém caracteres Unicode  problemáticos."
+
+#: 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:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2294
-#, 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."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
+msgstr "Contas expiradas"
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr "Estatísticas e informações diversas"
+
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr "'nextIdHook' não está disponível. Utilizando base padrão."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr "Estatísticas"
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Recuperação de senha"
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Configurações para recuperar senha"
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Configurações de recuperação de senha"
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Ativar recuperador de senha"
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Endereço de e-mail do remetente"
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "E-mail a partir dos e-mail que serão enviados"
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Validade do link (minutos)"
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr "Número de minutos antes do link de recuperação expirar"
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr "graça para simbolos "
 
-#: include/functions.inc:2668
+#: plugins/config/class_recoveryConfig.inc:66
 msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
-msgstr ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Apenas uma medida de segurança, você pode botar qualquer coisa lá, até caracteres aleatórios"
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Permitir o uso de endereços alternativos"
 
-#: include/functions.inc:2672
+#: plugins/config/class_recoveryConfig.inc:73
 msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
-msgstr ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Os usuário também serão capazes de entrar no endereço alternativo para recuperar sua senha"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "Primeiro e-mail"
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Assunto"
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Assunto do primeiro e-mail"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Link de recuperação de senha"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr "Corpo(primeiro %s é o login, segundo é o link)"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr "Corpo do primeiro e-mail, envie quando o usuário perguntar pela nova senha. Use %s para o login e o link de recuperação."
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Olá,\n\nAqui estão suas informações:\n-Login : %s\n-Link : %s\n\nEste link é válido por apenas 10 minutos."
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Segundo e-mail"
 
-#: include/functions.inc:3345
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Assunto do segundo e-mail"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Senha recuperada com sucesso"
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr "Corpo (%s é o login)"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr "Corpo do segundo e-mail, enviado para confirmar senha alterada. Use %s para Login de usuário. "
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Olá,\n\nSua senha foi alterada.\nSeu login permanece %s."
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Arquivo"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Configuração"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Idioma"
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr ""
+#: 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 "Idioma da aplicação. Se for \"automático\" ou indisponível, será utilizado o padrão do navegador. Essa configuração pode ser substituída pelo usuário. "
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Tema"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Tipo"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Fuso horário"
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Configurações de senha"
+
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Data e hora"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Comprimento mínimo de senha"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
-
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "dentro"
-
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "online"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Erro de XML"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
+#: plugins/config/class_configInLdap.inc:168
 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!"
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Cancelar tudo"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:197
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Erro ao salvar"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "Já há uma entrada com o mesmo dn: %s"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "A entrada %s não é existente"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Por favor, selecione as entradas desejadas"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
-msgstr "Mostrar %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Grupo de usuário"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Habilitar snapshots"
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Nenhum"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Desconhecido"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Base de snapshots"
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr "A base onde os snapshots devem ser armazenados dentro do LDAP."
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
+msgstr "Chave de pacote"
+
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
+msgstr "Caminho de certificado"
+
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "segundos"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "dias"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (required)"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Host"
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "Um inteiro entre %d e %d"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Porta"
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "Um inteiro maior que %d"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "Um inteiro menor que %d"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Um float entre %f e %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr "Um float maior que %f"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
-msgstr "Um float menor que %f"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "Não é possível ler arquivo enviado: %s"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "arquivo está vazio"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "arquivo não encontrado"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "arquivo não é legivel"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Upload"
+#: plugins/config/class_configInLdap.inc:315
+msgid ""
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Download"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
+#: plugins/config/class_configInLdap.inc:320
 msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Base"
-
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
-msgstr "Base de objeto"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
-msgstr "Valor inválido para %s"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr "SEM RÓTULO"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Gerenciar Listas de Controle de Acesso (ACLs)"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
+msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Método de alocação de id"
+
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Todos os usuários"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Tradicional"
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr "Pool de id samba unix"
+
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Registro de dados falhou: %s"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "objectType especificado está vazio ou inválido!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"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."
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
+msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Erro Smarty"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
+msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Sua sessão foi encerrada!"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Por favor, especifique um nome de usuário válido!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Por favor, especifique sua senha!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Por favor, verifique o usuário ou senha."
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Diversos"
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Conta bloqueada. Entre em contato com o administrador do sistema!"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
+msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "Modo"
+
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Cookies estão desabilitados. Por favor, habilite os cookies em seu navegador e atualize esta página antes de efetuar o login!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Ganchos"
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Configuração PHP"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
+msgstr ""
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Erro fatal: O registro global do PHP, register_globals, está ativado. Não será possível realizar login enquanto o problema não for solucionado por um administrador."
-
-#: html/main.php:142
-msgid "Password change"
-msgstr "Mudança de senha"
-
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Sua senha está prestes a expirar. Por favor, altere a senha!"
-
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "Memória virtual baixa!"
-
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Checagem de Usuário de ACL desativada"
-
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Plugin"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Erro de Configuração"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:463
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Erro faral: As variáveis POST não foram todas transferidas pelo PHP - por favor, informe ao administrador!"
-
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "Abortado. Configuração %s/%s do FusionDirectory não pôde ser lida."
-
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Diretório '%s' especificado como diretório de compilação não está acessível!"
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
+msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Endereço de email"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Plugins"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Entre em contato com o administrador, houve um problema com o servidor de e-mail."
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Grupo de objetos"
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
-
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Nome do local"
-
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "URI da conexão"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "conexão TLS"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Autenticação"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "DN do administrador"
-
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Senha do administrador"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Status atual"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Configuração de LDAP"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Departamentos"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Configuração da conexão de LDAP"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "departamento"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Este diálogo executa a configuração básica da conectividade LDAP para o FusionDirectory."
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Propriedades"
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "Ligação anônima para o servidor '%s' falhou!"
+msgid "Name of %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Ligação como usuário '%s' falhou!"
-
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Tente novamente"
+msgid "A name for this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "Ligação anônima para o servidor '%s' bem sucedida."
-
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Atualizar"
+msgid "Short description of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Por favor, especifique usuário e senha!"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Categoria"
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "Ligação como usuário '%s' para o servidor '%s' bem sucedida!"
+msgid "Category of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr ""
+
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Bem-vindo"
+#: plugins/admin/departments/class_department.inc:84
+#, php-format
+msgid "Manager of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Fim"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "País"
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_department.inc:102
+#, php-format
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Número de telefone"
+
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Domínio"
+
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Gerenciar departamentos"
+
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr ""
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Usuários e grupos"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "Módulo de PHP e checagem de extensões"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Componente de domínio"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Inspeção LDAP"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Analisar seu LDAP atual para verificação de compatibilidade com o FusionDirectory"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Localização"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Lista de departamentos"
+
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Gerenciar usuários"
+
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Inspecionando classes de objeto em objeto root"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Bloqueando conta"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Checando permissão para banco de dados LDAP"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Checando por usuários invisíveis"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Desbloquear conta"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Checando por super administrador"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Bloquear conta"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr ""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Lista de usuários"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Checando por usuários fora da árvore de pessoas"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Sobrenome"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Checando por grupos fora da árvore de grupos"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Primeiro nome"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Checando por departamentos invisíveis"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Usuários bloqueados"
+
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Usuários desbloqueados"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Checando por números de UID duplicados"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Aplicar modelo"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Novo usuário para modelo"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "Consulta em LDAP falhou"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Editar usuário"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Falhou"
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Remover usuário"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Atribuição"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Informações"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Descrição da atribuição"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Número de telefone"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Número de Fax"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Adicionar usuários para a atribuição"
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Grupos"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "Não existe uma conta de administrador do FusioDirectory no seu LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Editar propriedades do posix"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Encontrado %s grupos fora da árvore configurada '%s'."
-
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Configuração de idioma"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Grupo de objeto"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Esta etapa permite que você selecione seu idioma preferido."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Grupo"
+
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Bem vindo ao assistente de configuração do FusionDirectory"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "A mensagem de \"bem vindo\""
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr ""
+
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Checagem de instalação"
-
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Verificando a compatibilidade básica com PHP e extensões"
-
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Checando versão do PHP"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Lista de grupos"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "A versão do PHP deverá ser %s ou superior."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Por favor, atualize para uma versão suportada."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory necessita deste módulo para conversar com seu servidor LDAP."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory necessita deste módulo para uma interface internacionalizada."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory necessita deste módulo para se comunicar com diferentes tipo de servidores e protocolos."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory requer este módulo para integação com o samba."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory necessita tanto do módulo 'mhash' quanto do módulo 'sha1' para fazer uso da criptografia SSHA."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "O FusionDirectory necessita deste módulo para conversar com um servidor IMAP"
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory requer esta extensão para lidar com strings unicode."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory requer esta extensão para lidar com imagens."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "módulo de compressão"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory requer esta extensão para lidar com snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "register_globals é um mecanismo do PHP utilizado para registrar todas as variáveis globais para serem acessíveis por meio de scripts sem modificar o escopo. Isto pode ser um risco à segurança."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Procurar por 'register_globals' em seu php.ini e marcado como 'Desativado'."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "Atribuições de ACL"
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP usa este valor para deletar sessões antigas do garbage collector."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Procurar por 'session.gc_maxlifetime' no seu php.ini e configurá-lo para 86400 ou maior."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Modo"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Desativar"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Pesquisar por 'session.auto_start' no seu php.ini e configurá-lo como 'Desligado'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Procurar por 'implicit_flush' no seu php.ini e configurá-lo como 'Desligado'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Membros"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "O tempo de Execução deve ser no mínimo 30 segundos."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Pesquisa por 'max_execution_time' no seu php.ini e defina-o como '30' ou superior."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Pesquisar por 'expose_php' no seu php.ini e defina-o como 'Desligado'."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Aumente o desempenho do seu servidor definindo magic_quotes_gpc para 'desligado'."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Pesquisar por 'zend.ze1_compatibility_mode' no seu php.ini e defina-o como 'Desligado'."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Erro de configuração"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Sem configurações de ACL para esta categoria"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Concluído"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL para estes objetos: %s"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Próximo"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Editar categoria de ACL"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "Equipe do FusionDirectory"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Reiniciar categoria de ACL"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Lista de categorias de ACL"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Todos objetos na atual sub-árvore"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filtro"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Mostrar templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Cargos de controle de acesso"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr "Não há contas expiradas"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "Cargo ACL"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "O FusionDirectory NÃO irá rodar sem a correção disto."
+
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "O FusionDirectory irá rodar sem a correção disto."
+
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr "correio"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "ID de usuário"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Senha (novamente)"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr "Próximas contas a expirar"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr "Nenhum deles está travado"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
+#: setup/setup_welcome.tpl.c:32
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr ""
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Clique no botão 'Próximo' quando tiver terminado."
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Imagem de usuário"
-
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Remover imagem"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Fechar"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Conflito de bloqueio detectado"
-
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Somente leitura"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Caso você deseja saber o que será feito após migrar as entradas selecionada, use o botão 'Mostrar mudanças' para ver o LDIF."
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Mostrar mudanças"
+
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Continuar"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "A opção de limite de tamanho faz com que as operações de LDAP fiquem mais rápidas e auxiliem o servidor à não sobrecarregar. A maneira mais fácil de lidar com banco de dados grandes sem longos timeouts, seria limitando sua pesquisa para valores menores e utilizando filtros para obter as entradas que você está procurando."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Crie seu arquivo de configuração"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Por favor, escolha a maneira de reação para esta sessão"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "Ignorar este erro e mostrar todas as entradas retornadas pelo servidor LDAP."
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Configuração de download"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "Ignorar este erro e mostrar todas as entradas que se enquadram no limite de tamanho definido, e me deixar utilizar filtros ao invés. "
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Estado:"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Definir"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filtro"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4934,17 +4843,6 @@ msgid ""
 "contact your administrator"
 msgstr "A recuperação de senha não foi ativada. Se você perdeu a sua senha, por favor, entre em contato com o administrador."
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Se você tem certeza, pressione 'Delete' para continuar ou 'Cancel' para desistir."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Tela de login"
@@ -4972,72 +4870,106 @@ msgstr "Acessar"
 msgid "Click here to log in"
 msgstr "Clique aqui para fazer login"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "A opção de limite de tamanho faz com que as operações de LDAP fiquem mais rápidas e auxiliem o servidor à não sobrecarregar. A maneira mais fácil de lidar com banco de dados grandes sem longos timeouts, seria limitando sua pesquisa para valores menores e utilizando filtros para obter as entradas que você está procurando."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Por favor, escolha a maneira de reação para esta sessão"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "Ignorar este erro e mostrar todas as entradas retornadas pelo servidor LDAP."
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "Ignorar este erro e mostrar todas as entradas que se enquadram no limite de tamanho definido, e me deixar utilizar filtros ao invés. "
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Definir"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Favor clicar duas vezes se você quer realmete executar esta ação. O FusionDirectory não poderá desfazê-la."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
-msgstr ""
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Se você tem certeza, pressione 'Delete' para continuar ou 'Cancel' para desistir."
 
-#: ihtml/themes/breezy/acl.tpl.c:2
-msgid "Assigned ACL for current entry"
-msgstr "ACL atribuída para entrada atual"
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Principal"
 
-#: ihtml/themes/breezy/acl.tpl.c:5
-msgid "New ACL"
-msgstr "Nova ACL"
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Sair"
 
-#: ihtml/themes/breezy/acl.tpl.c:8
-msgid "ACL type"
-msgstr "Tipo de ACL"
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Logado como:"
 
-#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
-msgid "Select an acl type"
-msgstr "Selecione um tipo de ACL"
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:17
-msgid "Additional filter options"
-msgstr "Opções adicionais de filtros"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:20
-msgid "Use members from"
-msgstr "Usar membros de"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:23
-msgid "Available members"
-msgstr "Membros disponíveis"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
-msgid "List message possible targets"
-msgstr "Lista possíveis alvos da mensagem"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Continuar"
 
-#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
-msgid "List message recipients"
-msgstr "Lista de destinatários da mensagem"
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Conflito de bloqueio detectado"
 
-#: ihtml/themes/breezy/acl.tpl.c:44
-msgid "ACL for this object"
-msgstr "ACL para este objeto"
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:47
-msgid "Available roles"
-msgstr "Papéis disponíveis"
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Somente leitura"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
 msgstr ""
 
 #: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
@@ -5065,182 +4997,249 @@ msgstr "Ou se você copiar ou recortar um registro com FusionDirectory e deletar
 msgid "Operation complete"
 msgstr "A operação foi concluída com êxito"
 
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
 #: ihtml/themes/breezy/msg_dialog.tpl.c:8
 msgid "Information"
 msgstr "Informação"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Principal"
+#: ihtml/themes/breezy/acl.tpl.c:2
+msgid "Assigned ACL for current entry"
+msgstr "ACL atribuída para entrada atual"
+
+#: ihtml/themes/breezy/acl.tpl.c:5
+msgid "New ACL"
+msgstr "Nova ACL"
+
+#: ihtml/themes/breezy/acl.tpl.c:8
+msgid "ACL type"
+msgstr "Tipo de ACL"
+
+#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
+msgid "Select an acl type"
+msgstr "Selecione um tipo de ACL"
+
+#: ihtml/themes/breezy/acl.tpl.c:17
+msgid "Additional filter options"
+msgstr "Opções adicionais de filtros"
+
+#: ihtml/themes/breezy/acl.tpl.c:20
+msgid "Use members from"
+msgstr "Usar membros de"
+
+#: ihtml/themes/breezy/acl.tpl.c:23
+msgid "Available members"
+msgstr "Membros disponíveis"
+
+#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
+msgid "List message possible targets"
+msgstr "Lista possíveis alvos da mensagem"
+
+#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
+msgid "List message recipients"
+msgstr "Lista de destinatários da mensagem"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Sair"
+#: ihtml/themes/breezy/acl.tpl.c:44
+msgid "ACL for this object"
+msgstr "ACL para este objeto"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Logado como:"
+#: ihtml/themes/breezy/acl.tpl.c:47
+msgid "Available roles"
+msgstr "Papéis disponíveis"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "Equipe do FusionDirectory"
+
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/generic/references/contents.tpl.c:5
+msgid ""
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Fechar"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Crie seu arquivo de configuração"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Configuração de download"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Imagem de usuário"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Estado:"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Remover imagem"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr ""
+
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "ID de usuário"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Senha (novamente)"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr "Nenhum deles está travado"
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr "Não há contas expiradas"
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Clique no botão 'Próximo' quando tiver terminado."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
+msgstr "correio"
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "O FusionDirectory NÃO irá rodar sem a correção disto."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "O FusionDirectory irá rodar sem a correção disto."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
+msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
+msgstr "Próximas contas a expirar"
+
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Mostrar templates"
+
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Caso você deseja saber o que será feito após migrar as entradas selecionada, use o botão 'Mostrar mudanças' para ver o LDIF."
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Mostrar mudanças"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/ru/fusiondirectory.po b/locale/ru/fusiondirectory.po
index cb5f93abc1cd646bda9469ed703a6307f30b1c27..7174ae241c09e3cf1452f3283731f9160024a0cb 100644
--- a/locale/ru/fusiondirectory.po
+++ b/locale/ru/fusiondirectory.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n"
@@ -19,4863 +19,4758 @@ msgstr ""
 "Language: ru\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Добро пожаловать %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Ссылки"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Роль"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr "Информация о роли"
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr "Организационная роль"
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr "Информация"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Название"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr "Название этой группы"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Описание"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr "Описание роли"
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Телефон"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Факс"
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr "Добавить пользователей для роли"
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Группа"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr "Информация об POSIX группе"
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr "POSIX группа"
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Свойства"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr "Краткое описание группы"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Указать GID вручную"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr "Указать значение GID для группы"
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr "GID значение для этой группы"
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Члены группы"
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Системные доверия"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Режим доверия"
-
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr "Тип авторизации для этих хостов"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "отключен"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "полный доступ"
-
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "разрешить доступ только на эти хосты"
-
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-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:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Предупреждение"
-
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Время ожидания блокировки истекло. Игнорирование блокировки!"
-
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr "Неизвестный тип: %s"
-
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr "Не существующий dn: %s"
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Объект группы"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr "Информация об объекте группы"
-
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Включаемые объекты"
-
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr "Объекты, члены этой группы"
-
-#: plugins/admin/groups/class_ogroup.inc:321
-msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Список групп"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Действия"
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Создать"
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Изменить"
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Удалить"
-
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr "Группы и роли"
-
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr "Управление группами и ролями"
-
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
-msgstr "Управление объектами группы, POSIX группы и роли"
-
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr "Редактировать свойства роли"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
-
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Редактировать posix свойства"
-
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr "Показать группы пользователей"
-
-#: 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:132
-msgid "Show organizational roles"
-msgstr "Показать организационные роли"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Предпочитаемый язык"
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr "Показать группы приложений"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Настройка языка"
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr "Показать неопознанные группы"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Этот шаг позволяет выбрать предпочитаемый вами язык."
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Показывать группы mail"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
+msgstr "В этом месте вы можете выбрать язык по умолчанию для всего сайта. При выборе \"автоматически\" будет и использоваться язык запрошенный браузером. Эта настройка может быть переопределена для каждого пользователя."
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Показать группы samba"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Автоматически"
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
-msgstr "Показать группы серверов"
-
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr "Показать группы рабочих станций"
-
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr "Показать группы рабочих станций с Windows"
-
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr "Показать группы терминалов"
-
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr "Показать группы принтеров"
-
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
-msgstr "Показать группы телефонов"
-
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Доменный компонент"
-
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr "доменный компонент"
-
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Подразделение"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Подразделения"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "отдел"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Контроль за установкой"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr "Название %s"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Основная проверка совместимости PHP и расширений"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
-msgstr "Название для %s"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Проверка PHP версии"
 
-#: plugins/admin/departments/class_department.inc:72
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Short description of this %s"
-msgstr "Короткое описание для %s"
+msgid "PHP must be of version %s or above."
+msgstr "PHP должен быть %s версии или старше"
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Категория"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Пожалуйста обновитесь до поддерживаемой версии."
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
-msgstr "Категория для %s"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory требуется модуль для связи с вашим LDAP сервером."
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr "Сайт"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory требуется модуль для интернационализации интерфейса."
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
-msgstr "Сайт %s"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirectory требуется этот модуль для взаимодействия с различными типами серверов и протоколов."
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Руководитель"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory требуется модуль для интеграции с samba."
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
-msgstr "Руководитель этого %s"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory требуется один из модулей 'mhash или 'sha1', чтобы использовать SSHA шифрование."
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Местоположение"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory требуется модуль для связи с IMAP сервером."
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Адм. единица"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Страна"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory требуется модуль для обработки юникод строк."
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Адрес"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
-msgstr "Почтовый адрес для %s"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory требуется расширение для обработки изображений."
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Телефон"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "модуль сжатия"
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
-msgstr "Номер телефона"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory требуется расширение для обработки снапшотов."
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Факс"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "register_globals механизм PHP, предоставляющий доступ ко всем глобальным переменным из скриптов без изменения области видимости. Это не безопасно."
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
-msgstr "Номер факса"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Найдите 'register_globals' в вашем php.ini и переключите в 'Off'."
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Управление подразделениями"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "Это значение используется PHP сборщиком мусора, чтобы удалять старые сессии."
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Checks.inc:157
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
-msgstr "Управление подразделениями, странами, доменными компонентами, доменами, местоположениями и организационными удиницами"
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
-msgstr "Пользователи и группы"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Найдите 'session.gc_maxlifetime' в вашем php.ini и установите в 86400 или больше."
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Местоположение"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Выкл"
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr "Местоположения"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "Чтобы во время использования FusionDirectory не возникло ни каких проблем, опция 'session.auto_start' должна быть установлена в 'Off' в вашем php.ini."
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr "страна"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Найдите 'session.auto_start' в вашем php.ini и установите его в 'Off'."
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Домен"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr "FusionDirectory нужно не меньше 128МБ памяти. Настройка этого предела ниже может привести к ошибкам, которые не воспроизводятся! Увеличьте его в большинстве случаев."
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
-msgstr "домен"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr "Найдите 'memory_limit' в вашем php.ini и установите его в '128M' или больше."
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Список подразделений"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Организация"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Найдите 'implicit_flush' в вашем php.ini и установите его в 'Off'."
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
-msgstr "организации"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "Время исполнения, должно быть не менее 30 секунд."
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Список пользователей"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Найдите 'max_execution_time' в вашем php.ini и установите его в значение '30' или больше."
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Фамилия"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Повысить безопасность сервера установив опцию expose_php в 'off'. PHP не будет отправлять ни какую информацию о сервере, запускающему, в этом случае."
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Имя"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Найдите 'expose_php' в вашем php.ini и установите в 'Off'."
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Имя пользователя"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Повысите производительность вашего сервер установив setting magic_quotes_gpc в 'off'."
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Пользователь"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Найдите 'zend.ze1_compatibility_mode' в вашем php.ini и установите в 'Off'."
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
-msgstr "Из шаблона"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Добро пожаловать"
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Шаблон"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Добро пожаловать в мастер настройки FusionDirectory!"
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Заблокировать пользователей"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Сообщение приветствия"
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Разблокировать пользователей"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Применить шаблон"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Перемещение"
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Новый пользователь из шаблона"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Инспекция LDAP"
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Редактировать пользователя"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Анализ вашего текущего LDAP для совместимости с FusionDirectory"
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
+msgstr "Дать полные права на пользователей в выбранной ветке"
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Удалить пользователя"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Пользователи"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Управление пользователями"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
-msgstr "Управление аккаунтами пользователей и их свойствами"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Проверка прав для LDAP базы"
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Права"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Проверка на невидимых пользователей"
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Блокировка учётной записи"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Проверка для супер администратора"
 
-#: plugins/admin/users/class_userManagement.inc:188
-#, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
-msgstr "Парольный метод \"%s\" не поддерживает блокирование. Аккаунт \"%s\" не будет заблокирован!"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "Разблокировать акаунт"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Проверка на пользователей за пределами дерева людей"
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "Заблокировать акаунт"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Проверка на группы за пределами дерева для них"
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
-msgstr "Учетная запись пользователя"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Проверка на невидимые подразделения"
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
-msgstr "Информация об учетной записи пользователя"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Нет ACL настроек для этой категории"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL для объектов: %s"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "LDAP запрос не удался"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Редактировать категорию ACL"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Ошибка"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Delete"
-msgstr "Удалить"
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "Пропущен объектный класс FusionDirectory '%s'!"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Сбросить категорию ACL"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Пожалуйста проверьте вашу установку."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Список доступных ACL категорий"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Все объекты в текущем поддереве"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Ошибка LDAP"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "Edit ACL for \"%s\""
-msgstr "Редактировать ACL для \"%s\""
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "чтение"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "запись"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Предупреждение"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Объект"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "Найден пользователь(и) %s, которые будут не видны в FusionDirectory или которые не полные."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Показать/скрыть дополнительные настройки"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Создать объекты"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Ошибка перемещения"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Переместить объекты"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Удалить объекты"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
+msgstr "Найдена учетная запись администратора FD 1.0.7: %s"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Наделить правами доступа владельца"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
+msgstr "Найдена административная группа FD 1.0.7: %s"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Объект целиком"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "ACL ролей"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr "Нет рабочей учетной записи администратора FusionDirectory 1.0.8 в вашем LDAP."
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr "Управление ACL ролей"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Создать"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
-msgstr "Управление ACL ролей"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Пользователи"
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Содержит настройки для этих объектов: %s"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Группы"
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Роли контроля доступа"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "Нет учетной записи администратора FusionDirectory в вашем LDAP."
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "ACL роли"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr "Имя роли"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Ошибка"
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr "Короткое описание для этой роли"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
+msgstr "ACL ролей по умолчанию не вставлены"
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr "ACLs"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
+msgstr "Некоторые ACL ролей по умолчанию пропущены"
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr "ACLs, которые являются частью этой группы"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr "ACL ролей по умолчанию вставлен"
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr "Dn"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Переместить пользователей в настроенное дерево пользователей"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr "Назначения ACL"
-
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
-msgstr "Управление назначением ACL ролей пользователям"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Следующие ссылки будут обновлены"
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "Назначение ACL"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Найдены группы %s, выходящие за пределы настроенного дерева '%s'."
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr "Диалог назначения ролей управления доступом"
-
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "Режим"
-
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr "Применить это действие ко всему поддереву или только к его основе?"
-
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr "Subtree"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Найдены подразделение(я) %s, которые будет не видны в FusionDirectory."
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr "Только к основе"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr "Применить роль"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr "Для всех пользователей"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr "Применить этот ACL для всех пользователй LDAP"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Члены"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Местоположение"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr "Пользователи или группы, которым будет назначена эта роль."
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr "Назначение  ACL"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "URI подключения"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr "Назначения ролей управления доступом"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr "Назначения"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "TLS соединение"
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr "Назначенные роли ACL для этой корневой записи"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
-msgstr "Назначения на объекты или поддеревья %s"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Ветка"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr "Информационная панель"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr "Статистика и различная информация"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Аутентификация"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr "Отчеты"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr "Статистика"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "DN администратора"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr "Статистика о пользователях"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Пароль администратора"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr "Статистика по пользователям"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr "Статистика по группам"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Состояние"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr "Просроченные учетные записи"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Текущее состояние"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Парольный метод"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Применяемый метод для хэша пароля"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Настройки LDAP"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Пароль"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Настройки LDAP соединения"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Пароль (Оставьте пустым, если не хотите его менять)"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Этот диалог выполняет основную настройку LDAP соединения для FusionDirectory."
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Пароль еще раз"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "Сбой при анонимном привязывании к серверу '%s'!"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "Сбой при привязки под пользователем '%s'!"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Личная информация"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "Повторить"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Фамилия"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "Анонимное подключение (bind) а к серверу '%s' удалась."
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr "Фамилия пользователя"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Обновить"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Имя"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Пожалуйста укажите пользователя и пароль!"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr "Имя пользователя"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "Привязка под пользователем '%s' к серверу '%s' удалась!"
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
-msgstr "Краткое описание пользователя"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr "Фотография"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Готово"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr "Аватар пользователя"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Завершение - запишите конфигурационный файл"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr "Рабочая контактная информация"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Запись конфигурационного файла"
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr "Рабочий почтовый адрес"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Конфигурационный файл доступе только для чтения. Пожалуйста обновите права на файл."
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Номер комнаты"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Конфигурационный файл не читается или не существует вовсе."
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Номер комнаты"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "После скачивания и размещения файла в %s, убедитесь что пользователь из под которого запущен веб-сервера может читать %s, в то время как другие пользователи не должны."
+
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Ошибка настройки"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr "Рабочий номер телефона"
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Завершено"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Мобильный"
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Далее"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr "Рабочий номер мобильного телефона"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Внутренняя ошибка"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Пейджер"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Не удалось войти: %s"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr "Рабочий номер пейджера"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr "Рабочий номер факса"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "Указанный объектный тип пустой или неверный!"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Домашняя страница"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "Не настроено"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr "Персональная домашняя страница"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Ошибка фильтра"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr "Информация об учетной записи"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "Фильтр неполный!"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr "Логин этого пользователя"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Права"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Предпочитаемый язык"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Ошибка доступа"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr "Пароль пользователя"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Вам не разрешено создавать снапшот для %s."
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr "Личная контактная информация"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Вам не разрешено восстанавливать снапшот для %s."
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "Отображаемое имя"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "В конфигурационном файле не найдено объявление вкладки для '%s'. Не могу создать экземпляр плагина!"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr "Домашний адрес"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Отправить"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Домашний почтовый адрес"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "По убыванию"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Личный телефон"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Вниз"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Домашний телефон"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
+msgstr "Сортировать по возврастанию"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Информация об организации"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
+msgstr "Сортировать по убыванию"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "Заголовок"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Выбрать все"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr ""
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "создано"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Перейти в корень подразделений"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Номер подразделения"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Перейти вверх на одно подразделение"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Номер отдела"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
+msgstr "Перейти к подразделению пользователя"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Номер работника"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Номер работника"
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Обновить список"
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Форма трудоустройства"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Действия"
 
-#: plugins/personal/generic/class_user.inc:607
-#, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
-msgstr ""
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Копировать"
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
-msgstr "Вам не разрешено изменять свой пароль"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Вырезать"
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
-msgstr "Вы должны подождать %d секунд перед повторным изменением пароля"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Вставить"
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
-msgstr "Пароль присутствует в истории старых паролей"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Вырезать эту запись"
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
-msgstr ""
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Копировать эту запись"
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Для продолжения укажите свой текущий пароль."
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Восстановить снапшоты"
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr ""
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Экспортировать список"
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Новый пароль"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Восстановить снапшот"
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Новый и текущий пароли слишком похожи."
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Создать снапшот"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Новый пароль слишком короткий."
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Создать новый снапшот из объекта"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "Пароль содержит символы Unicode, которые могут проблемы!"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Фатальная ошибка"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "в"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Редактировать POSIX настройки пользователя"
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "на строке"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Домашний каталог"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "Ошибка XML"
+
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "Не могу изменить пароль, неизвестный пользователь '%s'"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "Путь к домашнему каталогу пользователя"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Оболочка"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Ошибка конфигурации"
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr "Какой шелл должен использоваться, когда пользователь заходит в систему"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Страница"
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Основная группа"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "Невозможно экспортировать в PDF: не установлена библиотека FPDF."
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
-msgstr "Основная группа пользователя"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Состояние"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
-msgstr "Статус учетной записи unix у пользователя"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "Запрашиваемый канал не существует! Пожалуйста свяжитесь с вашим системным администратором."
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
-msgstr "Принудительный id пользователя/группы"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Отменить все"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
-msgstr "Навязанное значение идентификатора пользователя и группы для этого пользователя"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Не могу вставить"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
-msgstr "Id пользователя"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Имя пользователя"
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
-msgstr "Значение идентификатора пользователя"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Шаблон"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr "Id группы"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr "Значение идентификатора группы"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Название шаблона"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Членство в группах"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Учетная запись"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+msgstr "Критическая ошибка: не могу создать экземпляр класса '%s' - попробуйте запустить '%s' чтобы исправить это"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "Пользователь должен сменить пароль при первом входе в систему"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "FATAL: Ошибка при подключении к LDAP. Сервер сообщил '%s'."
 
-#: plugins/personal/posix/class_posixAccount.inc:160
+#: include/functions.inc:583
 msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr "Пользователь должен будет изменить пароль при первом входе (нужно указать значение для \"Задержка до принудительного изменения пароля\")"
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
+msgstr "Логин (uid) не уникальный внутри LDAP дерева! Пожалуйста свяжитесь с вашим администратором."
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
-msgstr "Минимальная задержка между изменениями пароля (дни)"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Ошибка аутентификации"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
+#: include/functions.inc:617
 msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr "Задержка до принудительного изменения пароля (дни)"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Ошибка при добавлении блокировки. Свяжитесь с разработчиками!"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/functions.inc:678
+#, php-format
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
-msgstr "У пользователя насильно будет изменен пароль после указанного количества дней (оставить пустым, чтобы отключить)"
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
+msgstr "Невозможно создать информацию о блокировки в LDAP дереве. Пожалуйста свяжитесь с вашим администратором!"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr "Дата окончания действия пароля"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "LDAP сервер вернул: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/functions.inc:859
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr "Дата после которой пароль пользователя истечет (оставить пустым что бы отключить)"
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
+msgstr "Найдены множественные блокировки для заблокированного объекта. Это не должно было случиться - очистите их."
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr "Через сколько отключать пользователя (дни)"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Найдено более %d объектов."
 
-#: plugins/personal/posix/class_posixAccount.inc:179
+#: include/functions.inc:1132
+#, php-format
 msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr "Сколько подождать до отключения пользователя, после истечения пароля (оставить пустым, чтобы отключить)"
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr "Установить новое значение лимита в %s и показать мне это сообщение если лимит будет исчерпан."
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr "За сколько предупреждать об окончании действия пароля (дни)"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Настроить"
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr "Предупреждать пользователя об окончании действия его пароля за указанное количество дней (оставить пустым, чтобы отключить)"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "не полный"
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Пользователю разрешено подключаться только к хостам из списка"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Продолжить в любом случае"
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "Не настроено"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Редактировать в любом случае"
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "автоматически"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr "Вы собираетесь редактировать LDAP запись/записи %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "Истек"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Записей на странице"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr ""
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Применить фильтр"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "активный"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr "%sB"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "срок действия параля истек"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr "%sKiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "Пароль не изменяем"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr "%sMiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr "%sGiB"
+
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr "%sTiB"
+
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
+msgstr "%sPiB"
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/functions.inc:2096
 #, php-format
-msgid "Group of user %s"
-msgstr "Группа пользователя %s"
+msgid "%sEiB"
+msgstr "%sEiB"
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr ""
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
+msgstr "%sZiB"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr "Принадлежит группам"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
+msgstr "%sYiB"
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr "Принадлежит ролям"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЫЭЮЯ0123456789"
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr "Настройки плагинов"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
+msgstr "Файл '%s' не может быть удален. Попробуйте fusiondirectory-setup --check-directories чтобы исправить права."
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr "FusionDirectory настройка плагинов"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Не могу записать файл проверки!"
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Объединения"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "Не могу прочитать файл проверки!"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr "Ветка в которой объекты групп будут храниться"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Предупреждение LDAP"
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr "Не могу получить информацию о схемах с сервера. Проверить схемы невозможно!"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Настройки"
-
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr "Настройки FusionDirectory"
-
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Внешний вид"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Язык"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
+msgstr ""
 
-#: 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 "Язык приложения. Если 'автоматически' или отсутствует, тогда будет спрошено у браузера какой использовать. Эта настройка может быть переопределена каждым пользователем."
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Тема"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr "Тема, которая будет использоваться"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Доступные класс(ы)"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Часовой пояс"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr "Часовой пояс, который будет использован"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr "Настройка схемы"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr "Включить проверку схемы при входе."
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "Не могу выделить свободный ID:"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Настройки пароля"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr " неизвестный idAllocation метод!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr "Метод хеширования пароля по умолчанию"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "%sPoolMin >= %sPoolMax!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr "Используемый по умолчанию метод хеширования пароля"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "sambaUnixIdPool не уникальна!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr "Заставлять использовать хеш по умолчанию"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "нет доступных ID!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr "Принуждать использовать метод хеширования пароля по умолчанию"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "Превышено максимальное число попыток!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Минимальная длина пароля"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Не могу выделить свободный ID!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr "Минимальная длинна пароля пользователя"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgstr "Не могу обнаружить файл '%s' - пожалуйста запустите '%s', чтобы исправить это."
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr "Минимальная разница в паролях"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Все объекты в этой категории"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr "Минимальное количество отличных символов от последнего пароля"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Пожалуйста исправьте ошибку выше и обновите страницу."
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Использовать учетные записи с истекающим сроком действия"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr "Настройка часового пояса '%s' в вашей конфигурации не правильная."
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr ""
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Ошибка XML в fusiondirectory.conf: %s в строке %d"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr ""
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Не могу привязаться к LDAP. Пожалуйста свяжитесь с системным администратором."
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr "Основные настройки"
-
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Показать краткую информацию о списках"
-
-#: plugins/config/class_configInLdap.inc:162
-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:167
-msgid "Edit locking"
-msgstr "Блокировка редактирования"
-
-#: plugins/config/class_configInLdap.inc:168
+#: include/class_config.inc:886
+#, php-format
 msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr "Проверьте, не была ли редактируемая вами запись изменена вне FusionDirectory в это же время."
-
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr "Включить логирование"
-
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr "Регистрация событий на стороне FusionDirectory"
-
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr "Ограничение размера LDAP"
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
+msgstr "Функционал снапшотов включен, но требуемая переменная '%s' не установлена."
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr "Определяет количество записей, которые можно получить из LDAP по умолчанию."
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
+msgstr "Функционал снапшотов включен, но требуемый модуль сжатия отсутствует. Пожалуйста установите '%s'."
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Вход в систему и сессии"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Все категории"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Атрибут для входа"
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Моя учетная запись"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr "Какой LDAP атрибут необходимо использовать в качестве логина при входе в систему."
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Выбрать список объектов типа '%s'."
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Принудительно шифровать соединения"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Выбрать список объектов содержащих '%s'."
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr "Принудительно использовать шифрованный доступ (https) к веб интерфейсу, включив проверку безопасности PHP."
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Выбрать список объекто у которых включен '%s'"
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Предупреждать если сеанс не зашифрован"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Выберите для поиска внутри поддеревьев"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr "будут отображаться предупреждения для пользователя, когда http будет использоваться вместо https."
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Искать в поддеревьях"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Время жизни сессии"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Этот объект будет удален!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Объект '%s' будет удален!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Объект будет удален: %s"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Объект '%s' будет удален: %s"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Объект будет удален:"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Объект '%s' будет удален:"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Эти объекты будут удалены: %s"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Объекты '%s' будут удалены: %s"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr "Снапшоты"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "У вас недостаточно прав для удаления этого объекта!"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Включить снапшоты"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "У вас недостаточно прав для удаления этого объекта:"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr "Это позволяет сохранять определенное состояние записей и позже его восстанавливать."
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "У вас недостаточно прав для удаления этих объектов:"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Базовая запись снапшотов"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "У вас недостаточно прав для создания этого объекта!"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr "Базовая запись, где снапшоты должны будут храниться внутри LDAP."
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "У вас недостаточно прав для создания этого объекта:"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr "SSL"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "У вас недостаточно прав для создания этих объектов:"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr ""
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "У вас недостаточно прав для изменения этого объекта!"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr "Путь к сертификату CA"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "У вас недостаточно прав для просмотра этого объекта!"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "У вас недостаточно прав для просмотра этих объектов:"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr "CAS"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "У вас недостаточно прав для просмотра этих объектов:"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr "Включить CAS"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "У вас недостаточно прав для перемещения этого объекта!"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr ""
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "У вас недостаточно прав для перемещения этого объекта:"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "У вас недостаточно прав для перемещения этих объектов:"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Хост"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Информация о подключении"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Немогу подключиться к %s базе данных!"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Порт"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Не могу выбрать %s базу!"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Не могу отправить запрос %s базе данных!"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Поле '%s' содержит зарезервированные слова!"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Местоположение пользователей и групп"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "DN атрибут пользователя"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "неверная команда '%s'"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr "Атрибут используемый у пользователей в начале dn"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "Неверная команда '%s' для плагина '%s'!"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr "Политика строго присваивания имен"
-
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr "Включить строгую проверку имен для пользователей и групп"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Не могу выполнить '%s' команду!"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr "Минимальный id групп/пользователей"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Не могу выполнить '%s' команду для плагина %s!"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr "Наименьший идентификатор пользователя или группы, который может быть назначен, чтобы избежать дыры в безопасности с идентификатором учетной записи равным 0."
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "Не могу выполнить '%s' команду (%s)!"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr ""
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Не могу выполнить '%s' команду (%s) для плагина %s!"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr "Скрипт, который будет вызваться при нахождении следующего свободного номера id для пользователей иил групп."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Значение '%s' слишком большое!"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr "Начальное значение для id пользователя"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "'%s' должно быть меньше чем %s!"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr "Откуда начинать смотреть значение для нового свободного id пользователя."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Значение '%s' слишком маленькое!"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr "Начальное значение для id группы"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "'%s' должен быть %d или больше!"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr "Откуда начинать смотреть значение для нового свободного id группы."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "'%s' зависит от '%s' - пожалуйста предоставьте оба значения!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr " RDN пользователей"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Запись с '%s' атрибутом уже есть в системе!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr "Ветка где пользователели хранятся."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
+msgstr "Запись '%s' уже имеет атрибут '%s'!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr "RDN групп"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Обязательное поле '%s' пусто!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr "Ветка в которой хранятся группы."
+#: include/class_msgPool.inc:435
+msgid "Example:"
+msgstr "Пример:"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr "RDN для ACL ролей"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
+msgstr "Поле '%s' содержит недопустимые символы."
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr "Ветка в которой хранятся ACL ролей."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Метод выделения id"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr "Метод выделения идентификаторов для пользователей и групп"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Пропущено %s PHP расширение!"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Традиционный"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Отмена"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr "Пул id для samba и unix"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Применить"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr "Минимальное значение id пользователей в пуле"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Сохранить"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr "Минимальное значение для id пользователя, при использовании пул метода"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Добавить"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr "Максимальное значение id пользователя в пуле"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Добавить %s"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr "Максимальное значение для id пользователя, при использовании пул метода"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Удалить"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr "Минимальное значение id группы в пуле"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Удалить %s"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr "Минимальное значение для id группы, при использовании пул метода"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Изменить..."
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr "Максимальное значение id группы в пуле"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Изменить %s..."
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr "Максимальное значение для id группы, при использовании пул метода"
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Назад"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Для этой учетной записи нет корректных расширений %s!"
 
-#: plugins/config/class_configInLdap.inc:377
+#: include/class_msgPool.inc:582
+#, php-format
 msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "В этой учетной записи настройки %s включены. Вы можете отключить их, щелкнув ниже."
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Отладка"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "В этой учетной записи настройки %s включены. Чтобы отключить еë, вам нужно вначале удалить настройки %s!"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr "Отображение ошибок"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "В этой учетной записи настройки %s отключены. Вы можете включить их, щелкнув ниже."
 
-#: plugins/config/class_configInLdap.inc:387
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
 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 "Показывать PHP ошибки в верхней части экрана. Следует отключить при рабочем использовании, потому что там могут быть отображены пароли."
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "В этой учетной записи настройки %s отключены. Чтобы включить её, вам нужно вначале добавить настройки для %s."
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Максимальное время LDAP запроса"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Добавить параметры %s"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr "Остановить работу с LDAP если нет ответа за определенное количество секунд."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Удалить параметры %s"
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Лог статистики обращений к LDAP"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Нажмите 'Изменить' чтобы отредактировать данные в этой форме."
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr "Отслеживать продолжительность обращений к LDAP в syslog. Это может помочь найти проблемы в индексировании и плохих фильтров поиска."
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Январь"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Уровень отладки"
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Февраль"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr "Отображать следующую информацию при каждой загрузке странице."
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Март"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Разное"
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Апрель"
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Май"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr "вкладка"
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Июнь"
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Июль"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "Режим"
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Август"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr "Когда вызывать эту команду"
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Сентябрь"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr "cmd"
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Октябрь"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr "Команда, которая будет вызвана"
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Ноябрь"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Хуки"
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Декабрь"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Воскресенье"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Понедельник"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr "Доступные оболочки"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Вторник"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr "Доступные POSIX шеллы для пользователей FD"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Среда"
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr "Показать вкладку ACL для всех объектов."
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Четверг"
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Пятница"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr "Доступные категории подразделений"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Суббота"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr "Доступные категории подразделений в раскрывающемся списке"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "Сбой при выполнении операции в базе данных!"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Автоматически"
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "операция чтения"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Восстановление пароля"
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "операция добавления"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Настройки для функции восстановления пароля"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "операция изменения"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Настройки восстановления пароля"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "операция удаления"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Включить восстановление пароля"
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "операция поиска"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr "Включить или нет функцию восстановления пароля"
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "аутентификация"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Адрес электронной почты отправителя"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "Адрес электронной почты с которого будут отправляться письма"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "Сбой при выполнении операции в LDAP!"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Ссылка действительна (минуты)"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Объект"
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr "Количество минут до истечения срока годности ссылки для восстановление "
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "Сбой при загрузке!"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr "Соль для токенов"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Сбой при загрузке: %s"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Просто мера безопасности, вы можете вставить сюда все что угодно, даже случайные символы"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Разрешить исользование альтернативных адресов"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Пользователям также нужно ввести один из их дополнительных адресов для восстановления пароля"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "'%s' по-прежнему используется этим объектом: %s"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "Первое письмо"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "'%s' по-прежнему используется."
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Тема"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "'%s' по-прежнему используется этими объектами: %s"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Тема первого письма"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Файл '%s' не существует!"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Ссылка для восстановления пароля"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Не могу открыть файл '%s' для чтения!"
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_msgPool.inc:796
 #, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr "Тело (вначале логин %s, вторая ссылка)"
+msgid "Cannot open file '%s' for writing!"
+msgstr "Не могу открыть файл '%s' для записи!"
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_msgPool.inc:806
 #, php-format
 msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
-msgstr "Тело первого письма, отправляется когда пользователь запрашивает новый пароль. Использует %s логин и ссылку для восстановления."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "Значение для '%s' до сих пор не настроено или неверно, пожалуйста проверьте ваш конфигурационный файл!"
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_msgPool.inc:816
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Привет,\n\nЗдесь ваша информация:\n - Логин: %s\n - Ссылка: %s\n\nЭта ссылка будет работать только 10 минут."
+msgid "Cannot delete file '%s'!"
+msgstr "Не могу удалить файл '%s'!"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Второе письмо"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "Не могу создать папку '%s'!"
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Тема второго письма"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "Не могу удалить папку '%s'!"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Пароль восстановлен успешно"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Проверка поддержки %s"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/class_msgPool.inc:856
 #, php-format
-msgid "Body (%s is login)"
-msgstr "Тело (%s логин)"
+msgid "Install and activate the %s PHP module."
+msgstr "Установите и активируйте %s PHP модуль."
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/class_msgPool.inc:866
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr "Тело второго письма, отправляется, чтобы подтвердить, что пароль был  изменен. Использует %s логин пользователя."
+msgid "Install and activate the %s Pear module."
+msgstr "Установите и активируйте %s Pear модуль."
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/class_msgPool.inc:876
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Привет,\n\nВаш пароль был изменен.\nВаш логин по прежнему %s."
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "Не могу инициализировать класс '%s'! Может быть какой то плагин пропущен в настройках FusionDirectory?"
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
-msgstr "Настройка информационной панели"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
-msgstr "Настройка плагина информационной панели FusionDirectory"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr "Название схемы для информационной панели"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr "Количество цифр"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Дата"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
-msgstr "Количество цифр используемых после префикса"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
-msgstr "Префиксы"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr "Префексы, которые будут использоваться для идентификаторов компьютеров"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
-msgstr "Информационная панель - пользователи с истекшим сроком действия"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
-msgstr "Количество дней"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
+msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Плагины"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
+msgstr "Снапшоты"
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr "Настройки плагинов"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
+msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "По убыванию"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Файл"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Вниз"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Строка"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
-msgstr "Сортировать по возврастанию"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "Ошибка PHP"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
-msgstr "Сортировать по убыванию"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Выбрать все"
+#: include/php_setup.inc:70
+msgid "function"
+msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Ошибка"
+#: include/php_setup.inc:76
+msgid "static"
+msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "создано"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Перейти в корень подразделений"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr ""
+
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Тип"
+
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Аргументы"
+
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "Создание этой страницы помогла PHP интерпретатору выявить некоторые ошибки!"
+
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Послать отчет об ошибке команде FusionDirectory"
+
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Отправить отчет об ошибке"
+
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr ""
+
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Предупреждение о производительности"
+
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr "Низкая производительность LDAP: последний запрос занял около %.2fs!"
+
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr ""
+
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgstr ""
+
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "во время операции на '%s' использовался LDAP сервер '%s'"
+
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "во время операции на LDAP сервер %s"
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Перейти вверх на одно подразделение"
-
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
-msgstr "Перейти к подразделению пользователя"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Обновить список"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Отправить"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
+msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Копировать"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Вырезать"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Ошибка при импорте dn: '%s', проверьте ваш LDIF начиная со строки %s!"
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Вставить"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Пожалуйста выберете нужные записи"
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Вырезать эту запись"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Название"
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Копировать эту запись"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Описание"
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Восстановить снапшоты"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
+msgstr "POSIX группа %s"
 
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Экспортировать список"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
+msgstr "Роль %s"
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Восстановить снапшот"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
+msgstr "Группа %s"
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Создать снапшот"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Группа пользователя"
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Создать новый снапшот из объекта"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Ошибка фильтра"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Неизвестно"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "Фильтр неполный!"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Изменить"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Ошибка доступа"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Удалить"
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Вам не разрешено создавать снапшот для %s."
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Вам не разрешено восстанавливать снапшот для %s."
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "Процесс удаления был отменен плагином '%s': %s"
 
-#: include/class_management.inc:679
+#: include/simpleplugin/class_simpleTabs.inc:401
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "В конфигурационном файле не найдено объявление вкладки для '%s'. Не могу создать экземпляр плагина!"
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr "Не удалось переместить из \"%s\" в \"%s\""
 
-#: include/class_config.inc:156
-#, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "Ошибка XML в fusiondirectory.conf: %s в строке %d"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
+msgstr "B"
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Ошибка конфигурации"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
+msgstr "KiB"
 
-#: include/class_config.inc:280
-#, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
+msgstr "MiB"
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Ошибка LDAP"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
+msgstr "GiB"
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Не могу привязаться к LDAP. Пожалуйста свяжитесь с системным администратором."
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
+msgstr "TiB"
 
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "секунды"
 
-#: include/class_config.inc:885
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
-msgstr "Функционал снапшотов включен, но требуемая переменная '%s' не установлена."
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
+msgstr "минуты"
 
-#: include/class_config.inc:898
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
-msgstr "Функционал снапшотов включен, но требуемый модуль сжатия отсутствует. Пожалуйста установите '%s'."
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "часы"
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Все категории"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "дни"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Моя учетная запись"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr "Из шаблона"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Предупреждение о производительности"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
+msgstr "шаблон %s "
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr "Низкая производительность LDAP: последний запрос занял около %.2fs!"
+msgid "Show %s"
+msgstr "Показать %s"
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Внутренняя ошибка"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
+msgstr ""
+
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr "Это название шаблона"
+
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/simpleplugin/class_simplePlugin.inc:278
 #, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/simpleplugin/class_simplePlugin.inc:290
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Ошибка при сохранении"
+
+#: include/simpleplugin/class_simplePlugin.inc:686
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "во время операции на '%s' использовался LDAP сервер '%s'"
+msgid "There is already an entry with the same dn : %s"
+msgstr "Уже есть запись с таким dn: %s"
 
-#: include/class_ldap.inc:996
+#: include/simpleplugin/class_simplePlugin.inc:694
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "во время операции на LDAP сервер %s"
+msgid "The entry %s is not existing"
+msgstr "Запись %s не существует"
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_ldap.inc:1133
+#: include/simpleplugin/class_simplePlugin.inc:1038
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
-msgstr ""
+msgid "Unknown field \"%s\""
+msgstr "Неизвестное поле \"%s\""
 
-#: include/class_ldap.inc:1151
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
-msgstr ""
+msgid "%s (required)"
+msgstr "%s (обязательный)"
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_ldap.inc:1163
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
 #, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
-msgstr ""
+msgid "Cannot read uploaded file: %s"
+msgstr "Не могу прочесть загруженный файл: %s"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "файл пустой"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "файл не найден"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "файл не читаем"
 
-#: include/class_ldap.inc:1194
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
 #, php-format
+msgid "%s (%d bytes)"
+msgstr "%s (%d байт)"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Загрузить"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Скачать"
+
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
 msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Ошибка при импорте dn: '%s', проверьте ваш LDIF начиная со строки %s!"
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr ""
 
-#: include/class_msgPool.inc:43
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Выбрать список объектов типа '%s'."
+msgid "Invalid value for %s"
+msgstr "Неверное значение для %s"
 
-#: include/class_msgPool.inc:45
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Выбрать список объектов содержащих '%s'."
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_msgPool.inc:47
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Выбрать список объекто у которых включен '%s'"
-
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Выберите для поиска внутри поддеревьев"
+msgid "An integer between %d and %d"
+msgstr "Целое число от %d до %d"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Искать в поддеревьях"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
+msgstr "Целое число больше %d"
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Этот объект будет удален!"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
+msgstr "Целое число меньше %d"
 
-#: include/class_msgPool.inc:69
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Объект '%s' будет удален!"
+msgid "A float between %f and %f"
+msgstr "Вещественное число от %f до %f"
 
-#: include/class_msgPool.inc:74
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Объект будет удален: %s"
+msgid "A float larger than %f"
+msgstr "Вещественно число больше %f"
 
-#: include/class_msgPool.inc:76
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Объект '%s' будет удален: %s"
+msgid "A float smaller than %f"
+msgstr "Вещественное число меньше %f"
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Объект будет удален:"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr "Были проблемы при распаковке данных снапшота"
 
-#: include/class_msgPool.inc:83
+#: include/class_plugin.inc:795
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Объект '%s' будет удален:"
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Эти объекты будут удалены: %s"
+msgid "Tab \"%s\""
+msgstr "Вкладка \"%s\""
 
-#: include/class_msgPool.inc:89
-#, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Объекты '%s' будут удалены: %s"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "Доступ"
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "У вас недостаточно прав для удаления этого объекта!"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Управление списками контроля доступа (ACL)"
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "У вас недостаточно прав для удаления этого объекта:"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "ACL ролей"
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "У вас недостаточно прав для удаления этих объектов:"
+#: include/class_acl.inc:118
+#, php-format
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr "Неизвестный тип ACL '%s'!\nВозможно вам нужно запустить \"fusiondirectory-setup --migrate-acls\", чтобы перенести ваши acls в новый формат."
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "У вас недостаточно прав для создания этого объекта!"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Неизвестная запись '%s'!"
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "У вас недостаточно прав для создания этого объекта:"
+#: include/class_acl.inc:173
+#, php-format
+msgid "All users"
+msgstr "Все пользователи"
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "У вас недостаточно прав для создания этих объектов:"
+#: html/setup.php:59
+msgid "Smarty"
+msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "У вас недостаточно прав для изменения этого объекта!"
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
+msgstr ""
+
+#: html/index.php:150
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
+msgstr "Не прочесть конфигурацию FusionDirectory %s/%s. Чтобы исправить это пожалуйста запустите  fusiondirectory-setup --check-config."
+
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Ошибка Smarty"
+
+#: html/index.php:173
+#, php-format
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Время вашей сессии истекло!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
+msgstr "Ваш IP адрес изменен!"
+
+#: html/index.php:214
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "У вас недостаточно прав для просмотра этого объекта!"
+#: html/index.php:217
+msgid "No session found!"
+msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "У вас недостаточно прав для просмотра этих объектов:"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr "Проверка схемы LDAP сообщает об ошибке:"
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "У вас недостаточно прав для просмотра этих объектов:"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "У вас недостаточно прав для перемещения этого объекта!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Введите корректное имя пользователя!"
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "У вас недостаточно прав для перемещения этого объекта:"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Введите свой пароль!"
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "У вас недостаточно прав для перемещения этих объектов:"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Проверьте, правильно ли вы ввели имя пользователя и пароль."
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Информация о подключении"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Учетная запись заблокирована. Пожалуйста свяжитесь с вашим системным администратором."
 
-#: include/class_msgPool.inc:225
+#: html/index.php:454
 #, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Немогу подключиться к %s базе данных!"
+msgid "No value found in HTTP header \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:245
+#: html/index.php:475
 #, php-format
-msgid "Cannot select %s database!"
-msgstr "Не могу выбрать %s базу!"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/index.php:485
 #, php-format
-msgid "No %s server defined!"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:275
+#: html/index.php:547
 #, php-format
-msgid "Cannot query %s database!"
-msgstr "Не могу отправить запрос %s базе данных!"
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr "CAS пользователь \"%s\" не может быть найден в LDAP"
 
-#: include/class_msgPool.inc:285
+#: html/index.php:557
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Поле '%s' содержит зарезервированные слова!"
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr "CAS пользователь \"%s\" соответствует нескольким пользователям в LDAP"
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr ""
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "В вашем браузере отключены куки. Пожалуйста включите их и обновите эту страницу перед входом в систему! "
 
-#: include/class_msgPool.inc:313
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "неверная команда '%s'"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "Конфигурация FusionDirectory %s/%s не читаема. Прервано."
 
-#: include/class_msgPool.inc:315
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "Неверная команда '%s' для плагина '%s'!"
+msgid "Did not find an account with login \"%s\""
+msgstr "Не найден аккаунт с логином \"%s\""
 
-#: include/class_msgPool.inc:319
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr ""
+msgid "Found multiple accounts with login \"%s\""
+msgstr "Найдено множество учетных записей с логином \"%s\""
 
-#: include/class_msgPool.inc:321
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Адрес электронной почты"
+
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:339
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Не могу выполнить '%s' команду!"
+msgid "There are several accounts using email \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:341
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Не могу выполнить '%s' команду для плагина %s!"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "Не могу выполнить '%s' команду (%s)!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Свяжитесь с вашим системным администратором, были проблемы с почтовым сервером"
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Не могу выполнить '%s' команду (%s) для плагина %s!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Значение '%s' слишком большое!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr "Были проблемы с почтовым сервером, имэйл подтверждения не отправлены"
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "'%s' должно быть меньше чем %s!"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Настройки PHP"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Значение '%s' слишком маленькое!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Критическая ошибка: Register globals is on. FusionDirectory не позволит залогиниться до тех пор пока это не будет исправлено администратором."
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "'%s' должен быть %d или больше!"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Изменить пароль"
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "'%s' зависит от '%s' - пожалуйста предоставьте оба значения!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Срок действия вашего пароля почти закончился, пожалуйста измените его!"
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Запись с '%s' атрибутом уже есть в системе!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr "Ваш пароль истек, пожалуйста установите новый."
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
-msgstr "Запись '%s' уже имеет атрибут '%s'!"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Обязательное поле '%s' пусто!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
-msgstr "Пример:"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Плагин"
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#: html/main.php:290
 #, php-format
-msgid "The field '%s' contains invalid characters"
-msgstr "Поле '%s' содержит недопустимые символы."
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:456
+#: html/main.php:306
 #, php-format
-msgid "'%s' are not allowed!"
-msgstr ""
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Критическая ошибка: не все POST переменные переданы в PHP - пожалуйста сообщите вашему системному администратору!"
 
-#: include/class_msgPool.inc:470
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Пропущено %s PHP расширение!"
+msgid "Welcome %s!"
+msgstr "Добро пожаловать %s!"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Отмена"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Ссылки"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Применить"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Редактировать POSIX настройки пользователя"
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Сохранить"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Домашний каталог"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Добавить"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "Путь к домашнему каталогу пользователя"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Добавить %s"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Оболочка"
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Удалить %s"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr "Какой шелл должен использоваться, когда пользователь заходит в систему"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Изменить..."
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Основная группа"
+
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr "Основная группа пользователя"
+
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr "Статус учетной записи unix у пользователя"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Изменить %s..."
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
+msgstr "Принудительный id пользователя/группы"
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Назад"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr "Навязанное значение идентификатора пользователя и группы для этого пользователя"
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Для этой учетной записи нет корректных расширений %s!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
+msgstr "Id пользователя"
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "В этой учетной записи настройки %s включены. Вы можете отключить их, щелкнув ниже."
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
+msgstr "Значение идентификатора пользователя"
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "В этой учетной записи настройки %s включены. Чтобы отключить еë, вам нужно вначале удалить настройки %s!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr "Id группы"
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "В этой учетной записи настройки %s отключены. Вы можете включить их, щелкнув ниже."
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr "Значение идентификатора группы"
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "В этой учетной записи настройки %s отключены. Чтобы включить её, вам нужно вначале добавить настройки для %s."
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Членство в группах"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Добавить параметры %s"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Учетная запись"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "Удалить параметры %s"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "Пользователь должен сменить пароль при первом входе в систему"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Нажмите 'Изменить' чтобы отредактировать данные в этой форме."
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr "Пользователь должен будет изменить пароль при первом входе (нужно указать значение для \"Задержка до принудительного изменения пароля\")"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Январь"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr "Минимальная задержка между изменениями пароля (дни)"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Февраль"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Март"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr "Задержка до принудительного изменения пароля (дни)"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Апрель"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr "У пользователя насильно будет изменен пароль после указанного количества дней (оставить пустым, чтобы отключить)"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Май"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr "Дата окончания действия пароля"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Июнь"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
+msgstr "Дата после которой пароль пользователя истечет (оставить пустым что бы отключить)"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Июль"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr "Через сколько отключать пользователя (дни)"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Август"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr "Сколько подождать до отключения пользователя, после истечения пароля (оставить пустым, чтобы отключить)"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Сентябрь"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr "За сколько предупреждать об окончании действия пароля (дни)"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Октябрь"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr "Предупреждать пользователя об окончании действия его пароля за указанное количество дней (оставить пустым, чтобы отключить)"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Ноябрь"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Системные доверия"
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Декабрь"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Режим доверия"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Воскресенье"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr "Тип авторизации для этих хостов"
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Понедельник"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "отключен"
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Вторник"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "полный доступ"
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Среда"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "разрешить доступ только на эти хосты"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Четверг"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Пользователю разрешено подключаться только к хостам из списка"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Пятница"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "автоматически"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Суббота"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "Истек"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "Сбой при выполнении операции в базе данных!"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "операция чтения"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "активный"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "операция добавления"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "срок действия параля истек"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "операция изменения"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "Пароль не изменяем"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "операция удаления"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "операция поиска"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "аутентификация"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Время ожидания блокировки истекло. Игнорирование блокировки!"
 
-#: include/class_msgPool.inc:708
+#: plugins/personal/posix/class_posixAccount.inc:538
 #, php-format
-msgid "LDAP %s failed!"
-msgstr ""
+msgid "Group of user %s"
+msgstr "Группа пользователя %s"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "Сбой при выполнении операции в LDAP!"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr "Группы и роли"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "Сбой при загрузке!"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Сбой при загрузке: %s"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr "Принадлежит группам"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr ""
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr "Принадлежит ролям"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Парольный метод"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "'%s' по-прежнему используется этим объектом: %s"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Применяемый метод для хэша пароля"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "'%s' по-прежнему используется."
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Пароль"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "'%s' по-прежнему используется этими объектами: %s"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Пароль (Оставьте пустым, если не хотите его менять)"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Файл '%s' не существует!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Пароль еще раз"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Не могу открыть файл '%s' для чтения!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Не могу открыть файл '%s' для записи!"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Пользователь"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "Значение для '%s' до сих пор не настроено или неверно, пожалуйста проверьте ваш конфигурационный файл!"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr "Информация об учетной записи пользователя"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Не могу удалить файл '%s'!"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr "Учетная запись пользователя"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "Не могу создать папку '%s'!"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Личная информация"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "Не могу удалить папку '%s'!"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Фамилия"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Проверка поддержки %s"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr "Фамилия пользователя"
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Установите и активируйте %s PHP модуль."
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Имя"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr "Установите и активируйте %s Pear модуль."
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr "Имя пользователя"
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "Не могу инициализировать класс '%s'! Может быть какой то плагин пропущен в настройках FusionDirectory?"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr "Краткое описание пользователя"
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr "Фотография"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr "Аватар пользователя"
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
-msgstr "Критическая ошибка: не могу создать экземпляр класса '%s' - попробуйте запустить '%s' чтобы исправить это"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr "Рабочая контактная информация"
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Фатальная ошибка"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Местоположение"
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
-msgstr "FATAL: Ошибка при подключении к LDAP. Сервер сообщил '%s'."
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Адм. единица"
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
-msgstr "Логин (uid) не уникальный внутри LDAP дерева! Пожалуйста свяжитесь с вашим администратором."
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Адрес"
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Ошибка аутентификации"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr "Рабочий почтовый адрес"
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Номер комнаты"
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Ошибка при добавлении блокировки. Свяжитесь с разработчиками!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Номер комнаты"
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
-msgstr "Невозможно создать информацию о блокировки в LDAP дереве. Пожалуйста свяжитесь с вашим администратором!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Телефон"
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "LDAP сервер вернул: %s"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr "Рабочий номер телефона"
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
-msgstr "Найдены множественные блокировки для заблокированного объекта. Это не должно было случиться - очистите их."
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Мобильный"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Найдено более %d объектов."
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr "Рабочий номер мобильного телефона"
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
-msgstr "Установить новое значение лимита в %s и показать мне это сообщение если лимит будет исчерпан."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Пейджер"
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Настроить"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr "Рабочий номер пейджера"
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "не полный"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Факс"
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Продолжить в любом случае"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr "Рабочий номер факса"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Редактировать в любом случае"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Домашняя страница"
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr "Вы собираетесь редактировать LDAP запись/записи %s"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr "Персональная домашняя страница"
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Записей на странице"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr "Информация об учетной записи"
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Применить фильтр"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr "Логин этого пользователя"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr "%sB"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr "Пароль пользователя"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr "%sKiB"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr "Личная контактная информация"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr "%sMiB"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "Отображаемое имя"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
-msgstr "%sGiB"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
-msgstr "%sTiB"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr "Домашний адрес"
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
-msgstr "%sPiB"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Домашний почтовый адрес"
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
-msgstr "%sEiB"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Личный телефон"
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
-msgstr "%sZiB"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Домашний телефон"
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
-msgstr "%sYiB"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Информация об организации"
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЫЭЮЯ0123456789"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "Заголовок"
 
-#: include/functions.inc:2294
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
-msgstr "Файл '%s' не может быть удален. Попробуйте fusiondirectory-setup --check-directories чтобы исправить права."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "Не могу записать файл проверки!"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Организация"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "Не могу прочитать файл проверки!"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Подразделение"
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Предупреждение LDAP"
-
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr "Не могу получить информацию о схемах с сервера. Проверить схемы невозможно!"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Номер подразделения"
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Номер отдела"
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Номер работника"
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Номер работника"
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Форма трудоустройства"
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Руководитель"
 
-#: include/functions.inc:2644
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "Missing required object class \"%s\"!"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr "Вам не разрешено изменять свой пароль"
 
-#: include/functions.inc:2650
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "Class(es) available"
-msgstr "Доступные класс(ы)"
+msgid "You must wait %d seconds before changing your password again"
+msgstr "Вы должны подождать %d секунд перед повторным изменением пароля"
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr "Пароль присутствует в истории старых паролей"
+
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2669
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Для продолжения укажите свой текущий пароль."
+
+#: plugins/personal/generic/class_user.inc:653
 msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Новый пароль"
+
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Новый и текущий пароли слишком похожи."
+
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Новый пароль слишком короткий."
+
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "Пароль содержит символы Unicode, которые могут проблемы!"
+
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr "Статистика о пользователях"
+
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
+msgstr "Статистика по пользователям"
+
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
+msgstr "Статистика по группам"
+
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
+msgstr "Просроченные учетные записи"
+
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
+msgstr "Информационная панель"
+
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr "Статистика и различная информация"
+
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
+msgstr "Отчеты"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
-msgstr ""
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr "Статистика"
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "Не могу выделить свободный ID:"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Восстановление пароля"
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr " неизвестный idAllocation метод!"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Настройки для функции восстановления пароля"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Настройки восстановления пароля"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "sambaUnixIdPool не уникальна!"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Включить восстановление пароля"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "нет доступных ID!"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
+msgstr "Включить или нет функцию восстановления пароля"
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "Превышено максимальное число попыток!"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Адрес электронной почты отправителя"
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Не могу выделить свободный ID!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "Адрес электронной почты с которого будут отправляться письма"
 
-#: include/functions.inc:3345
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr "Не могу обнаружить файл '%s' - пожалуйста запустите '%s', чтобы исправить это."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Ссылка действительна (минуты)"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "Запрашиваемый канал не существует! Пожалуйста свяжитесь с вашим системным администратором."
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr "Количество минут до истечения срока годности ссылки для восстановление "
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr "Соль для токенов"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Название шаблона"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Просто мера безопасности, вы можете вставить сюда все что угодно, даже случайные символы"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Все объекты в этой категории"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Разрешить исользование альтернативных адресов"
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Файл"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Пользователям также нужно ввести один из их дополнительных адресов для восстановления пароля"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Строка"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "Первое письмо"
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "Ошибка PHP"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Тема"
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Тема первого письма"
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Ссылка для восстановления пароля"
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr "Тело (вначале логин %s, вторая ссылка)"
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr "Тело первого письма, отправляется когда пользователь запрашивает новый пароль. Использует %s логин и ссылку для восстановления."
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Привет,\n\nЗдесь ваша информация:\n - Логин: %s\n - Ссылка: %s\n\nЭта ссылка будет работать только 10 минут."
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Тип"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Второе письмо"
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Аргументы"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Тема второго письма"
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "Создание этой страницы помогла PHP интерпретатору выявить некоторые ошибки!"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Пароль восстановлен успешно"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Послать отчет об ошибке команде FusionDirectory"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr "Тело (%s логин)"
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Отправить отчет об ошибке"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr "Тело второго письма, отправляется, чтобы подтвердить, что пароль был  изменен. Использует %s логин пользователя."
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Привет,\n\nВаш пароль был изменен.\nВаш логин по прежнему %s."
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Пожалуйста исправьте ошибку выше и обновите страницу."
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Настройки"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr "Настройки FusionDirectory"
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Дата"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Внешний вид"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Язык"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
-msgstr ""
+#: 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 "Язык приложения. Если 'автоматически' или отсутствует, тогда будет спрошено у браузера какой использовать. Эта настройка может быть переопределена каждым пользователем."
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Тема"
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr "Тема, которая будет использоваться"
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Часовой пояс"
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr "Часовой пояс, который будет использован"
+
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr "Настройка схемы"
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Страница"
-
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr "Включить проверку схемы при входе."
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "Невозможно экспортировать в PDF: не установлена библиотека FPDF."
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Настройки пароля"
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr "Метод хеширования пароля по умолчанию"
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "в"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr "Используемый по умолчанию метод хеширования пароля"
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "на строке"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr "Заставлять использовать хеш по умолчанию"
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "Ошибка XML"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr "Принуждать использовать метод хеширования пароля по умолчанию"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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 ""
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Минимальная длина пароля"
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr "Минимальная длинна пароля пользователя"
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
-msgstr "Вкладка \"%s\""
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr "Минимальная разница в паролях"
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Отменить все"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr "Минимальное количество отличных символов от последнего пароля"
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Не могу вставить"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Использовать учетные записи с истекающим сроком действия"
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
-msgstr "Это название шаблона"
-
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Ошибка при сохранении"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
+msgstr "Основные настройки"
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "Уже есть запись с таким dn: %s"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Показать краткую информацию о списках"
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "Запись %s не существует"
+#: plugins/config/class_configInLdap.inc:162
+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 "Определяет, будет ли внизу каждого списка отображена строка состояния с краткой информацией о типе и количестве элементов списка."
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
-msgstr "Неизвестное поле \"%s\""
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr "Блокировка редактирования"
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Пожалуйста выберете нужные записи"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr "Проверьте, не была ли редактируемая вами запись изменена вне FusionDirectory в это же время."
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
-msgstr "шаблон %s "
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr "Включить логирование"
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
-msgstr "Показать %s"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr "Регистрация событий на стороне FusionDirectory"
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
-msgstr "POSIX группа %s"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr "Ограничение размера LDAP"
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
-msgstr "Роль %s"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr "Определяет количество записей, которые можно получить из LDAP по умолчанию."
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
-msgstr "Группа %s"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Вход в систему и сессии"
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Группа пользователя"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Атрибут для входа"
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
+msgstr "Какой LDAP атрибут необходимо использовать в качестве логина при входе в систему."
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Неизвестно"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Принудительно шифровать соединения"
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr "B"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
+msgstr "Принудительно использовать шифрованный доступ (https) к веб интерфейсу, включив проверку безопасности PHP."
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
-msgstr "KiB"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Предупреждать если сеанс не зашифрован"
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
-msgstr "MiB"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr "будут отображаться предупреждения для пользователя, когда http будет использоваться вместо https."
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
-msgstr "GiB"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Время жизни сессии"
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
-msgstr "TiB"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "секунды"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
-msgstr "минуты"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "часы"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "дни"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (обязательный)"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "Целое число от %d до %d"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Включить снапшоты"
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "Целое число больше %d"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr "Это позволяет сохранять определенное состояние записей и позже его восстанавливать."
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "Целое число меньше %d"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Базовая запись снапшотов"
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Вещественное число от %f до %f"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr "Базовая запись, где снапшоты должны будут храниться внутри LDAP."
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr "Вещественно число больше %f"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
+msgstr "SSL"
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
-msgstr "Вещественное число меньше %f"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "Не могу прочесть загруженный файл: %s"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "файл пустой"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "файл не найден"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
+msgstr "Путь к сертификату CA"
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "файл не читаем"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
-msgstr "%s (%d байт)"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
+msgstr "CAS"
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Загрузить"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
+msgstr "Включить CAS"
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Скачать"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Ветка"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Хост"
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
-msgstr "Неверное значение для %s"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Порт"
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "Процесс удаления был отменен плагином '%s': %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
-msgstr "Не удалось переместить из \"%s\" в \"%s\""
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Местоположение пользователей и групп"
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
-msgstr "Настройка часового пояса '%s' в вашей конфигурации не правильная."
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "DN атрибут пользователя"
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "Доступ"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr "Атрибут используемый у пользователей в начале dn"
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Управление списками контроля доступа (ACL)"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
-msgstr "Неизвестный тип ACL '%s'!\nВозможно вам нужно запустить \"fusiondirectory-setup --migrate-acls\", чтобы перенести ваши acls в новый формат."
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
+msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Неизвестная запись '%s'!"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr "Политика строго присваивания имен"
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Все пользователи"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr "Включить строгую проверку имен для пользователей и групп"
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "Не могу изменить пароль, неизвестный пользователь '%s'"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr "Минимальный id групп/пользователей"
 
-#: include/password-methods/class_password-methods-sasl.inc:85
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
+msgstr "Наименьший идентификатор пользователя или группы, который может быть назначен, чтобы избежать дыры в безопасности с идентификатором учетной записи равным 0."
+
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
-msgstr "Были проблемы при распаковке данных снапшота"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
+msgstr "Скрипт, который будет вызваться при нахождении следующего свободного номера id для пользователей иил групп."
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Не удалось войти: %s"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
+msgstr "Начальное значение для id пользователя"
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr "Откуда начинать смотреть значение для нового свободного id пользователя."
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "Указанный объектный тип пустой или неверный!"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
+msgstr "Начальное значение для id группы"
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr "Откуда начинать смотреть значение для нового свободного id группы."
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
+msgstr " RDN пользователей"
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
-msgstr "Не прочесть конфигурацию FusionDirectory %s/%s. Чтобы исправить это пожалуйста запустите  fusiondirectory-setup --check-config."
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
+msgstr "Ветка где пользователели хранятся."
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Ошибка Smarty"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
+msgstr "RDN групп"
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr "Ветка в которой хранятся группы."
+
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
+msgstr "RDN для ACL ролей"
+
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
+msgstr "Ветка в которой хранятся ACL ролей."
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Время вашей сессии истекло!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Метод выделения id"
 
-#: html/index.php:211
-msgid "Your IP has changed!"
-msgstr "Ваш IP адрес изменен!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
+msgstr "Метод выделения идентификаторов для пользователей и групп"
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Традиционный"
 
-#: html/index.php:217
-msgid "No session found!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr "Пул id для samba и unix"
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
-msgstr "Проверка схемы LDAP сообщает об ошибке:"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
+msgstr "Минимальное значение id пользователей в пуле"
 
-#: html/index.php:255
-msgid "LDAP schema error"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
+msgstr "Минимальное значение для id пользователя, при использовании пул метода"
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Введите корректное имя пользователя!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
+msgstr "Максимальное значение id пользователя в пуле"
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Введите свой пароль!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr "Максимальное значение для id пользователя, при использовании пул метода"
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Проверьте, правильно ли вы ввели имя пользователя и пароль."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr "Минимальное значение id группы в пуле"
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Учетная запись заблокирована. Пожалуйста свяжитесь с вашим системным администратором."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr "Минимальное значение для id группы, при использовании пул метода"
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
+msgstr "Максимальное значение id группы в пуле"
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
+msgstr "Максимальное значение для id группы, при использовании пул метода"
+
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
-msgstr "CAS пользователь \"%s\" не может быть найден в LDAP"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Отладка"
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
-msgstr "CAS пользователь \"%s\" соответствует нескольким пользователям в LDAP"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr "Отображение ошибок"
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:387
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "В вашем браузере отключены куки. Пожалуйста включите их и обновите эту страницу перед входом в систему! "
+"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 "Показывать PHP ошибки в верхней части экрана. Следует отключить при рабочем использовании, потому что там могут быть отображены пароли."
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Настройки PHP"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Максимальное время LDAP запроса"
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Критическая ошибка: Register globals is on. FusionDirectory не позволит залогиниться до тех пор пока это не будет исправлено администратором."
-
-#: html/main.php:142
-msgid "Password change"
-msgstr "Изменить пароль"
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr "Остановить работу с LDAP если нет ответа за определенное количество секунд."
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Срок действия вашего пароля почти закончился, пожалуйста измените его!"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Лог статистики обращений к LDAP"
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
-msgstr "Ваш пароль истек, пожалуйста установите новый."
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr "Отслеживать продолжительность обращений к LDAP в syslog. Это может помочь найти проблемы в индексировании и плохих фильтров поиска."
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Уровень отладки"
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr "Отображать следующую информацию при каждой загрузке странице."
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Плагин"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Разное"
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr "вкладка"
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Критическая ошибка: не все POST переменные переданы в PHP - пожалуйста сообщите вашему системному администратору!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "Конфигурация FusionDirectory %s/%s не читаема. Прервано."
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "Режим"
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr "Когда вызывать эту команду"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
-msgstr "Не найден аккаунт с логином \"%s\""
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr "cmd"
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
-msgstr "Найдено множество учетных записей с логином \"%s\""
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr "Команда, которая будет вызвана"
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Адрес электронной почты"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Хуки"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr "Доступные оболочки"
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Свяжитесь с вашим системным администратором, были проблемы с почтовым сервером"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr "Доступные POSIX шеллы для пользователей FD"
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr "Показать вкладку ACL для всех объектов."
+
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
-msgstr "Были проблемы с почтовым сервером, имэйл подтверждения не отправлены"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
+msgstr "Доступные категории подразделений"
+
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
+msgstr "Доступные категории подразделений в раскрывающемся списке"
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr ""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Плагины"
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
-msgstr ""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr "Настройки плагинов"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Местоположение"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr "Настройки плагинов"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr "FusionDirectory настройка плагинов"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "URI подключения"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Объединения"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "TLS соединение"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
+msgstr "Ветка в которой объекты групп будут храниться"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Аутентификация"
-
-#: setup/class_setupStep_Ldap.inc:59
+#: plugins/config/class_mainPluginsConfig.inc:55
 msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "DN администратора"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr "Настройка информационной панели"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Пароль администратора"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr "Настройка плагина информационной панели FusionDirectory"
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
-msgstr ""
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr "Название схемы для информационной панели"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Текущее состояние"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr "Количество цифр"
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
-msgstr ""
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr "Количество цифр используемых после префикса"
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Настройки LDAP"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr "Префиксы"
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Настройки LDAP соединения"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
+msgstr "Префексы, которые будут использоваться для идентификаторов компьютеров"
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Этот диалог выполняет основную настройку LDAP соединения для FusionDirectory."
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
+msgstr "Информационная панель - пользователи с истекшим сроком действия"
 
-#: setup/class_setupStep_Ldap.inc:166
-#, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "Сбой при анонимном привязывании к серверу '%s'!"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr "Количество дней"
 
-#: setup/class_setupStep_Ldap.inc:168
-#, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Сбой при привязки под пользователем '%s'!"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "Повторить"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Подразделения"
 
-#: setup/class_setupStep_Ldap.inc:174
-#, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "Анонимное подключение (bind) а к серверу '%s' удалась."
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "отдел"
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Обновить"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Свойства"
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Пожалуйста укажите пользователя и пароль!"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
+msgstr "Название %s"
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "Привязка под пользователем '%s' к серверу '%s' удалась!"
+msgid "A name for this %s"
+msgstr "Название для %s"
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
-msgstr ""
+msgid "Short description of this %s"
+msgstr "Короткое описание для %s"
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Добро пожаловать"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Категория"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Готово"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
+msgstr "Категория для %s"
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Завершение - запишите конфигурационный файл"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr "Сайт"
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Запись конфигурационного файла"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
+msgstr "Сайт %s"
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Конфигурационный файл доступе только для чтения. Пожалуйста обновите права на файл."
+#: plugins/admin/departments/class_department.inc:84
+#, php-format
+msgid "Manager of this %s"
+msgstr "Руководитель этого %s"
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Конфигурационный файл не читается или не существует вовсе."
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Страна"
 
-#: setup/class_setupStep_Finish.inc:96
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "После скачивания и размещения файла в %s, убедитесь что пользователь из под которого запущен веб-сервера может читать %s, в то время как другие пользователи не должны."
+msgid "A postal address for this %s"
+msgstr "Почтовый адрес для %s"
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Перемещение"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr "Номер телефона"
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr ""
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr "Номер факса"
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Инспекция LDAP"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr "организации"
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Анализ вашего текущего LDAP для совместимости с FusionDirectory"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Домен"
+
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
+msgstr "домен"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
-msgstr "Дать полные права на пользователей в выбранной ветке"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Управление подразделениями"
 
-#: setup/class_setupStep_Migrate.inc:239
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr "Управление подразделениями, странами, доменными компонентами, доменами, местоположениями и организационными удиницами"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
-msgstr ""
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
+msgstr "Пользователи и группы"
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr ""
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Доменный компонент"
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Проверка прав для LDAP базы"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr "доменный компонент"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Проверка на невидимых пользователей"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Местоположение"
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Проверка для супер администратора"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
+msgstr "Местоположения"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
-msgstr ""
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Список подразделений"
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Проверка на пользователей за пределами дерева людей"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr "страна"
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Проверка на группы за пределами дерева для них"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Управление пользователями"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Проверка на невидимые подразделения"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
+msgstr "Управление аккаунтами пользователей и их свойствами"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Блокировка учётной записи"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
+msgstr "Парольный метод \"%s\" не поддерживает блокирование. Аккаунт \"%s\" не будет заблокирован!"
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "LDAP запрос не удался"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "Разблокировать акаунт"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "Заблокировать акаунт"
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Ошибка"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Список пользователей"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "Пропущен объектный класс FusionDirectory '%s'!"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Фамилия"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Пожалуйста проверьте вашу установку."
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Имя"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr ""
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Заблокировать пользователей"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr ""
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Разблокировать пользователей"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
-msgstr ""
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Применить шаблон"
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "Найден пользователь(и) %s, которые будут не видны в FusionDirectory или которые не полные."
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Новый пользователь из шаблона"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr ""
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Редактировать пользователя"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Ошибка перемещения"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
-msgstr ""
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Удалить пользователя"
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
-msgstr "Найдена учетная запись администратора FD 1.0.7: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Роль"
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
-msgstr "Найдена административная группа FD 1.0.7: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
+msgstr "Информация о роли"
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
+msgstr "Организационная роль"
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
-msgstr "Нет рабочей учетной записи администратора FusionDirectory 1.0.8 в вашем LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
+msgstr "Информация"
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Группы"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
+msgstr "Название этой группы"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "Нет учетной записи администратора FusionDirectory в вашем LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
+msgstr "Описание роли"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Телефон"
+
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Факс"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
-msgstr "ACL ролей по умолчанию не вставлены"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr "Добавить пользователей для роли"
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
-msgstr "Некоторые ACL ролей по умолчанию пропущены"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
+msgstr "Управление группами и ролями"
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
-msgstr "ACL ролей по умолчанию вставлен"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
+msgstr "Управление объектами группы, POSIX группы и роли"
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
+msgstr "Редактировать свойства роли"
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Переместить пользователей в настроенное дерево пользователей"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Редактировать posix свойства"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
+msgstr "Показать группы пользователей"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Показать основные группы"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
+msgstr "Показать организационные роли"
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Следующие ссылки будут обновлены"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
+msgstr "Показать группы приложений"
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Найдены группы %s, выходящие за пределы настроенного дерева '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
+msgstr "Показать неопознанные группы"
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Показывать группы mail"
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Найдены подразделение(я) %s, которые будет не видны в FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Показать группы samba"
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
+msgstr "Показать группы серверов"
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr "Показать группы рабочих станций"
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Настройка языка"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
+msgstr "Показать группы рабочих станций с Windows"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Этот шаг позволяет выбрать предпочитаемый вами язык."
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
+msgstr "Показать группы терминалов"
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
-msgstr "В этом месте вы можете выбрать язык по умолчанию для всего сайта. При выборе \"автоматически\" будет и использоваться язык запрошенный браузером. Эта настройка может быть переопределена для каждого пользователя."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr "Показать группы принтеров"
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Добро пожаловать в мастер настройки FusionDirectory!"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
+msgstr "Показать группы телефонов"
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Сообщение приветствия"
+#: plugins/admin/groups/class_ogroup.inc:63
+#, php-format
+msgid "Unknown type : %s"
+msgstr "Неизвестный тип: %s"
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
+msgstr "Не существующий dn: %s"
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Контроль за установкой"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Объект группы"
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Основная проверка совместимости PHP и расширений"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr "Информация об объекте группы"
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Проверка PHP версии"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Группа"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP должен быть %s версии или старше"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr "Краткое описание группы"
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Пожалуйста обновитесь до поддерживаемой версии."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Включаемые объекты"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory требуется модуль для связи с вашим LDAP сервером."
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr "Объекты, члены этой группы"
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory требуется модуль для интернационализации интерфейса."
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr "Позволить подключаться этой группе только к хостам из списка"
 
-#: setup/class_setupStep_Checks.inc:92
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirectory требуется этот модуль для взаимодействия с различными типами серверов и протоколов."
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory требуется модуль для интеграции с samba."
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Список групп"
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory требуется один из модулей 'mhash или 'sha1', чтобы использовать SSHA шифрование."
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr "Информация об POSIX группе"
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory требуется модуль для связи с IMAP сервером."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr "POSIX группа"
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory требуется модуль для обработки юникод строк."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Указать GID вручную"
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr "Указать значение GID для группы"
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory требуется расширение для обработки изображений."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr "GID значение для этой группы"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "модуль сжатия"
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Члены группы"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory требуется расширение для обработки снапшотов."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "register_globals механизм PHP, предоставляющий доступ ко всем глобальным переменным из скриптов без изменения области видимости. Это не безопасно."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Найдите 'register_globals' в вашем php.ini и переключите в 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr "Dn"
+
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "Это значение используется PHP сборщиком мусора, чтобы удалять старые сессии."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr "Назначения ACL"
+
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Найдите 'session.gc_maxlifetime' в вашем php.ini и установите в 86400 или больше."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr "Управление назначением ACL ролей пользователям"
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Выкл"
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "Назначение ACL"
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "Чтобы во время использования FusionDirectory не возникло ни каких проблем, опция 'session.auto_start' должна быть установлена в 'Off' в вашем php.ini."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Найдите 'session.auto_start' в вашем php.ini и установите его в 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr "Диалог назначения ролей управления доступом"
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
-msgstr "FusionDirectory нужно не меньше 128МБ памяти. Настройка этого предела ниже может привести к ошибкам, которые не воспроизводятся! Увеличьте его в большинстве случаев."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "Режим"
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
-msgstr "Найдите 'memory_limit' в вашем php.ini и установите его в '128M' или больше."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr "Применить это действие ко всему поддереву или только к его основе?"
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr "Subtree"
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Найдите 'implicit_flush' в вашем php.ini и установите его в 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr "Только к основе"
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "Время исполнения, должно быть не менее 30 секунд."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr "Применить роль"
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Найдите 'max_execution_time' в вашем php.ini и установите его в значение '30' или больше."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr "Для всех пользователей"
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Повысить безопасность сервера установив опцию expose_php в 'off'. PHP не будет отправлять ни какую информацию о сервере, запускающему, в этом случае."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr "Применить этот ACL для всех пользователй LDAP"
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Найдите 'expose_php' в вашем php.ini и установите в 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Члены"
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Повысите производительность вашего сервер установив setting magic_quotes_gpc в 'off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr "Пользователи или группы, которым будет назначена эта роль."
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Найдите 'zend.ze1_compatibility_mode' в вашем php.ini и установите в 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr "Назначение  ACL"
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Ошибка настройки"
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
+msgstr "Назначения ролей управления доступом"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Завершено"
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr "Назначения"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Далее"
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr "Назначенные роли ACL для этой корневой записи"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "Команда FusionDirectory"
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr "Назначения на объекты или поддеревья %s"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Нет ACL настроек для этой категории"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL для объектов: %s"
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Данный объект не имеет ссылок на другие объекты"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Редактировать категорию ACL"
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Фильтр"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Сбросить категорию ACL"
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Показать шаблоны"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Список доступных ACL категорий"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Показывать функциональных пользователей"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Все объекты в текущем поддереве"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "Показывать пользователей POSIX"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
+msgstr "Редактировать ACL для \"%s\""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Показать пользователей Почты"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "чтение"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Показывать пользователей Samba"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "запись"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Показать/скрыть дополнительные настройки"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Создать объекты"
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Нажмите 'Удалить', чтобы продолжить или 'Отменить', чтобы прервать."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Переместить объекты"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Удалить объекты"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr "Нет учетных записей с истекшим сроком действия"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Наделить правами доступа владельца"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Объект целиком"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
-msgstr "uid"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
+msgstr "Управление ACL ролей"
+
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
+msgstr "Управление ACL ролей"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Содержит настройки для этих объектов: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Роли контроля доступа"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "ACL роли"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
+msgstr "Имя роли"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
+msgstr "Короткое описание для этой роли"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
+msgstr "ACLs"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr "В ближайшие %1 дней нет учетной записи, срок работы которой истечет."
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
+msgstr "ACLs, которые являются частью этой группы"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr "Следующая просроченная учетная запись"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "FusionDirectory НЕ сможет продолжить работу без исправления этой ошибки."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] "Есть %1 группа:"
-msgstr[1] "Есть %1 группы:"
-msgstr[2] "Есть %1 групп:"
-msgstr[3] "Есть %1 групп:"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory сможет продолжить работу без исправления этой ошибки."
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] "У одной из них %1 группа"
-msgstr[1] "У %2 из них %1 группа"
-msgstr[2] "У %2 из них %1 группа"
-msgstr[3] "У %2 из них %1 группа"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Создать новую учетную запись администратора FusionDirectory"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr "Ни у кого нету %1 группы"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Этот диалог автоматически добавит нового суперадминистратора в ваше дерево LDAP,"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] "Есть %1 пользователь:"
-msgstr[1] "Есть %1 пользователя:"
-msgstr[2] "Есть %1 пользователей:"
-msgstr[3] "Есть %1 пользователей:"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Идентификатор пользователя"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] "У одного из них есть %1 аккаунт"
-msgstr[1] "У %2 из них есть %1 аккаунт"
-msgstr[2] "У %2 из них есть %1 аккаунт"
-msgstr[3] "У %2 из них есть %1 аккаунт"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Пароль (еще раз)"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr "Ни у одногр из них нету %1 аккаунта"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Похоже, что вы запустили FusionDirectory впервые, поскольку мы не смогли найти ни одной конфигурации. Этот простой мастер поможет вам в настройке."
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] "Один из них заблокирован"
-msgstr[1] "%1 из них заблокированы"
-msgstr[2] "%1 из них заблокированы"
-msgstr[3] "%1 из них заблокированы"
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "Что мастер делает?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr "Ни один из них не заблокирован"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Создает базовую конфигурацию для одного узла"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Вы успешно сменили свой пароль. Не забудьте изменить нужные настройки использующих его программ."
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Пробую найти проблемы с настройками PHP и LDAP"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Настройки пользователя"
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Позволяет вам выбрать из набора основных и расширенных переключателей конфигурации"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr ""
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Управляет переносом существующих LDAP деревьев"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Установить новый пароль"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "Что этот мастер НЕ делает?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Изображение"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Найти все возможные ошибки конфигурации"
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Фотография пользователя"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Перенести все возможные настройки LDAP - сделайте резервную копию!"
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Удалить изображение"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr "Для продолжения:"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "У вас недостаточно прав, чтобы изменить пароль."
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr "Для обеспечения безопасности установки вам нужно подтвердить подлинность, создав на сервере файл '%1', содержащий ID сессии. Для этого выполните следующую команду: "
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "Парольный метод не будет изменен!"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "По завершении нажмите кнопку \"Далее\""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Конфликт блокировок"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "После миграции"
+
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Закрыть"
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
+msgstr "Этот диалог позволяет переместить несколько записей в дереве конфигурации. Эти действия могут привести в порядок ваш LDAP сервер."
+
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Только для чтения"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr "Переместить выделенные записи внутрь дерева"
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
-msgstr "Создание нового объекта используя шаблоны"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
+msgstr "Перечисленные записи сейчас не видны в интерфейсе FusionDirectory. Если вы хотите изменить это только для нескольких записей, просто выделите их и используйте кнопку 'Переместить' ниже."
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Продолжить"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Если вы хотите знать, что будет сделано при переселении выбранных записей, воспользуйтесь кнопкой 'Показать изменения', чтобы посмотреть на LDIF."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Показать изменения"
+
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "Ограничение на количество возвращаемых объектов позволяет ускорить операции поиска и предохраняет сервер LDAP от большой нагрузки. Простейший способ снизить время обработки запроса при обслуживаии большой базы данных это установить минимальное значение. Кроме того, будет очень полезно использовать фильтры для просмотра только ограниченного количества объектов."
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Во время осмотра LDAP мы собираемся проанализировать некоторые типичные ошибки, возникающие в процессе переноса FusionDirectory LDAP администратором. Вы можете исправить найденные проблемы, чтобы обеспечить стабильную работу служб."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Выберите тип реакции для данной сессии"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Проверить снова"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "игнорировать ошибку и показать все найденые объекты"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Создайте конфигурационный файл"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Установить"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Скачать конфигурацию"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Состояние:"
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Фильтр"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4949,17 +4844,6 @@ msgid ""
 "contact your administrator"
 msgstr "Функция восстановления пароля не активирована. Если вы потеряли пароль, обратитесь к системному администратору."
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Итак - если вы уверены - нажмите 'Удалить', чтобы продолжить или 'Отмена' чтобы прервать."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Окно входа"
@@ -4987,26 +4871,141 @@ msgstr "Войти"
 msgid "Click here to log in"
 msgstr "Нажмите на эту кнопку, чтобы войти в систему"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "Ограничение на количество возвращаемых объектов позволяет ускорить операции поиска и предохраняет сервер LDAP от большой нагрузки. Простейший способ снизить время обработки запроса при обслуживаии большой базы данных это установить минимальное значение. Кроме того, будет очень полезно использовать фильтры для просмотра только ограниченного количества объектов."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Выберите тип реакции для данной сессии"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "игнорировать ошибку и показать все найденые объекты"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Установить"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr "Предупреждение: вы собираетесь удалить следующие объекты"
+
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Итак - если вы уверены - нажмите 'Удалить', чтобы продолжить или 'Отмена' чтобы прервать."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Начало"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Выход"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Пользователь:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "Сессия закончится через %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Продолжить"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Конфликт блокировок"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Только для чтения"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Мастер копирования"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "Помните, что некоторые свойства, такие как сделанные снапшоты, не будут скопированы"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "Если вы скопируете или вырежете запись с помощью FusionDirectory и удалите исходный объект, вы можете получить ошибки при вставке этого объекта снова!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Операция выполнена"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr "Создание нового объекта используя шаблоны"
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Информация"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "Назначенный ACL для текущей записи"
@@ -5051,211 +5050,211 @@ msgstr "ACL для этого объекта"
 msgid "Available roles"
 msgstr "Доступные роли"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr "Предупреждение: вы собираетесь удалить следующие объекты"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Мастер копирования"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "Команда FusionDirectory"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "Помните, что некоторые свойства, такие как сделанные снапшоты, не будут скопированы"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "Если вы скопируете или вырежете запись с помощью FusionDirectory и удалите исходный объект, вы можете получить ошибки при вставке этого объекта снова!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Операция выполнена"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Информация"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Начало"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Данный объект не имеет ссылок на другие объекты"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Выход"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Настройки пользователя"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Пользователь:"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "Сессия закончится через %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Установить новый пароль"
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Изображение"
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Фотография пользователя"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "После миграции"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Удалить изображение"
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Закрыть"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "У вас недостаточно прав, чтобы изменить пароль."
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Создайте конфигурационный файл"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "Парольный метод не будет изменен!"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Вы успешно сменили свой пароль. Не забудьте изменить нужные настройки использующих его программ."
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Скачать конфигурацию"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] "Есть %1 группа:"
+msgstr[1] "Есть %1 группы:"
+msgstr[2] "Есть %1 групп:"
+msgstr[3] "Есть %1 групп:"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Состояние:"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] "У одной из них %1 группа"
+msgstr[1] "У %2 из них %1 группа"
+msgstr[2] "У %2 из них %1 группа"
+msgstr[3] "У %2 из них %1 группа"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Создать новую учетную запись администратора FusionDirectory"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr "Ни у кого нету %1 группы"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Этот диалог автоматически добавит нового суперадминистратора в ваше дерево LDAP,"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] "Есть %1 пользователь:"
+msgstr[1] "Есть %1 пользователя:"
+msgstr[2] "Есть %1 пользователей:"
+msgstr[3] "Есть %1 пользователей:"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Идентификатор пользователя"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] "У одного из них есть %1 аккаунт"
+msgstr[1] "У %2 из них есть %1 аккаунт"
+msgstr[2] "У %2 из них есть %1 аккаунт"
+msgstr[3] "У %2 из них есть %1 аккаунт"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Пароль (еще раз)"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr "Ни у одногр из них нету %1 аккаунта"
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Похоже, что вы запустили FusionDirectory впервые, поскольку мы не смогли найти ни одной конфигурации. Этот простой мастер поможет вам в настройке."
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] "Один из них заблокирован"
+msgstr[1] "%1 из них заблокированы"
+msgstr[2] "%1 из них заблокированы"
+msgstr[3] "%1 из них заблокированы"
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "Что мастер делает?"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr "Ни один из них не заблокирован"
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Создает базовую конфигурацию для одного узла"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Пробую найти проблемы с настройками PHP и LDAP"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr "Нет учетных записей с истекшим сроком действия"
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Позволяет вам выбрать из набора основных и расширенных переключателей конфигурации"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Управляет переносом существующих LDAP деревьев"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
+msgstr "uid"
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "Что этот мастер НЕ делает?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr "cn"
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Найти все возможные ошибки конфигурации"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Перенести все возможные настройки LDAP - сделайте резервную копию!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
-msgstr "Для продолжения:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr "Для обеспечения безопасности установки вам нужно подтвердить подлинность, создав на сервере файл '%1', содержащий ID сессии. Для этого выполните следующую команду: "
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "По завершении нажмите кнопку \"Далее\""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "FusionDirectory НЕ сможет продолжить работу без исправления этой ошибки."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
+msgstr "В ближайшие %1 дней нет учетной записи, срок работы которой истечет."
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory сможет продолжить работу без исправления этой ошибки."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
+msgstr "Следующая просроченная учетная запись"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
-msgstr "Этот диалог позволяет переместить несколько записей в дереве конфигурации. Эти действия могут привести в порядок ваш LDAP сервер."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Показать шаблоны"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
-msgstr ""
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Показывать функциональных пользователей"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
-msgstr "Переместить выделенные записи внутрь дерева"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "Показывать пользователей POSIX"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
-msgstr "Перечисленные записи сейчас не видны в интерфейсе FusionDirectory. Если вы хотите изменить это только для нескольких записей, просто выделите их и используйте кнопку 'Переместить' ниже."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Показать пользователей Почты"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Если вы хотите знать, что будет сделано при переселении выбранных записей, воспользуйтесь кнопкой 'Показать изменения', чтобы посмотреть на LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Показывать пользователей Samba"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Показать изменения"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Во время осмотра LDAP мы собираемся проанализировать некоторые типичные ошибки, возникающие в процессе переноса FusionDirectory LDAP администратором. Вы можете исправить найденные проблемы, чтобы обеспечить стабильную работу служб."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Проверить снова"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Нажмите 'Удалить', чтобы продолжить или 'Отменить', чтобы прервать."
diff --git a/locale/ru@petr1708/fusiondirectory.po b/locale/ru@petr1708/fusiondirectory.po
index 62330666912781317844e2ab4d1a9f7cf916c023..f89c074e071e43d5ec346ce648055599b14b53bd 100644
--- a/locale/ru@petr1708/fusiondirectory.po
+++ b/locale/ru@petr1708/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n"
@@ -17,4862 +17,4757 @@ msgstr ""
 "Language: ru@petr1708\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
+#: setup/class_setupStep_Checks.inc:68
 #, php-format
-msgid "Non existing dn: %s"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr ""
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:84
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
-
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
-#, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid "ACL for these objects: %s"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Migrate.inc:1378
 #, php-format
-msgid "Delete"
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr ""
+
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
 #, php-format
-msgid "Assignments on object or subtree %s"
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:1132
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
+#: include/functions.inc:2641
 msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/functions.inc:2645
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_config.inc:357
 #, php-format
-msgid "Group of user %s"
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
+#: include/class_msgPool.inc:806
+#, php-format
 msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
+#: include/class_msgPool.inc:876
+#, php-format
 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:402
-msgid "Debug level"
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/php_setup.inc:132
+msgid "Type"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:1134
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:1139
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:1170
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (%s is login)"
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
+msgstr ""
+
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr ""
+
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
+#, php-format
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
+#, php-format
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
+#, php-format
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/class_plugin.inc:1322
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/class_acl.inc:118
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid ""
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/class_acl.inc:173
 #, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgid "All users"
 msgstr ""
 
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:994
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "while operating on LDAP server %s"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: html/index.php:150
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:1151
-#, php-format
-msgid "Error line %s, references to an external file are not supported"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: html/index.php:173
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:214
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:69
-#, php-format
-msgid "This '%s' object will be deleted!"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/index.php:454
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:475
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr ""
-
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:485
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:547
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:557
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/class_passwordRecovery.inc:495
+#, php-format
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/class_passwordRecovery.inc:498
+#, php-format
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:161
-#, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/main.php:290
 #, php-format
-msgid "No %s server defined!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:285
+#: html/main.php:306
 #, php-format
-msgid "The field '%s' contains a reserved keyword!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:297
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:859
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:2117
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2119
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sMiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr ""
+
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr ""
+
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:3345
+#: plugins/config/class_recoveryConfig.inc:91
 #, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
+#: 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 ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
+#: plugins/config/class_configInLdap.inc:162
 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!"
+"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 ""
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:315
+msgid ""
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/main.php:306
-#, php-format
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:463
 msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
+#: plugins/config/class_dashBoardConfig.inc:62
 msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr ""
+
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr ""
+
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr ""
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4947,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4985,72 +4869,106 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:2
-msgid "Assigned ACL for current entry"
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:5
-msgid "New ACL"
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:8
-msgid "ACL type"
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
-msgid "Select an acl type"
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:17
-msgid "Additional filter options"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:20
-msgid "Use members from"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:23
-msgid "Available members"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
-msgid "List message possible targets"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
-msgid "List message recipients"
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:44
-msgid "ACL for this object"
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:47
-msgid "Available roles"
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
 msgstr ""
 
 #: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
@@ -5074,186 +4992,267 @@ msgid ""
 "object, you may get errors while pasting this object again!"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr ""
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:2
+msgid "Assigned ACL for current entry"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:5
+msgid "New ACL"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:8
+msgid "ACL type"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
+msgid "Select an acl type"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:17
+msgid "Additional filter options"
+msgstr ""
+
+#: ihtml/themes/breezy/acl.tpl.c:20
+msgid "Use members from"
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
+#: ihtml/themes/breezy/acl.tpl.c:23
+msgid "Available members"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
+msgid "List message possible targets"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
+msgid "List message recipients"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: ihtml/themes/breezy/acl.tpl.c:44
+msgid "ACL for this object"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: ihtml/themes/breezy/acl.tpl.c:47
+msgid "Available roles"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/generic/references/contents.tpl.c:5
+msgid ""
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:2
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/sv/fusiondirectory.po b/locale/sv/fusiondirectory.po
index 8ecb14e65e1aae41f7298dce6f854fad011af5a8..1730bdaec1d519a54aa8268ead4cafa67d20f457 100644
--- a/locale/sv/fusiondirectory.po
+++ b/locale/sv/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n"
@@ -17,4850 +17,4759 @@ msgstr ""
 "Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Välkommen %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Referenser"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Roll"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Namn"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Beskrivning"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "Telefonnummer"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Föredraget språk"
 
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Fax-nummer"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Språkinställningar"
 
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Det här steget låter dig välja ditt föredragna språk."
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Grupp"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Automatiskt"
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "PHP modul- och tilläggskontroll"
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Egenskaper"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Installationskontroll"
 
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Grundläggande kontroll för PHP-kompatibilitet och tillägg"
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Tvinga GID"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Kontrollerar PHP-version"
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP måste vara version %s eller högre."
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Vänligen uppgradera till en version som stöds."
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
+msgstr "FusionDirectory kräver den här modulen för att prata med din LDAP-server"
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Gruppmedlemmar"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
+msgstr "FusionDirectory kräver den här modulen för ett internationaliserat gränssnitt."
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "System trust"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr "FusionDirecotyr kräver den här modulen för att kommunicera med olika typer av servrar och protokoll."
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Trust-läge"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr "FusionDirectory kräver den här modulen för integrationen med Samba."
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr "Auktoriseringstyp för dessa hosts"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr "FusionDirectory kräver antingen en modul för antingen 'mhash' eller 'shah' för at kunna använda SSHA-kryptering."
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "avaktiverad"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
+msgstr "FusionDirectory kräver den här modulen för att kunna prata med en IMAP-server"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "full tillgång"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "tillåt dessa hosts tillgång"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr "FusionDirectory kräver den här modulen för att hantera unicode-strängar."
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr "imagick"
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Varning"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr "FusionDirectory kräver det här tillägget för att hantera bilder."
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Timeout under väntan på låsning. Ignorerar lås!"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr "compression-modul"
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr "FusionDirectory kräver det här tillägget för att hantera ögonblicksbilder"
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "register_globals är en PHP-mekanism för att registrera alla globala variabler så de är tillgängliga från skript utan att ändra scope. Detta kan vara en säkerhetsrisk."
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Objektgrupp"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Sök efter 'register_globals' i din php.ini och ställ in den som 'Off'."
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP använder det här värdet för garage collection för att ta bort gamla sessioner"
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Medlemsobjekt"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Att ställa in det här värdet till en dag kommer att förhindra förlust av sessioner och cookies innan de verkligen når time out."
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Sök efter 'session.gc_maxlifetime' i din php.ini och sätt den till 86400 eller högre."
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Av"
+
+#: setup/class_setupStep_Checks.inc:166
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
+msgstr "För att använda FusionDirectory utan problem, bör session.auto_start i din php.ini sättas till 'Off'."
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Grupplista"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Sök efter 'session.auto_start' i din php.ini och sätt den till 'Off'."
 
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Åtgärder"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr "FusionDirectory behöver åtminstone 128MB minne. En inställning under denna gräns kan orsaka fel som inte är reproducerbara. Öka värdet för större installationer."
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Skapa"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr "Sök efter 'memory_limit' i din php.ini och ställ in den på '128M' eller högre."
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Redigera"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Den här inställningen påverkar PHPs utdata-hantering. Stäng av den för att öka prestanda."
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Ta bort"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Sök efter 'implicit_flush' i din php.ini och sätt den till 'Off'."
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "Exekveringstiden bör vara åtminstone 30 sekunder."
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Sök efter 'max_execution_time' i php.ini och sätt den till '30' eller högre."
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Öka serversäkerheten genom att sätta expose_php till 'off'. PHP kommer i så fall inte sända någon information om servern du kör på."
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Sök efter 'expose_php' i din php.ini och sätt den till 'Off'."
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Öka din serverprestanda genom att sätta magic_quotes_gpc till 'off'."
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr "Redigera posix-egenskaper"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Sök efter 'zend.ze1_compatibility_mode' i php.ini och sätt den till 'Off'."
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Välkommen"
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "Visa primära grupper"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
+msgstr "Välkommen till FusionDirectory setup wizard"
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Välkomstmeddelandet"
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Migrera"
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
-msgstr "Visa mail-grupper"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "LDAP-inspektion"
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "Visa samba-grupper"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr "Analysera nuvarande LDAP-katalog för kompatibilitet med FusionDirectory"
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
+msgstr "Inspekterar objektklasser i root-objektet"
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
+msgstr "Kontrollerar rättigheter för LDAP-databas"
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Söker efter osynliga användare"
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Söker efter superadministratör"
+
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr "Domänkomponent"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Söker efter användare utanför person-trädet"
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Söker efter grupper utanför gruppträdet"
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Avdelning"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Söker efter osynliga avdelningar"
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Avdelningar"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Söker efter dubbletter av UID-nummer"
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "LDAP-fråga misslyckades"
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Misslyckades"
+
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Short description of this %s"
-msgstr ""
+msgid "Missing FusionDirectory object class '%s'!"
+msgstr "Saknar objektklassen '%s' för FusionDirectory!"
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Kategori"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr "Vänligen kontrollera din installation."
 
-#: plugins/admin/departments/class_department.inc:76
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Category of this %s"
-msgstr ""
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
+msgstr "Kan inte hantera den strukturella objekttypen hos ditt root-objekt. Vänligen lägg till objektklassen '%s' manuellt."
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "LDAP-fel"
 
-#: plugins/admin/departments/class_department.inc:80
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "Website of this %s"
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr "Manager"
-
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:511
 #, php-format
-msgid "Manager of this %s"
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Plats"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Varning"
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Län"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
+msgstr "Hittade %s användare som inte kommer att vara synlig(a) i FusionDirectory eller som är ofullständig(a)."
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Land"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Adress"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Migreringsfel"
 
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "A postal address for this %s"
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Telefon"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Fax"
-
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr "Hantera avdelningar"
-
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Migrate.inc:862
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
-msgstr "Lokalitet"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Skapa"
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Användare"
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Grupper"
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "Domän"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
+msgstr "Det finns inget FusionDirectory-adminkonto i din LDAP-katalog."
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Avdelningslista"
-
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Organisation"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Fel"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Användarlista"
-
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "Efternamn"
-
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Förnamn"
-
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Användarnamn"
-
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Användare"
-
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Mall"
-
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
-msgstr "Lås användare"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
-msgstr "Lås upp användare"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Tillämpa mall"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
-msgstr "Ny användare från mall"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Flytta användare in i det konfigurerade användarträdet"
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "Redigera användare"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
-msgstr "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
-msgstr "Ta bort användare"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "till"
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Användare"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Följande referenser kommer att uppdateras"
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Hantera användare"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Hittade %s grupper utanför det konfigurerade trädet '%s'."
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Rättighet"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr "Hittade %s avdelning(ar) som inte kommer att vara synliga i FusionDirectory."
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
-msgstr "Kontolåsning"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1378
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr "LÃ¥s upp konto"
-
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
-msgstr "LÃ¥s konto"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Location name"
+
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Inga ACL-inställningar för denna kategori"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
+msgstr "Koppling-URI"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL för dessa objekt: %s"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Redigera kategori-ACL"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "TLS-koppling"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
-msgstr "Ta bort"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Återställ kategori-ACL"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Bas"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Lista tillgängliga ACL-kategorier"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Alla objekt i aktuellt subträd"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Autentisering"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "läs"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "Admin DN"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "skriv"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Adminlösenord"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "Objekt"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Visa/dölj avancerade inställningar"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Status"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Skapa objekt"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Nuvarande status"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Flytta objekt"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Ta bort objekt"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "LDAP-inställningar"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
-msgstr "Ge rättigheter till ägare"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "LDAP-koppling"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Komplett objekt"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
+msgstr "Den här dialogrutan utför den grundläggande konfigurationen för LDAP-kopplingen till FusionDirectory."
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "ACL-roller"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "Anonym koppling till server '%s' misslyckades!"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
+msgstr "Koppling som användare '%s' misslyckades!"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Ldap.inc:174
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Innehåller inställningar för dessa objekt: %s"
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "Anonym koppling till servern '%s' lyckades."
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Ã…tkomstkontroll-roller"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "Uppdatera"
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr "ACL-roll"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Skriv in användare och lösenord!"
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "Koppling som användare '%s' till servern '%s' lyckades!"
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Slutför"
+
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Slutför - skriv konfigurationsfil"
+
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Skriv konfigurationsfil"
+
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Din konfigurationsfil är just nu läsbar för alla användare. Vänligen uppdatera filrättigheterna!"
+
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Konfigurationen är just nu inte läsbar eller så finns den inte."
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
-msgstr ""
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
+msgstr "Efter att ha laddat ner och placerat filen under %s, vänligen säkerställ att användaren som webbservern kör med har rättigheter att läsa %s medan andra användare inte ska kunna det."
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
-msgstr ""
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Installationsfel"
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr ""
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Slutförd"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Nästa"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr ""
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Internt fel"
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Loggning misslyckades: %s"
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
-msgstr ""
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "Angiven objectType är tom eller ogiltig!"
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
-msgstr ""
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "okonfigurerad"
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr "ACL-tilldelning"
+#: include/class_management.inc:160
+msgid "Filter error"
+msgstr "Filterfel"
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
-msgstr ""
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
+msgstr "Filtret är inte komplett!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr ""
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Rättighet"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr ""
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Rättighetsfel"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
-msgstr ""
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Du har inte tillåtelse att skapa en ögonblicksbild för %s."
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr ""
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Du är inte tillåten att återskapa en ögonblicksbild för %s."
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
-msgstr ""
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
+msgstr "Ingen tab-deklaration för '%s' hittades i din konfigurationsfil. Kan inte skapa plugin-instans!"
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr ""
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Root"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr ""
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Skicka"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr ""
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Upp"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Medlemmar"
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Ner"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr ""
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Välj alla"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr ""
+#: include/class_listing.inc:592
+msgid "created by"
+msgstr "skapat av"
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr ""
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "GÃ¥ till root-avdelning"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
-msgstr ""
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "GÃ¥ upp en avdelning"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
-msgstr ""
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Hem"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
-msgstr ""
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Ladda om lista"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr ""
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Åtgärder"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr ""
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Kopiera"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr ""
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Klipp ut"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr ""
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Klistra in"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr ""
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Klipp ut post"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Lösenordsmetod"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Kopiera post"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
-msgstr "Lösenords-hash att använda"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
+msgstr "Återskapa ögonblicksbilder"
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Lösenord"
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr "Exportera lista"
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
-msgstr "Lösenord (Lämna tomt om du inte vill ändra det)"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Återskapa ögonblicksbild"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
-msgstr "Lösenordet igen"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Skapa ögonblicksbild"
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
-msgstr "Samma lösenord som ovan, för att undvika fel"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Skapa ny ögonblicksbild från det här objektet"
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Personlig information"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Allvarligt fel"
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Efternamn"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "i"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
-msgstr ""
+#: include/class_xml.inc:68
+msgid "on line"
+msgstr "online"
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Förnamn"
+#: include/class_xml.inc:69
+msgid "XML error"
+msgstr "XML-fel"
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
-msgstr ""
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
+msgstr "Kan inte byta lösenord, okänd användare '%s'"
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
-msgstr ""
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Konfigurationsfel"
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
-msgstr ""
+#: include/exporter/class_PDF.php:61
+msgid "Page"
+msgstr "Sida"
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr ""
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
+msgstr "Ingen PDF-export är möjlig: det finns inget FPDF-bibliotek installerat."
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr ""
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr "PDF"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Rumsnummer"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
+msgstr "CSV"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Rumsnummer"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
+msgstr "Begärd kanal finns inte! Vänligen kontakta din administratör"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
-msgstr ""
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Avbryt allt"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Mobil"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Kan inte klistra in"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr ""
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Användarnamn"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Pager"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Mall"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
-msgstr ""
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Mall-namn"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Hemsida"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "Allvarligt fel: inga klass-locations definierade - vänligen kör '%s' för att åtgärda detta"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
-msgstr ""
+#: include/functions.inc:142
+#, php-format
+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"
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr ""
+#: include/functions.inc:512
+#, 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'."
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Föredraget språk"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Autentiseringsfel"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr ""
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
+msgstr "Fel uppstod när lås skulle läggas till. Kontakta utvecklarna!"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr ""
+#: include/functions.inc:678
+#, 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!"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr ""
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "LDAP-server returnerade %s"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr ""
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Hempostadress"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Storleksgränsen på %d poster har överskridits!"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Privat telefon"
+#: include/functions.inc:1132
+#, 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"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Hemtelefonnummer"
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Konfigurera"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Organisationsinformation"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "ofullständig"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr ""
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Fortsätt ändå"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr ""
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Redigera ändå"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
+msgstr "Du kommer att redigera LDAP-posten/posterna %s"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Avdelningsnummer"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "Poster per sida"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Avdelningsnummer"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Aktivera filter"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Anställningsnummer"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Anställningsnummer"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Anställningstyp"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:2093
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
+msgstr ""
+
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:2096
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Du behöver ange ditt nuvarande lösenord för att fortsätta."
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZÅÄÖ0123456789"
 
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
-msgstr ""
-
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Nytt lösenord"
+"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."
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Det nya lösenordet och det nuvarande är för lika varandra."
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Kan inte skriva till revisionsfil!"
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Det nya lösenordet är för kort."
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
+msgstr "Kan inte läsa revisionsfil!"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
-msgstr "Lösenordet innehåller möjligtvis problematiska Unicode-tecken!"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr "'nextIdHook' är inte tillgänglig. Använder standard-bas!"
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
-msgstr "Unix"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "LDAP-varning"
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Redigera användarens POSIX-inställningar"
+#: include/functions.inc:2559
+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!"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Hemkatalog"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
-msgstr "Sökvägen till hemkatalogen för den här användaren"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Skal"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
-msgstr "Vilket skal ska användas när den här användaren loggar in"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Primär grupp"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
-msgstr "Primär grupp för den här användaren"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Status"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
-msgstr "Status på det här unix-kontot"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Klass(er) tillgänglig(a)"
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
-msgstr ""
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
+msgstr "Kan inte allokera ett fritt ID:"
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
-msgstr ""
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
+msgstr "okänd idAllocation-metod!"
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Gruppmedlemskap"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
+msgstr "%sPoolMin >= %sPoolMax!"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Konto"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
+msgstr "sambaUnixIdPool är inte unik!"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "Användare måste ändra lösenord vid första inloggning"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
+msgstr "inget ID tillgängligt!"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr ""
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
+msgstr "maximalt antal försök överskridet!"
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Kan inte allokera ett fritt ID!"
+
+#: include/functions.inc:3321
+#, 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"
+
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Alla objekt i den här kategorin"
+
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Vänligen fixa ovanstående fel och ladda om sidan."
+
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "XML-fel i fusiondirectory.conf: %s på rad %d"
+
+#: include/class_config.inc:280
+#, php-format
 msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
-msgstr "Fördröjning innan tvingande lösenordsbyte (dagar)"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Kan inte koppla mot LDAP. Vänligen kontakta systemadministratören"
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
-msgstr "Användaren kommer att tvingas byta lösenord efter så här många dagar (lämna tomt för att  avaktivera)"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
-msgstr "Utgångsdatum för lösenord"
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/personal/posix/class_posixAccount.inc:174
+#: include/class_config.inc:899
+#, php-format
 msgid ""
-"Date after which this user password will expire (leave empty to disable)"
-msgstr "Datum efter vilket denna användares lösenord kommer att sluta gälla (lämna tomt för att avaktivera)"
+"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'."
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
-msgstr "Inaktivitet innan avaktivering av användare (dagar)"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Alla kategorier"
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
-msgstr "Maximalt antal inaktiva dagar efter lösenordets utgång innan användaren är avaktiverad (lämna tomt för att avaktivera funktionen)"
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Mitt konto"
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
-msgstr "Fördröjning för varning innan lösenordsbyte (dagar)"
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Välj att lista objekt av typen '%s'."
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
-msgstr "Användaren kommer att varnas så här många dagar innan lösenordet löper ut (lämna tomt för att avaktivera)"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Välj att lista objekt som innehåller '%s'."
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
-msgstr "Tillåt användaren att endast logga in på denna lista av hosts"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Välj att lista objekt som har '%s' aktiverat"
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "okonfigurerad"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Välj för att söka i subträd"
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "automatisk"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Sök i subträd"
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "har utgått"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Det här objektet kommer att tas bort!"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "grace-tid aktiv"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Det här '%s'-objektet kommer att tas bort!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "aktiv"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Det här objektet kommer att tas bort: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "lösenord har slutat gälla"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Det här '%s'-objektet kommer att tas bort: %s"
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
-msgstr "lösenord kan inte ändras"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Det här objektet kommer att tas bort:"
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Det här '%s'-objektet kommer att tas bort:"
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_msgPool.inc:87
 #, php-format
-msgid "Group of user %s"
-msgstr ""
+msgid "These objects will be deleted: %s"
+msgstr "De här objekten kommer att tas bort: %s"
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
-msgstr ""
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "De här '%s'-objekten kommer att tas bort: %s"
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr ""
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Du har inte rättigheter att ta bort det här objektet!"
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
-msgstr ""
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Du har inte rättigheter att ta bort objektet:"
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr "Plugin-konfiguration"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Du har inte rättigheter att ta bort objekten:"
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
-msgstr "FusionDirectory plugin-konfiguration"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Du har ingen rättighet att skapa det här objektet!"
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Objektgrupper"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Du har ingen rättighet att skapa objektet:"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr "OGrupp RDN"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Du har ingen rättighet att skapa dessa objekt:"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr "Gren i vilken objektgrupper kommer att lagras"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Du har ingen rättighet att modifiera det här objektet!"
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr "SASL"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Konfiguration"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Du har inga rättigheter att visa detta objekt!"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr "FusionDirectory konfiguration"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Du har inga rättigheter att visa objektet:"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Du har inga rättigheter att visa dessa objekt:"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Utseende:"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Du har inga rättigheter att flytta det här objektet!"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "Språk"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Du har inga rättigheter att flytta objektet:"
 
-#: 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 "Applikationens språk. Om inställd på 'automatisk' eller inte tillgänglig, kommer den som efterfrågas av webbläsaren att användas. Detta kan också ställas in per användare. "
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Du har inga rättigheter att flytta de här objekten:"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Tema"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Anslutningsinformation"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr "Tema som ska användas"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Kan inte ansluta till databasen %s !"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Tidszon"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Kan inte välja databasen %s !"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr "Tidszon som ska användas"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Ingen %s server angiven!"
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr "Schema-inställningar"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Kan inte fråga %s-databasen!"
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr ""
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Fältet '%s' innehåller ett reserverat nyckelord!"
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr "Aktivera schema-kontroll under inloggning."
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "Kommandot specificerat som %s hook för pluginen '%s' existerar inte!"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Lösenordsinställningar"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "Kommandot '%s' är inte giltigt!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr "Lösenordens standard-hash"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "Kommandot '%s' för plugin %s är ogiltigt!"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr "Standard-hash som ska användas"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "Kommandot '%s' (%s) är ogiltigt!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
-msgstr "Tvinga standard hash"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "Kommandot '%s' (%s) för plugin %s är ogiltigt!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
-msgstr "Tvinga användandet av den lösenords-hash som är standard"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Kan inte exekvera kommandot '%s'!"
+
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Kan inte exekvera kommandot '%s' för plugin %s!"
+
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "Kan inte exekvera kommandot '%s' (%s)!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Lösenordets minsta längd"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Kan inte exekvera kommandot '%s' (%s) för plugin %s!"
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
-msgstr "Minsta längd på lösenord"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Värdet för '%s' är för stort!"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr "Lösenord minsta avvikelse"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
+msgstr "'%s' måste vara mindre än %s!"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr "Minsta antalet tecken som nytt lösenord måste avvika från gammalt"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Värdet för '%s' är för litet!"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Använd datum för kontots upphörande"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "'%s' måste vara %d eller större!"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr "Aktiverar skugg-attribut-test under inloggning till FusionDirectory och tvingar förnyelse av lösenord eller kontolåsning"
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "'%s' beror på '%s' - vänligen ange båda värdena!"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr "SASL Realm"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Det finns redan en post med det här '%s'-attributet i systemet!"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr "SASL Exop"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr "Attribut att lagra i userPassword-attributet"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Fältet '%s' krävs men är tomt!"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr "Bas-inställningar"
+#: include/class_msgPool.inc:435
+msgid "Example:"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Visa sammanfattning i listningar"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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 "Avgör om ett statusfält ska visas i botten på listor, som visar en kort sammanfattning av typ och antal poster i listan."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "'%s' är inte tillåtet:"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr "Redigera låsning"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "'%s' är inte tillåtna!"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr "Kontrollera om en post som just blir redigerad har blivit modifierad utanför FusionDirectory under tiden."
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Saknar PHP-tillägget %s !"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr "Aktivera loggning"
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Avbryt"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr "Event-loggning på FusionDirectorys sida."
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr "LDAP storleksgräns"
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Spara"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr "Definierar antalet poster att få från LDAP som standard."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Lägg till"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Inloggning och session"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Lägg till %s"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Inloggningsattribut"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Ta bort"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr "Vilket LDAP-attribut ska användas som inloggningnamn under inloggning."
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Ta bort %s"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Tvinga krypterade anslutningar"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Redigera..."
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr "Aktiverar PHPs säkerhetskontroller för att tvinga krypterad access (https) till webbgränssnittet."
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Redigera %s..."
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Varna om session inte är krypterad"
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Tillbaka"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
-msgstr "visar en varning till användaren när http används istället för https."
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Det här kontot har inga giltiga %s-tillägg!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Sessioners livslängd"
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Det här kontot har %s-inställningar aktiverade. Du kan avaktivera dem genom att klicka nedan."
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Det här kontot har %s-inställningar aktiverade. För att avaktivera dem, behöver du ta bort %s-inställningarna först!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Det här kontot har %s-inställningar avaktiverade. Du kan aktivera dem genom att klicka nedan."
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Det här kontot har %s-inställningar avaktiverade. För att aktivera dem, behöver du lägga till %s-inställningarna först!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Lägg till %s-inställningar"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Ta bort %s-inställningar"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Klicka på 'Redigera'-knappen nedan för att ändra information i den här dialogrutan"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "januari"
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "februari"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Aktivera ögonblicksbilder"
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "mars"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr "Detta aktiverar möjligheten att spara vissa posters tillstånd och återskapa dem senare."
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "april"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Bas för ögonblicksbilder"
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "maj"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr "Basen där ögonblicksbilder ska lagras i LDAP-katalogen."
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "juni"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "juli"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "augusti"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "september"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "oktober"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "november"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "december"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "söndag"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "måndag"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "tisdag"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "onsdag"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "torsdag"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr "Host"
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "fredag"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "lördag"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "Port"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
+msgstr "Databasoperation misslyckades!"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "läs"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "lägg till"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "modifiera"
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Lagring för personer och grupper"
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "ta bort"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "Personer DN-attribut"
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "sök"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr "Attribut att använda i början av användares dn"
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "autentisering"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr ""
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "LDAP %s misslyckades!"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr ""
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "LDAP-operation misslyckades!"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr "Strikt namnpolicy"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "Objekt"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr ""
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "Uppladdning misslyckades!"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr ""
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Uppladdning misslyckades: %s"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr ""
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "Kommunikationsfel med infrastrukturtjänsten!"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr "Nästa id-hook"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Kommunikationsfel med infrastrukturtjänsten: %s"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr ""
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "'%s' används fortfarande av det här objektet %s"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr ""
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "'%s' används fortfarande."
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr "Var man ska börja kolla efter nya fria användar-IDn."
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "'%s' används fortfarande av dessa objekt: %s"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr ""
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "Filen '%s' existerar inte!"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr "Var man ska börja kolla efter nya fria grupp-IDn."
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Kan inte öppna filen '%s' för läsning!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr "Användares RDN"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "Kan inte öppna filen '%s' för skrivning!"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr ""
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
+msgstr "Värdet för '%s' är för närvarande okonfigurerat eller ogiltigt, vänligen kolla din konfigurationsfil!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr "Gruppers RDN"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "Kan inte ta bort fil '%s'!"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr "Grenen där grupper lagras."
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "Kan inte skapa katalog '%s'!"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
-msgstr ""
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "Kan inte ta bort katalogen '%s'!"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr ""
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Kontrollerar stöd för %s"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr "Id-allokeringsmetod"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
+msgstr "Installera och aktivera PHP-modulen %s."
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr ""
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
+msgstr "Installera och aktivera modulen %s Pear"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr "Traditionell"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
+msgstr "Kan inte initialisera klassen '%s'! Kanske det är ett plugin som saknas i din FusionDirectory-installation?"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr "Samba unix id pool"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
+msgstr "Den angivna basen är inte giltig och har återställts till det tidigare värdet!"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Tidsstämpel"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Debugging"
-
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr "Visa fel"
-
-#: plugins/config/class_configInLdap.inc:387
-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 "Visa PHP-fel i övre delen av skärmen. Detta bör avaktiveras i produktionsmiljöer, för det kan vara lösenord i felkoden."
-
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Maximal tid för LDAP-frågor"
-
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
-msgstr "Stoppa LDAP-förfrågningar om det inte kommer något svar inom den specificerade mängden sekunder."
-
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Logga LDAP-statistik"
-
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr "Spåra LDAP-timingstatistik till syslog. Detta kan hjälpa till att hitta indexeringsproblem eller dåliga sökfilter."
-
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Debug-nivå"
-
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr "Visa viss information på varje sidladdning."
-
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "Diverse"
-
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
-msgstr "Hooks som anropas när specifika händelser inträffar"
-
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
-msgstr "flik"
-
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr "Fliken som denna hook härrör till"
-
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "läge"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
+msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr "När detta kommando ska anropas"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "Fil"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr "cmd"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Rad"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr "Kommando som ska anropas"
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "PHP-fel"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "Hooks"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "klass"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr ""
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "funktion"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
-msgstr ""
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "statisk"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
-msgstr "Tillgängliga skal"
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "metod"
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
-msgstr "Tillgängliga POSIX-skal för FD-användare"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Spårning"
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
-msgstr ""
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Typ"
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr ""
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Argument"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr ""
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "Generering av denna sida gjorde att PHP-tolken observerade några fel!"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr ""
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
+msgstr "Skicka buggrapport till FusionDirectory-teamet"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Automatiskt"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Skicka buggrapport"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr "Återskapande av lösenord"
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Växla informationsläge"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr "Inställningar för funktionen för återställning av lösenord"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Prestandavarning"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr "Inställningar för återskapande av lösenord"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr "LDAP-prestanda är låg: senaste frågan tog runt %.2fs!"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr "Aktivera återställning av lösenord"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr "Avsändaradress för epost"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "under operation på '%s' med LDAP-server '%s'"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr "Epostadress från vilken epostmeddelanden sänds"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "under operation på LDAP-server %s"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
-msgstr "Länkens giltighetstid (minuter)"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr "Antalet minuter innan en återställningslänk slutar gälla"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr "Salt för tokens"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
-msgstr "Bara en säkerhetsåtgärd, du kan skriva vad som helst där, till och med slumpmässiga tecken"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
-msgstr "Tillåt användande av alternativa adresser"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr "Användare kommer också att kunna skriva in en av deras alternativa epostadresser för att återställa lösenordet"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr "Första epost"
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Fel under import av dn: '%s', kontrollera din LDIF från rad %s och nedåt!"
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
-msgstr "Ämne"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
+msgstr "Välj önskade poster"
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr "Ämne på första epostmeddelandet"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Namn"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr "[FusionDirectory] Länk för återskapande av lösenord"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Beskrivning"
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr "Meddelandekropp (första %s är inläggnings-ID, andra är länken)"
+msgid "POSIX group %s"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
-msgstr "Meddelandekropp för det första epostmeddelandet, skickat när en användare frågar efter ett nytt lösenord. Använd %s för inläggnings-ID och återställningslänk."
+msgid "Role %s"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr "Hej,\n\nHär är informationen för återställning:\n - Inloggning : %s\n - Länk : %s\n\nDen här länken är bara giltig i 10 minuter."
+msgid "Group %s"
+msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
-msgstr "Andre epostmeddelandet"
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Användarens grupp"
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr "Ämne på det andra epostmeddelandet"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
+msgstr "Ingen"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr "[FusionDirectory] Återställning av lösenord lyckades"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Okänd"
 
-#: plugins/config/class_recoveryConfig.inc:109
-#, php-format
-msgid "Body (%s is login)"
-msgstr "Meddelandekropp (%s är login)"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Redigera"
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Ta bort"
+
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
 msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
-msgstr "Meddelandekropp på det andra epostmeddelandet, som skickas för att bekräfta att lösenordet har ändrats. Använd %s för användarens inloggnings-ID."
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
+msgstr "Inga plugin-definitioner kunde hittas för att initialisera '%s', vänligen kontrollera din konfigurationsfil."
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
-msgstr "Hej,\n\nDitt lösenord har ändrats.\nDitt användar-ID är fortfarande %s."
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "Borttagningsprocess har avbrutits av pluginen '%s': %s"
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
+msgstr "sekunder"
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
-msgstr "Plugins"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
+msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
-msgstr "Konfiguration för plugins"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
+msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Upp"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
+msgstr "Visa %s"
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Ner"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr "INGEN ETIKETT"
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Välj alla"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Fel"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
-msgstr "skapat av"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
+msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "GÃ¥ till root-avdelning"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr "Fel under skrivning"
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Root"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
+msgstr "Det finns redan en post med samma dn : %s"
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "GÃ¥ upp en avdelning"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
+msgstr "Posten %s finns inte"
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Hem"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
+msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Ladda om lista"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
+msgstr "%s (krävs)"
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Skicka"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr "Objekt-bas"
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Kopiera"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Klipp ut"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
+msgstr "Kan inte läsa uppladdad fil: %s"
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Klistra in"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
+msgstr "filen är tom"
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Klipp ut post"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr "filen kunde inte hittas"
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Kopiera post"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr "filen är inte läsbar"
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
-msgstr "Återskapa ögonblicksbilder"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
+msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
-msgstr "Exportera lista"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "Ladda upp"
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Återskapa ögonblicksbild"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "Ladda ner"
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Skapa ögonblicksbild"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Skapa ny ögonblicksbild från det här objektet"
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
+#, php-format
+msgid "Invalid value for %s"
+msgstr "Ogiltigt värde för %s"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr "Filterfel"
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
+#, php-format
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
-msgstr "Filtret är inte komplett!"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
+#, php-format
+msgid "An integer between %d and %d"
+msgstr "En siffra mellan %d och %d"
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Rättighetsfel"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
+msgstr "En siffra större än %d"
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Du har inte tillåtelse att skapa en ögonblicksbild för %s."
+msgid "An integer smaller than %d"
+msgstr "En siffra mindre än %d"
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Du är inte tillåten att återskapa en ögonblicksbild för %s."
+msgid "A float between %f and %f"
+msgstr "Ett flyttal mellan %f och %f"
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
-msgstr "Ingen tab-deklaration för '%s' hittades i din konfigurationsfil. Kan inte skapa plugin-instans!"
+msgid "A float larger than %f"
+msgstr "Ett flyttal större än %f"
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "XML-fel i fusiondirectory.conf: %s på rad %d"
+msgid "A float smaller than %f"
+msgstr "Ett flyttal mindre än %f"
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Konfigurationsfel"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr ""
 
-#: include/class_config.inc:280
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "LDAP-fel"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Kan inte koppla mot LDAP. Vänligen kontakta systemadministratören"
-
-#: include/class_config.inc:357
+#: include/class_plugin.inc:1322
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_config.inc:885
-#, 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_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
+
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Hantera åtkomstkontrollistor (ACL)"
+
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "ACL-roller"
 
-#: include/class_config.inc:898
+#: include/class_acl.inc:118
 #, 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'."
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Alla kategorier"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Okänd post '%s'!"
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Mitt konto"
+#: include/class_acl.inc:173
+#, php-format
+msgid "All users"
+msgstr "Alla användare"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Prestandavarning"
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-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:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Internt fel"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Katalogen '%s' specificerat som kompileringskatalog är inte tillgänglig!"
 
-#: include/class_ldap.inc:846
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:882
-#, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:994
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "under operation på '%s' med LDAP-server '%s'"
-
-#: include/class_ldap.inc:996
+#: html/index.php:150
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "under operation på LDAP-server %s"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"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."
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
-msgstr ""
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Smarty-fel"
 
-#: include/class_ldap.inc:1133
+#: html/index.php:173
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1151
-#, php-format
-msgid "Error line %s, references to an external file are not supported"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
+msgstr "Din FusionDirectory-session har gått ut!"
+
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: html/index.php:214
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_ldap.inc:1194
-#, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Fel under import av dn: '%s', kontrollera din LDIF från rad %s och nedåt!"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Välj att lista objekt av typen '%s'."
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Ange ett giltigt användarnamn!"
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Välj att lista objekt som innehåller '%s'."
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Ange ditt lösenord!"
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Välj att lista objekt som har '%s' aktiverat"
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "Kontrollera användarnamn/lösenord-kombinationen."
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Välj för att söka i subträd"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
+msgstr "Kontot låst. Kontakta systemadministratören!"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Sök i subträd"
+#: html/index.php:454
+#, php-format
+msgid "No value found in HTTP header \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Det här objektet kommer att tas bort!"
+#: html/index.php:475
+#, php-format
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:69
+#: html/index.php:485
 #, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Det här '%s'-objektet kommer att tas bort!"
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/index.php:547
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Det här objektet kommer att tas bort: %s"
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:557
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Det här '%s'-objektet kommer att tas bort: %s"
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Det här objektet kommer att tas bort:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Din webbläsare har avaktiverat cookies. Vänligen aktivera cookies och ladda om den här sidan innan du loggar in!"
 
-#: include/class_msgPool.inc:83
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Det här '%s'-objektet kommer att tas bort:"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr "FusionDirectory-konfiguration %s/%s är inte läsbar. Avbryter."
 
-#: include/class_msgPool.inc:87
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "De här objekten kommer att tas bort: %s"
+msgid "Did not find an account with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "De här '%s'-objekten kommer att tas bort: %s"
-
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Du har inte rättigheter att ta bort det här objektet!"
-
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Du har inte rättigheter att ta bort objektet:"
-
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Du har inte rättigheter att ta bort objekten:"
-
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Du har ingen rättighet att skapa det här objektet!"
-
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Du har ingen rättighet att skapa objektet:"
-
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Du har ingen rättighet att skapa dessa objekt:"
+msgid "Found multiple accounts with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Du har ingen rättighet att modifiera det här objektet!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "Epostadress"
 
-#: include/class_msgPool.inc:151
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Du har inga rättigheter att visa detta objekt!"
-
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Du har inga rättigheter att visa objektet:"
-
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Du har inga rättigheter att visa dessa objekt:"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr "Kontakta din administratör, det uppstod ett problem med epostservern"
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Du har inga rättigheter att flytta det här objektet!"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Du har inga rättigheter att flytta objektet:"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr "Det uppstod ett problem med epostservern, bekräftelsebrevet skickades inte"
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Du har inga rättigheter att flytta de här objekten:"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "PHP-konfiguration"
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Anslutningsinformation"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr "Allvarligt fel: Register globals är påslaget. FusionDirectory kommer att vägra logga in om inte detta är åtgärdat av en administratör"
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Kan inte ansluta till databasen %s !"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Ändra lösenord"
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
-msgstr "Kan inte välja databasen %s !"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Ditt lösenord är på väg att gå ut, vänligen byt lösenord!"
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
-msgstr "Ingen %s server angiven!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
-msgstr "Kan inte fråga %s-databasen!"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "Tillgängligt minne snart slut!"
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Fältet '%s' innehåller ett reserverat nyckelord!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "ACL-kontroll av användare är inte påslaget"
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "Kommandot specificerat som %s hook för pluginen '%s' existerar inte!"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Plugin"
 
-#: include/class_msgPool.inc:313
+#: html/main.php:290
 #, php-format
-msgid "'%s' command is invalid!"
-msgstr "Kommandot '%s' är inte giltigt!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr "Allvarligt fel: Kan inte hitta några plugin-definitioner för pluginen '%s' ('%s' är ingen fil)!"
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "Kommandot '%s' för plugin %s är ogiltigt!"
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr "Konfigurationsfel"
 
-#: include/class_msgPool.inc:319
+#: html/main.php:306
 #, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "Kommandot '%s' (%s) är ogiltigt!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr "Allvarligt fel: inte alla POST-variabler överfördes av PHP - informera din administratör!"
 
-#: include/class_msgPool.inc:321
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "Kommandot '%s' (%s) för plugin %s är ogiltigt!"
+msgid "Welcome %s!"
+msgstr "Välkommen %s!"
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Kan inte exekvera kommandot '%s'!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Referenser"
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Kan inte exekvera kommandot '%s' för plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr "Unix"
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "Kan inte exekvera kommandot '%s' (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Redigera användarens POSIX-inställningar"
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Kan inte exekvera kommandot '%s' (%s) för plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Hemkatalog"
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Värdet för '%s' är för stort!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr "Sökvägen till hemkatalogen för den här användaren"
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
-msgstr "'%s' måste vara mindre än %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Skal"
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Värdet för '%s' är för litet!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
+msgstr "Vilket skal ska användas när den här användaren loggar in"
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "'%s' måste vara %d eller större!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Primär grupp"
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "'%s' beror på '%s' - vänligen ange båda värdena!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr "Primär grupp för den här användaren"
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Det finns redan en post med det här '%s'-attributet i systemet!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr "Status på det här unix-kontot"
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Fältet '%s' krävs men är tomt!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "'%s' är inte tillåtet:"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "'%s' är inte tillåtna!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Saknar PHP-tillägget %s !"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Gruppmedlemskap"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Avbryt"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Konto"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "Användare måste ändra lösenord vid första inloggning"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Spara"
-
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Lägg till"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Lägg till %s"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Ta bort %s"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr "Fördröjning innan tvingande lösenordsbyte (dagar)"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Redigera..."
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr "Användaren kommer att tvingas byta lösenord efter så här många dagar (lämna tomt för att  avaktivera)"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Redigera %s..."
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr "Utgångsdatum för lösenord"
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Tillbaka"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
+msgstr "Datum efter vilket denna användares lösenord kommer att sluta gälla (lämna tomt för att avaktivera)"
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Det här kontot har inga giltiga %s-tillägg!"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr "Inaktivitet innan avaktivering av användare (dagar)"
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Det här kontot har %s-inställningar aktiverade. Du kan avaktivera dem genom att klicka nedan."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr "Maximalt antal inaktiva dagar efter lösenordets utgång innan användaren är avaktiverad (lämna tomt för att avaktivera funktionen)"
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Det här kontot har %s-inställningar aktiverade. För att avaktivera dem, behöver du ta bort %s-inställningarna först!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr "Fördröjning för varning innan lösenordsbyte (dagar)"
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Det här kontot har %s-inställningar avaktiverade. Du kan aktivera dem genom att klicka nedan."
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr "Användaren kommer att varnas så här många dagar innan lösenordet löper ut (lämna tomt för att avaktivera)"
+
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "System trust"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Trust-läge"
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Det här kontot har %s-inställningar avaktiverade. För att aktivera dem, behöver du lägga till %s-inställningarna först!"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr "Auktoriseringstyp för dessa hosts"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Lägg till %s-inställningar"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "avaktiverad"
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
-msgstr "Ta bort %s-inställningar"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "full tillgång"
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Klicka på 'Redigera'-knappen nedan för att ändra information i den här dialogrutan"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "tillåt dessa hosts tillgång"
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "januari"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr "Tillåt användaren att endast logga in på denna lista av hosts"
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "februari"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "automatisk"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "mars"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "har utgått"
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "april"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "grace-tid aktiv"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "maj"
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "aktiv"
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "juni"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "lösenord har slutat gälla"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "juli"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr "lösenord kan inte ändras"
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "augusti"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "september"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "oktober"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Timeout under väntan på låsning. Ignorerar lås!"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "november"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "december"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "söndag"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "måndag"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "tisdag"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "onsdag"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Lösenordsmetod"
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "torsdag"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr "Lösenords-hash att använda"
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "fredag"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Lösenord"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "lördag"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr "Lösenord (Lämna tomt om du inte vill ändra det)"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr "Databasoperation misslyckades!"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr "Lösenordet igen"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "läs"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr "Samma lösenord som ovan, för att undvika fel"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "lägg till"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Användare"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "modifiera"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "ta bort"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "sök"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Personlig information"
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "autentisering"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Efternamn"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "LDAP %s misslyckades!"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "LDAP-operation misslyckades!"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Förnamn"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "Uppladdning misslyckades!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Uppladdning misslyckades: %s"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "Kommunikationsfel med infrastrukturtjänsten!"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Kommunikationsfel med infrastrukturtjänsten: %s"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "'%s' används fortfarande av det här objektet %s"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "'%s' används fortfarande."
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Plats"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "'%s' används fortfarande av dessa objekt: %s"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Län"
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
-msgstr "Filen '%s' existerar inte!"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Adress"
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Kan inte öppna filen '%s' för läsning!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Kan inte öppna filen '%s' för skrivning!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Rumsnummer"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
-msgstr "Värdet för '%s' är för närvarande okonfigurerat eller ogiltigt, vänligen kolla din konfigurationsfil!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Rumsnummer"
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Kan inte ta bort fil '%s'!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Telefon"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "Kan inte skapa katalog '%s'!"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "Kan inte ta bort katalogen '%s'!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Mobil"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Kontrollerar stöd för %s"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Installera och aktivera PHP-modulen %s."
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Pager"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr "Installera och aktivera modulen %s Pear"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
-msgstr "Kan inte initialisera klassen '%s'! Kanske det är ett plugin som saknas i din FusionDirectory-installation?"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Fax"
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr "Den angivna basen är inte giltig och har återställts till det tidigare värdet!"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "Allvarligt fel: inga klass-locations definierade - vänligen kör '%s' för att åtgärda detta"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Hemsida"
 
-#: include/functions.inc:142
-#, php-format
-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"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Allvarligt fel"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr ""
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Autentiseringsfel"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
-msgstr "Fel uppstod när lås skulle läggas till. Kontakta utvecklarna!"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr ""
 
-#: include/functions.inc:678
-#, 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!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
+msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "LDAP-server returnerade %s"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Hempostadress"
 
-#: include/functions.inc:859
-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."
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Privat telefon"
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Storleksgränsen på %d poster har överskridits!"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Hemtelefonnummer"
 
-#: include/functions.inc:1132
-#, 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"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Organisationsinformation"
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Konfigurera"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "ofullständig"
+#: plugins/personal/generic/class_user.inc:415
+msgid ""
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Fortsätt ändå"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Organisation"
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Redigera ändå"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Avdelning"
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr "Du kommer att redigera LDAP-posten/posterna %s"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
+msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "Poster per sida"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Avdelningsnummer"
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Aktivera filter"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Avdelningsnummer"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Anställningsnummer"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Anställningsnummer"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Anställningstyp"
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr "Manager"
 
-#: include/functions.inc:2121
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "%sTiB"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:2123
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "%sEiB"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZÅÄÖ0123456789"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Du behöver ange ditt nuvarande lösenord för att fortsätta."
 
-#: include/functions.inc:2294
-#, php-format
+#: plugins/personal/generic/class_user.inc:653
 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."
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "Kan inte skriva till revisionsfil!"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Nytt lösenord"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
-msgstr "Kan inte läsa revisionsfil!"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Det nya lösenordet och det nuvarande är för lika varandra."
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
-msgstr "'nextIdHook' är inte tillgänglig. Använder standard-bas!"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Det nya lösenordet är för kort."
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "LDAP-varning"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr "Lösenordet innehåller möjligtvis problematiska Unicode-tecken!"
 
-#: include/functions.inc:2586
-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!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Klass(er) tillgänglig(a)"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
+msgstr "Återskapande av lösenord"
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr "Inställningar för funktionen för återställning av lösenord"
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
+msgstr "Inställningar för återskapande av lösenord"
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr "Aktivera återställning av lösenord"
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
-msgstr "Kan inte allokera ett fritt ID:"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr "Avsändaradress för epost"
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
-msgstr "okänd idAllocation-metod!"
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr "Epostadress från vilken epostmeddelanden sänds"
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr "%sPoolMin >= %sPoolMax!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr "Länkens giltighetstid (minuter)"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
-msgstr "sambaUnixIdPool är inte unik!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr "Antalet minuter innan en återställningslänk slutar gälla"
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
-msgstr "inget ID tillgängligt!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr "Salt för tokens"
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
-msgstr "maximalt antal försök överskridet!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr "Bara en säkerhetsåtgärd, du kan skriva vad som helst där, till och med slumpmässiga tecken"
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Kan inte allokera ett fritt ID!"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr "Tillåt användande av alternativa adresser"
 
-#: include/functions.inc:3345
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr "Användare kommer också att kunna skriva in en av deras alternativa epostadresser för att återställa lösenordet"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
-msgstr "Begärd kanal finns inte! Vänligen kontakta din administratör"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr "Första epost"
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
-msgstr ""
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr "Ämne"
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Mall-namn"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr "Ämne på första epostmeddelandet"
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Alla objekt i den här kategorin"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
+msgstr "[FusionDirectory] Länk för återskapande av lösenord"
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "Fil"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
+msgstr "Meddelandekropp (första %s är inläggnings-ID, andra är länken)"
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Rad"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
+msgstr "Meddelandekropp för det första epostmeddelandet, skickat när en användare frågar efter ett nytt lösenord. Använd %s för inläggnings-ID och återställningslänk."
+
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
+msgstr "Hej,\n\nHär är informationen för återställning:\n - Inloggning : %s\n - Länk : %s\n\nDen här länken är bara giltig i 10 minuter."
+
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
+msgstr "Andre epostmeddelandet"
+
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
+msgstr "Ämne på det andra epostmeddelandet"
+
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
+msgstr "[FusionDirectory] Återställning av lösenord lyckades"
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "PHP-fel"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
+msgstr "Meddelandekropp (%s är login)"
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "klass"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
+msgstr "Meddelandekropp på det andra epostmeddelandet, som skickas för att bekräfta att lösenordet har ändrats. Använd %s för användarens inloggnings-ID."
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "funktion"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
+msgstr "Hej,\n\nDitt lösenord har ändrats.\nDitt användar-ID är fortfarande %s."
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "statisk"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Konfiguration"
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "metod"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
+msgstr "FusionDirectory konfiguration"
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Spårning"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
+msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Typ"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Utseende:"
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Argument"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "Språk"
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "Generering av denna sida gjorde att PHP-tolken observerade några fel!"
+#: 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 "Applikationens språk. Om inställd på 'automatisk' eller inte tillgänglig, kommer den som efterfrågas av webbläsaren att användas. Detta kan också ställas in per användare. "
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
-msgstr "Skicka buggrapport till FusionDirectory-teamet"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Tema"
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Skicka buggrapport"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr "Tema som ska användas"
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Växla informationsläge"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Tidszon"
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Vänligen fixa ovanstående fel och ladda om sidan."
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
+msgstr "Tidszon som ska användas"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
+msgstr "Schema-inställningar"
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Tidsstämpel"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
+msgstr "Aktivera schema-kontroll under inloggning."
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Lösenordsinställningar"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
+msgstr "Lösenordens standard-hash"
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
+msgstr "Standard-hash som ska användas"
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
+msgstr "Tvinga standard hash"
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
+msgstr "Tvinga användandet av den lösenords-hash som är standard"
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Lösenordets minsta längd"
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr "Minsta längd på lösenord"
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
-msgstr "Sida"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
+msgstr "Lösenord minsta avvikelse"
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr "CSV"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
+msgstr "Minsta antalet tecken som nytt lösenord måste avvika från gammalt"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
-msgstr "Ingen PDF-export är möjlig: det finns inget FPDF-bibliotek installerat."
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Använd datum för kontots upphörande"
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr "PDF"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
+msgstr "Aktiverar skugg-attribut-test under inloggning till FusionDirectory och tvingar förnyelse av lösenord eller kontolåsning"
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "i"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
+msgstr "SASL Realm"
 
-#: include/class_xml.inc:68
-msgid "on line"
-msgstr "online"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr "SASL Exop"
 
-#: include/class_xml.inc:69
-msgid "XML error"
-msgstr "XML-fel"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
+msgstr "Attribut att lagra i userPassword-attributet"
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
+msgstr "Bas-inställningar"
+
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Visa sammanfattning i listningar"
+
+#: plugins/config/class_configInLdap.inc:162
 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 ""
+"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 "Avgör om ett statusfält ska visas i botten på listor, som visar en kort sammanfattning av typ och antal poster i listan."
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr "Redigera låsning"
+
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
-msgstr ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr "Kontrollera om en post som just blir redigerad har blivit modifierad utanför FusionDirectory under tiden."
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr "Aktivera loggning"
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Avbryt allt"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr "Event-loggning på FusionDirectorys sida."
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Kan inte klistra in"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr "LDAP storleksgräns"
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr "Definierar antalet poster att få från LDAP som standard."
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Inloggning och session"
+
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Inloggningsattribut"
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
+msgstr "Vilket LDAP-attribut ska användas som inloggningnamn under inloggning."
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Tvinga krypterade anslutningar"
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:197
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
-msgstr ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
+msgstr "Aktiverar PHPs säkerhetskontroller för att tvinga krypterad access (https) till webbgränssnittet."
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
-msgstr "Fel under skrivning"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Varna om session inte är krypterad"
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
-msgstr "Det finns redan en post med samma dn : %s"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr "visar en varning till användaren när http används istället för https."
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
-msgstr "Posten %s finns inte"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Sessioners livslängd"
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
-msgstr "Välj önskade poster"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
+msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
-msgstr "Visa %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Användarens grupp"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Aktivera ögonblicksbilder"
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
-msgstr "Ingen"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr "Detta aktiverar möjligheten att spara vissa posters tillstånd och återskapa dem senare."
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Okänd"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Bas för ögonblicksbilder"
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
+msgstr "Basen där ögonblicksbilder ska lagras i LDAP-katalogen."
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
-msgstr "sekunder"
-
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
-msgstr "%s (krävs)"
-
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
-msgstr "En siffra mellan %d och %d"
-
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
-msgstr "En siffra större än %d"
-
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
-msgstr "En siffra mindre än %d"
-
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
-msgstr "Ett flyttal mellan %f och %f"
-
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
-msgstr "Ett flyttal större än %f"
-
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
-msgstr "Ett flyttal mindre än %f"
-
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
-msgstr "Kan inte läsa uppladdad fil: %s"
-
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
-msgstr "filen är tom"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
-msgstr "filen kunde inte hittas"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
-msgstr "filen är inte läsbar"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
+msgstr "Host"
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "Ladda upp"
-
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "Ladda ner"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "Port"
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Bas"
-
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
-msgstr "Objekt-bas"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
-msgstr "Ogiltigt värde för %s"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
+msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr "INGEN ETIKETT"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Lagring för personer och grupper"
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
-msgstr "Inga plugin-definitioner kunde hittas för att initialisera '%s', vänligen kontrollera din konfigurationsfil."
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "Personer DN-attribut"
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "Borttagningsprocess har avbrutits av pluginen '%s': %s"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
+msgstr "Attribut att använda i början av användares dn"
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
-
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Hantera åtkomstkontrollistor (ACL)"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
+msgstr "Strikt namnpolicy"
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Okänd post '%s'!"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
+msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
-msgstr "Alla användare"
+#: plugins/config/class_configInLdap.inc:315
+msgid ""
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
+msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
-msgstr "Kan inte byta lösenord, okänd användare '%s'"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
+msgstr "Nästa id-hook"
 
-#: include/password-methods/class_password-methods-sasl.inc:85
+#: plugins/config/class_configInLdap.inc:320
 msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Loggning misslyckades: %s"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
+msgstr "Var man ska börja kolla efter nya fria användar-IDn."
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "Angiven objectType är tom eller ogiltig!"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
+msgstr "Var man ska börja kolla efter nya fria grupp-IDn."
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
+msgstr "Användares RDN"
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"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."
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
+msgstr "Gruppers RDN"
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Smarty-fel"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
+msgstr "Grenen där grupper lagras."
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
-msgstr "Din FusionDirectory-session har gått ut!"
-
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
+msgstr "Id-allokeringsmetod"
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
+msgstr "Traditionell"
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
+msgstr "Samba unix id pool"
+
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "Ange ett giltigt användarnamn!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "Ange ditt lösenord!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "Kontrollera användarnamn/lösenord-kombinationen."
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
-msgstr "Kontot låst. Kontakta systemadministratören!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Debugging"
+
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
+msgstr "Visa fel"
+
+#: plugins/config/class_configInLdap.inc:387
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Din webbläsare har avaktiverat cookies. Vänligen aktivera cookies och ladda om den här sidan innan du loggar in!"
+"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 "Visa PHP-fel i övre delen av skärmen. Detta bör avaktiveras i produktionsmiljöer, för det kan vara lösenord i felkoden."
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "PHP-konfiguration"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Maximal tid för LDAP-frågor"
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
-msgstr "Allvarligt fel: Register globals är påslaget. FusionDirectory kommer att vägra logga in om inte detta är åtgärdat av en administratör"
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr "Stoppa LDAP-förfrågningar om det inte kommer något svar inom den specificerade mängden sekunder."
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Ändra lösenord"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Logga LDAP-statistik"
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Ditt lösenord är på väg att gå ut, vänligen byt lösenord!"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
+msgstr "Spåra LDAP-timingstatistik till syslog. Detta kan hjälpa till att hitta indexeringsproblem eller dåliga sökfilter."
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Debug-nivå"
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "Tillgängligt minne snart slut!"
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
+msgstr "Visa viss information på varje sidladdning."
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "ACL-kontroll av användare är inte påslaget"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "Diverse"
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Plugin"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
+msgstr "Hooks som anropas när specifika händelser inträffar"
+
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
+msgstr "flik"
+
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
+msgstr "Fliken som denna hook härrör till"
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
-msgstr "Allvarligt fel: Kan inte hitta några plugin-definitioner för pluginen '%s' ('%s' är ingen fil)!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "läge"
 
-#: html/main.php:305
-msgid "Configuration Error"
-msgstr "Konfigurationsfel"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr "När detta kommando ska anropas"
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
-msgstr "Allvarligt fel: inte alla POST-variabler överfördes av PHP - informera din administratör!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
+msgstr "cmd"
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
-msgstr "FusionDirectory-konfiguration %s/%s är inte läsbar. Avbryter."
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr "Kommando som ska anropas"
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Katalogen '%s' specificerat som kompileringskatalog är inte tillgänglig!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "Hooks"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "Epostadress"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
+msgstr "Tillgängliga skal"
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
-msgstr ""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
+msgstr "Tillgängliga POSIX-skal för FD-användare"
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
-msgstr "Kontakta din administratör, det uppstod ett problem med epostservern"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
+msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
-msgstr "Det uppstod ett problem med epostservern, bekräftelsebrevet skickades inte"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
+msgstr "Plugins"
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
+msgstr "Konfiguration för plugins"
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr "Plugin-konfiguration"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Location name"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
+msgstr "FusionDirectory plugin-konfiguration"
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Objektgrupper"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
-msgstr "Koppling-URI"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
+msgstr "OGrupp RDN"
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
-msgstr ""
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
+msgstr "Gren i vilken objektgrupper kommer att lagras"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "TLS-koppling"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr "SASL"
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Autentisering"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "Admin DN"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Adminlösenord"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Nuvarande status"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "LDAP-inställningar"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "LDAP-koppling"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
+#: plugins/config/class_dashBoardConfig.inc:62
 msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
-msgstr "Den här dialogrutan utför den grundläggande konfigurationen för LDAP-kopplingen till FusionDirectory."
-
-#: setup/class_setupStep_Ldap.inc:166
-#, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "Anonym koppling till server '%s' misslyckades!"
-
-#: setup/class_setupStep_Ldap.inc:168
-#, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Koppling som användare '%s' misslyckades!"
-
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
-#, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "Anonym koppling till servern '%s' lyckades."
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Avdelningar"
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "Uppdatera"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Skriv in användare och lösenord!"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Egenskaper"
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "Koppling som användare '%s' till servern '%s' lyckades!"
+msgid "Name of %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A name for this %s"
+msgstr ""
+
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Välkommen"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Kategori"
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Slutför"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Slutför - skriv konfigurationsfil"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Skriv konfigurationsfil"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Din konfigurationsfil är just nu läsbar för alla användare. Vänligen uppdatera filrättigheterna!"
+#: plugins/admin/departments/class_department.inc:84
+#, php-format
+msgid "Manager of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Konfigurationen är just nu inte läsbar eller så finns den inte."
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Land"
 
-#: setup/class_setupStep_Finish.inc:96
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
-msgstr "Efter att ha laddat ner och placerat filen under %s, vänligen säkerställ att användaren som webbservern kör med har rättigheter att läsa %s medan andra användare inte ska kunna det."
+msgid "A postal address for this %s"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Migrera"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "PHP modul- och tilläggskontroll"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "LDAP-inspektion"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
-msgstr "Analysera nuvarande LDAP-katalog för kompatibilitet med FusionDirectory"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "Domän"
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
+msgstr "Hantera avdelningar"
+
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
-msgstr "Inspekterar objektklasser i root-objektet"
-
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr "Kontrollerar rättigheter för LDAP-databas"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
+msgstr "Domänkomponent"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Söker efter osynliga användare"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Söker efter superadministratör"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
+msgstr "Lokalitet"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Söker efter användare utanför person-trädet"
-
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Söker efter grupper utanför gruppträdet"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Avdelningslista"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Söker efter osynliga avdelningar"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Söker efter dubbletter av UID-nummer"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Hantera användare"
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "LDAP-fråga misslyckades"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
+msgstr "Kontolåsning"
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Misslyckades"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
+msgstr "LÃ¥s upp konto"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
-msgstr "Saknar objektklassen '%s' för FusionDirectory!"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
+msgstr "LÃ¥s konto"
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
-msgstr "Vänligen kontrollera din installation."
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Användarlista"
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr "Kan inte hantera den strukturella objekttypen hos ditt root-objekt. Vänligen lägg till objektklassen '%s' manuellt."
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "Efternamn"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
-msgstr ""
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Förnamn"
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
-msgstr ""
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
+msgstr "Lås användare"
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
-msgstr "Hittade %s användare som inte kommer att vara synlig(a) i FusionDirectory eller som är ofullständig(a)."
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr "Lås upp användare"
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
-msgstr ""
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Tillämpa mall"
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Migreringsfel"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr "Ny användare från mall"
+
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "Redigera användare"
+
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr "%{filter:lockLabel(userPassword)}"
+
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
+msgstr "Ta bort användare"
+
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Roll"
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Grupper"
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "Telefonnummer"
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
-msgstr "Det finns inget FusionDirectory-adminkonto i din LDAP-katalog."
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Fax-nummer"
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
+
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
+msgstr "Redigera posix-egenskaper"
+
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Flytta användare in i det konfigurerade användarträdet"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "Visa primära grupper"
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "till"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Följande referenser kommer att uppdateras"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
+msgstr "Visa mail-grupper"
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Hittade %s grupper utanför det konfigurerade trädet '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "Visa samba-grupper"
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
-msgstr "Hittade %s avdelning(ar) som inte kommer att vara synliga i FusionDirectory."
-
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Språkinställningar"
-
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Det här steget låter dig välja ditt föredragna språk."
-
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
-msgstr "Välkommen till FusionDirectory setup wizard"
-
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Välkomstmeddelandet"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Installationskontroll"
+#: plugins/admin/groups/class_ogroup.inc:63
+#, php-format
+msgid "Unknown type : %s"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Grundläggande kontroll för PHP-kompatibilitet och tillägg"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Kontrollerar PHP-version"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Objektgrupp"
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP måste vara version %s eller högre."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Vänligen uppgradera till en version som stöds."
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Grupp"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
-msgstr "FusionDirectory kräver den här modulen för att prata med din LDAP-server"
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
-msgstr "FusionDirectory kräver den här modulen för ett internationaliserat gränssnitt."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Medlemsobjekt"
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr "FusionDirecotyr kräver den här modulen för att kommunicera med olika typer av servrar och protokoll."
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
-msgstr "FusionDirectory kräver den här modulen för integrationen med Samba."
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
-msgstr "FusionDirectory kräver antingen en modul för antingen 'mhash' eller 'shah' för at kunna använda SSHA-kryptering."
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
-msgstr "FusionDirectory kräver den här modulen för att kunna prata med en IMAP-server"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Grupplista"
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
-msgstr "FusionDirectory kräver den här modulen för att hantera unicode-strängar."
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
-msgstr "imagick"
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
-msgstr "FusionDirectory kräver det här tillägget för att hantera bilder."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Tvinga GID"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
-msgstr "compression-modul"
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
-msgstr "FusionDirectory kräver det här tillägget för att hantera ögonblicksbilder"
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "register_globals är en PHP-mekanism för att registrera alla globala variabler så de är tillgängliga från skript utan att ändra scope. Detta kan vara en säkerhetsrisk."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Gruppmedlemmar"
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Sök efter 'register_globals' i din php.ini och ställ in den som 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP använder det här värdet för garage collection för att ta bort gamla sessioner"
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Att ställa in det här värdet till en dag kommer att förhindra förlust av sessioner och cookies innan de verkligen når time out."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Sök efter 'session.gc_maxlifetime' i din php.ini och sätt den till 86400 eller högre."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Av"
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
-msgstr "För att använda FusionDirectory utan problem, bör session.auto_start i din php.ini sättas till 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Sök efter 'session.auto_start' i din php.ini och sätt den till 'Off'."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
-msgstr "FusionDirectory behöver åtminstone 128MB minne. En inställning under denna gräns kan orsaka fel som inte är reproducerbara. Öka värdet för större installationer."
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
-msgstr "Sök efter 'memory_limit' i din php.ini och ställ in den på '128M' eller högre."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
+msgstr "ACL-tilldelning"
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Den här inställningen påverkar PHPs utdata-hantering. Stäng av den för att öka prestanda."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Sök efter 'implicit_flush' i din php.ini och sätt den till 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "Exekveringstiden bör vara åtminstone 30 sekunder."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Sök efter 'max_execution_time' i php.ini och sätt den till '30' eller högre."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Öka serversäkerheten genom att sätta expose_php till 'off'. PHP kommer i så fall inte sända någon information om servern du kör på."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Sök efter 'expose_php' i din php.ini och sätt den till 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Öka din serverprestanda genom att sätta magic_quotes_gpc till 'off'."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Sök efter 'zend.ze1_compatibility_mode' i php.ini och sätt den till 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Installationsfel"
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Slutförd"
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Medlemmar"
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Nästa"
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
+msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr "FusionDirectory-teamet"
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Detta objekt har ingen relation till andra objekt"
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "Filter"
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "Visa mallar"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Inga ACL-inställningar för denna kategori"
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr "Visa fungerande användare"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL för dessa objekt: %s"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
-msgstr "Visa POSIX-användare"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Redigera kategori-ACL"
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
-msgstr "Visa Epost-användare"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Återställ kategori-ACL"
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr "Visa Samba-användare"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Lista tillgängliga ACL-kategorier"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Alla objekt i aktuellt subträd"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "läs"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "skriv"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Visa/dölj avancerade inställningar"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Skapa objekt"
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Flytta objekt"
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Ta bort objekt"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-msgstr[1] ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
+msgstr "Ge rättigheter till ägare"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Komplett objekt"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Innehåller inställningar för dessa objekt: %s"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Ã…tkomstkontroll-roller"
+
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr "ACL-roll"
+
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
+msgstr "FusionDirectory kommer INTE att kunna köras utan att åtgärda detta."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
-msgstr ""
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
+msgstr "FusionDirectory kommer att kunna köras utan att åtgärda detta."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
+msgstr "Skapa ett nytt administrationskonto för FusionDirectory"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Den här dialogrutan kommer att lägga till en ny superadministratör till ditt LDAP-träd"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "Användar-ID"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Lösenord (igen)"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr "Det verkar vara första gången du startar FusionDirectory - vi hittade ingen konfiguration just nu. Den här enkla wizarden ska hjälpa dig att ställa in programvaran.  "
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "Vad kommer denna wizard att göra för dig?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Skapa en grundläggande konfiguration för en enskild site"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
-msgstr[1] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Försöka identifiera problem med din PHP- och LDAP-installation"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
-msgstr ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Låta dig välja från ett urval av grundläggande och avancerade konfigurationsinställningar"
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Du har ändrat ditt lösenord. Kom ihåg att ändra alla program som är inställda på att använda det också."
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Guida migreringen av existerande LDAP-träd"
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Användarinställningar"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "Vad kommer denna wizard INTE göra för dig?"
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Nollställ lösenord"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Hitta varje tänkbart konfigurationsfel"
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Ställ in nytt lösenord"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migrera varje tänkbar LDAP-installation - skapa backuper för säkerhets skull!"
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Personlig bild"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Användarbild"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Ta bort bild"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr "Klicka på 'Nästa'-knappen när du är klar."
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "Du har inte tillåtelse att ändra lösenordet just nu"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr "Lägg till de objektklasser som krävs till LDAP-basen"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
-msgstr "Din lösenordsmetod kommer inte att ändras!"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Nuvarande"
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "LÃ¥sningskonflikt detekterad"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Efter migrering"
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
-msgstr ""
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Stäng"
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr "Endast läsning"
-
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Fortsätt"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
 msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr ""
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Om du vill vet vad som kommer att göras när valda poster migreras, använd 'Visa ändringar'-knappen för att se LDIF-filen."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "ignorera det här felet och visa alla poster som LDAP-servern returnerar"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Visa ändringar"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
+#: setup/setup_migrate.tpl.c:2
 msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "ignorera det här felet och visa alla poster som passar inom den definierade sizelimit och låt mig använda filter istället"
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
+msgstr "Under LDAP-inspektionen kommer vi att undersöka flera vanliga fallgropar som man kan ramla i när man migrerar till FusionDirectory LDAP-administration. Det är möjligt att du behöver åtgärda problemen nedan för att kunna tillhandahålla stabila tjänster."
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Kontrollera igen"
+
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Skapa konfigurationsfil"
+
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Ladda ner konfiguration"
+
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Status:"
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "Filter"
+
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
 msgstr "Förlorat lösenord"
@@ -4933,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr "Återskapande av lösenord är inte aktiverat. Om du har förlorat ditt lösenord, kontakta din administratör"
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Så - om du är säker - tryck 'Ta bort' för att fortsätta och 'Avbryt' för att avbryta."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Inloggningsskärm"
@@ -4971,26 +4869,141 @@ msgstr "Logga in"
 msgid "Click here to log in"
 msgstr "Klicka här för att logga in"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "ignorera det här felet och visa alla poster som LDAP-servern returnerar"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "ignorera det här felet och visa alla poster som passar inom den definierade sizelimit och låt mig använda filter istället"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr "Dubbelkolla att du verkligen vill göra detta eftersom det inte finns något sätt för FusionDirectory att få tillbaka din information."
 
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Så - om du är säker - tryck 'Ta bort' för att fortsätta och 'Avbryt' för att avbryta."
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Hem"
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Logga ut"
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Inloggad:"
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr "Sessionen löper ut om %d!"
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:11
 msgid ""
 "So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Fortsätt"
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "LÃ¥sningskonflikt detekterad"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr "Endast läsning"
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr "Kopiera & klistra in-wizard"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr "Vissa värden måste vara unika inom katalogtjänsten medan vissa kombinationer inte är gångbara. FusionDirectory visar de relevanta attributen. Vänligen behåll värdena nedan för att uppfylla systemets policy."
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr "Kom ihåg att vissa egenskaper som tagna ögonblicksbilder inte kommer att kopieras!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr "Eller om du kopierar och klipper en post inom FusionDirectory och tar bort källobjektet, kan du få fel när du klistrar in det här objektet igen!"
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr "Operation klar"
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
+msgstr "Information"
+
 #: ihtml/themes/breezy/acl.tpl.c:2
 msgid "Assigned ACL for current entry"
 msgstr "Tilldelad ACL för nuvarande post"
@@ -5035,211 +5048,197 @@ msgstr "ACL för detta objekt"
 msgid "Available roles"
 msgstr "Tillgängliga roller"
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr "Kopiera & klistra in-wizard"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
-msgstr "Vissa värden måste vara unika inom katalogtjänsten medan vissa kombinationer inte är gångbara. FusionDirectory visar de relevanta attributen. Vänligen behåll värdena nedan för att uppfylla systemets policy."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
+msgstr "FusionDirectory-teamet"
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr "Kom ihåg att vissa egenskaper som tagna ögonblicksbilder inte kommer att kopieras!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
+msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr "Eller om du kopierar och klipper en post inom FusionDirectory och tar bort källobjektet, kan du få fel när du klistrar in det här objektet igen!"
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
-msgstr "Operation klar"
-
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
-msgstr "Information"
-
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Hem"
-
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Logga ut"
-
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Inloggad:"
-
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
-msgstr "Sessionen löper ut om %d!"
-
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
-msgstr "Lägg till de objektklasser som krävs till LDAP-basen"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Nuvarande"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Detta objekt har ingen relation till andra objekt"
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Efter migrering"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Användarinställningar"
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Stäng"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Nollställ lösenord"
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Skapa konfigurationsfil"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Ställ in nytt lösenord"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Personlig bild"
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Ladda ner konfiguration"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Användarbild"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Status:"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Ta bort bild"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr "Skapa ett nytt administrationskonto för FusionDirectory"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "Du har inte tillåtelse att ändra lösenordet just nu"
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Den här dialogrutan kommer att lägga till en ny superadministratör till ditt LDAP-träd"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
+msgstr "Din lösenordsmetod kommer inte att ändras!"
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "Användar-ID"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Du har ändrat ditt lösenord. Kom ihåg att ändra alla program som är inställda på att använda det också."
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Lösenord (igen)"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr "Det verkar vara första gången du startar FusionDirectory - vi hittade ingen konfiguration just nu. Den här enkla wizarden ska hjälpa dig att ställa in programvaran.  "
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "Vad kommer denna wizard att göra för dig?"
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Skapa en grundläggande konfiguration för en enskild site"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Försöka identifiera problem med din PHP- och LDAP-installation"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Låta dig välja från ett urval av grundläggande och avancerade konfigurationsinställningar"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Guida migreringen av existerande LDAP-träd"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "Vad kommer denna wizard INTE göra för dig?"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Hitta varje tänkbart konfigurationsfel"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migrera varje tänkbar LDAP-installation - skapa backuper för säkerhets skull!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
-msgstr "Klicka på 'Nästa'-knappen när du är klar."
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
+msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
-msgstr "FusionDirectory kommer INTE att kunna köras utan att åtgärda detta."
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
+msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
-msgstr "FusionDirectory kommer att kunna köras utan att åtgärda detta."
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
+msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Om du vill vet vad som kommer att göras när valda poster migreras, använd 'Visa ändringar'-knappen för att se LDIF-filen."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "Visa mallar"
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Visa ändringar"
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr "Visa fungerande användare"
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr "Visa POSIX-användare"
+
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr "Visa Epost-användare"
+
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr "Visa Samba-användare"
+
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
-msgstr "Under LDAP-inspektionen kommer vi att undersöka flera vanliga fallgropar som man kan ramla i när man migrerar till FusionDirectory LDAP-administration. Det är möjligt att du behöver åtgärda problemen nedan för att kunna tillhandahålla stabila tjänster."
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Kontrollera igen"
+#: plugins/admin/acl/remove.tpl.c:5
+msgid ""
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr ""
+
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
diff --git a/locale/ug/fusiondirectory.po b/locale/ug/fusiondirectory.po
index dee6bdbb04b959722539163f30de51b51f25862a..6011b66b2769bab36d2d9c9c97822a5ee2b4888a 100644
--- a/locale/ug/fusiondirectory.po
+++ b/locale/ug/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n"
@@ -17,4841 +17,4757 @@ msgstr ""
 "Language: ug\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr ""
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
-msgstr ""
-
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
-msgstr ""
-
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:148
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#, php-format
-msgid "Manager of this %s"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#, php-format
-msgid "A postal address for this %s"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:347
+#, php-format
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:369
+#, php-format
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
-msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Ldap.inc:168
 #, php-format
-msgid "Contains settings for these objects: %s"
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:174
+#, php-format
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
-
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
+#: include/class_listing.inc:313
+msgid "Down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
+#: include/class_listing.inc:1188
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:1196
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
+#: include/class_listing.inc:1211
+msgid "Reload list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/functions.inc:859
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
+#: include/functions.inc:1132
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
+#: include/functions.inc:1149
+msgid "Configure"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
+#: include/functions.inc:1154
+msgid "incomplete"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:1559
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
+#: include/functions.inc:1561
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:1563
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:1791
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
-#, php-format
-msgid "You must wait %d seconds before changing your password again"
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
+#: include/functions.inc:2641
+msgid ""
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
+#: include/functions.inc:2645
+msgid ""
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
+#: include/class_config.inc:886
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
+#: include/class_config.inc:1133
+msgid "My account"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_msgPool.inc:43
 #, php-format
-msgid "Group of user %s"
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr ""
+
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+#: include/class_msgPool.inc:540
+msgid "Back"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
+#: include/class_msgPool.inc:662
+msgid "January"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
+#: include/class_msgPool.inc:662
+msgid "February"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
+#: include/class_msgPool.inc:662
+msgid "March"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
+#: include/class_msgPool.inc:662
+msgid "April"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
+#: include/class_msgPool.inc:663
+msgid "May"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
+#: include/class_msgPool.inc:663
+msgid "June"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
+#: include/class_msgPool.inc:663
+msgid "July"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
+#: include/class_msgPool.inc:663
+msgid "August"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
+#: include/class_msgPool.inc:663
+msgid "September"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
+#: include/class_msgPool.inc:664
+msgid "October"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:664
+msgid "November"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:664
+msgid "December"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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."
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/php_setup.inc:53
+msgid "PHP error"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/php_setup.inc:62
+msgid "class"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/php_setup.inc:70
+msgid "function"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
+#: include/php_setup.inc:76
+msgid "static"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/php_setup.inc:80
+msgid "method"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/php_setup.inc:132
+msgid "Type"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/php_setup.inc:133
+msgid "Arguments"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
+#: include/php_setup.inc:242
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/class_ldap.inc:846
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
+#: include/class_ldap.inc:1170
+#, php-format
 msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
-#, php-format
-msgid "Body (%s is login)"
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
 msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
+#, php-format
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
+#, php-format
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
+#, php-format
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
+#, php-format
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
+#: include/class_plugin.inc:1322
+#, php-format
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
 msgstr ""
 
-#: include/class_config.inc:357
-#, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_config.inc:885
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/class_acl.inc:118
 #, php-format
 msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/class_acl.inc:170
+#, php-format
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
+#: include/class_acl.inc:173
+#, php-format
+msgid "All users"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
+#: html/index.php:56 html/class_passwordRecovery.inc:165
+#, php-format
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:846
-#, php-format
+#: html/index.php:62
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: html/index.php:150
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:994
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:996
+#: html/index.php:173
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr ""
-
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1133
-#, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_ldap.inc:1151
-#, php-format
-msgid "Error line %s, references to an external file are not supported"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: html/index.php:214
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/index.php:217
+msgid "No session found!"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_ldap.inc:1194
-#, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: html/index.php:282
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:285
+msgid "Please specify your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
+#: html/index.php:304
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:454
+#, php-format
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:475
+#, php-format
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:69
+#: html/index.php:485
 #, php-format
-msgid "This '%s' object will be deleted!"
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/index.php:547
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:557
 #, php-format
-msgid "This '%s' object will be deleted: %s"
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/class_passwordRecovery.inc:455
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/class_passwordRecovery.inc:458
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/class_passwordRecovery.inc:495
+#, php-format
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
+#: html/class_passwordRecovery.inc:498
+#, php-format
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/class_passwordRecovery.inc:506
+#, php-format
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgstr ""
+
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:151
-#, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:161
-#, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/main.php:290
+#, php-format
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:306
+#, php-format
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:225
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Cannot connect to %s database!"
+msgid "Welcome %s!"
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
 msgstr ""
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
 msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
 msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
 msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
+#: plugins/personal/posix/class_posixAccount.inc:538
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "July"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
 msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "November"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
 msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
 msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
 msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
 msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
 msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
 msgstr ""
 
-#: include/functions.inc:583
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:1132
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
 msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
+#: plugins/personal/generic/class_user.inc:607
+#, php-format
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
+#: plugins/personal/generic/class_user.inc:621
+#, php-format
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/personal/generic/class_user.inc:653
+msgid ""
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
 msgstr ""
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:2669
+#: plugins/config/class_recoveryConfig.inc:73
 msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:3175
+#: plugins/config/class_recoveryConfig.inc:90
 #, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr ""
-
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:91
+#, php-format
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/functions.inc:3345
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:109
+#, php-format
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:53
-msgid "PHP error"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:62
-msgid "class"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
+#: 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 ""
 
-#: include/php_setup.inc:80
-msgid "method"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
+#: plugins/config/class_configInLdap.inc:391
+msgid ""
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:116
-msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/admin/departments/class_department.inc:76
+#, php-format
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:80
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_ogroup.inc:67
+#, php-format
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
+msgstr ""
+
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
 msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr ""
+
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
 msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
@@ -4926,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4964,6 +4869,65 @@ msgstr ""
 msgid "Click here to log in"
 msgstr ""
 
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr ""
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr ""
+
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
+
 #: ihtml/themes/breezy/restore-confirm.tpl.c:2
 msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
@@ -4972,16 +4936,72 @@ msgstr ""
 msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:5
-msgid ""
-"Please double check if you really want to do this since there is no way for "
-"FusionDirectory to get your data back."
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
+
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
+
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
+msgid "Copy & paste wizard"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. FusionDirectory shows the relevant attributes. "
+"Please maintain the values below to fulfill the policies."
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+msgid ""
+"Or if you copy or cut an entry within FusionDirectory and delete the source "
+"object, you may get errors while pasting this object again!"
+msgstr ""
+
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
+msgid "Operation complete"
+msgstr ""
+
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+#: ihtml/themes/breezy/msg_dialog.tpl.c:8
+msgid "Information"
 msgstr ""
 
 #: ihtml/themes/breezy/acl.tpl.c:2
@@ -5028,211 +5048,190 @@ msgstr ""
 msgid "Available roles"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
-msgid "Copy & paste wizard"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:5
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. FusionDirectory shows the relevant attributes. "
-"Please maintain the values below to fulfill the policies."
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:8
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:11
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"Or if you copy or cut an entry within FusionDirectory and delete the source "
-"object, you may get errors while pasting this object again!"
-msgstr ""
-
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:23
-msgid "Operation complete"
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: ihtml/themes/breezy/msg_dialog.tpl.c:8
-msgid "Information"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
 msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr ""
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
-msgstr ""
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr ""
-
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/locale/vi_VN/fusiondirectory.po b/locale/vi_VN/fusiondirectory.po
index 151c3c59e76ae8ec67275d8897edffbdcadc5cf1..e84c8a36741b4020e6b1f2b2808ba4ea341a92d9 100644
--- a/locale/vi_VN/fusiondirectory.po
+++ b/locale/vi_VN/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n"
@@ -17,4842 +17,4758 @@ msgstr ""
 "Language: vi_VN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "Chào mừng %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "Các tham chiếu"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
+msgstr "Ngôn ngữ muốn sử dụng"
 
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "Vai trò"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
+msgstr "Cài đặt ngôn ngữ"
 
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
-msgstr ""
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
+msgstr "Bước này cho phép bạn lựa chọn ngôn ngữ bạn muốn dùng."
 
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
-msgstr ""
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
+msgstr "Tự động"
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "Tên"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
+msgstr "Kiểm tra các module và mở rộng của PHP"
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "Mô tả"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
+msgstr "Kiểm tra cài đặt"
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
+msgstr "Kiểm tra cơ bản cho khả năng tương thích và mở rộng PHP "
 
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
+msgstr "Kiểm tra phiên bản PHP"
 
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
-msgstr "Số fax"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP phải là phiên bản %s hoặc như trên."
 
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
+msgstr "Xin hãy cập nhật cho một phiên bản hỗ trợ."
+
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "Nhóm "
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "Properties"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr "mbstring"
 
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "Áp dụng GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "Số ID của nhóm"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "Các thành viên nhóm"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "Ủy thác hệ thống"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
+msgstr "đăng ký_toàn cầu (register_globals) là một cơ chế PHP dùng để đăng ký tất cả các biến số toàn cầu mà có thể truy cập từ các tập lệnh mà không phải thay đổi phạm vi. Đây có thể là một rủi ro về bảo mật."
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "Chế độ ủy thác"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Tìm kiếm 'register_globals' trong thư mục php.ini của bạn và chuyển nó thành 'Off'."
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP sử dụng giá trị này để phần mềm thu dọn rác có thể sóa các phiên cũ đi."
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "Đã vô hiệu"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr "Thiết lập giá trị này đến một ngày sẽ ngăn cản việc mất đi các phiên và cookies trước khi chúng thực sự hết hạn."
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "Truy cập hoàn toàn"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Tìm kiếm  'session.gc_maxlifetime' trong thư mục php.ini của bạn và thiết lập nó đển 86400 hoặc cao hơn."
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "Cho phép truy cập đến các máy chủ này"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
+msgstr "Tắt"
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:166
+msgid ""
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "Cảnh báo"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Tìm kiếm  'session.auto_start' trong thư mục php.ini của bạn và đặt nó thành 'Off'."
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Thời gian chờ khóa. Bỏ qua khóa!"
-
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "Nhóm đối tượng"
-
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "Lựa chọn này sẽ ảnh hưởng tới việc sử lý đầu vào PHP. Tắt chức năng này đi, để tăng khả năng hoạt động."
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "Các đối tượng thành viên"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr "Tìm kiếm 'implicit_flush' trong thư mục php.ini của bạn và chuyển nó sang 'Off'."
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
+msgstr "Thời gian chạy ít nhất là 30 giây."
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:191
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
-msgstr ""
-
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "Danh sách các nhóm"
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
+msgstr "Tìm kiếm 'max_execution_time' trong thư mục php.ini của bạn và thiết lập nó đến '30' hoặc cao hơn."
 
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "Các thao tác"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
+msgstr "Tăng tính bảo mật của server bằng việc thiết lập expose_php thành 'off'. PHP sẽ không gửi bất cứ thông tin nào về server bạn đang chạy trong trường hợp này."
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "Tạo "
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr "Tìm kiếm 'expose_php' trong thư much php.ini của bạn và chuyển nó thành 'Off'."
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "Hiệu chỉnh"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr "Tăng cường khả năng hoạt động cho server của bạn bằng việc thiết lập magic_quotes_gpc thành 'off'."
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "Xóa bỏ"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
+msgstr "Tìm kiếm 'zend.ze1_compatibility_mode' trong thư mục  php.ini và chuyển nó thành 'Off'."
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr "Chào mừng"
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
+msgstr "Tin nhắn chào mừng"
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "Ok"
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
+msgstr "Di trú"
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
+msgstr "Thanh tra LDAP"
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
+msgstr "Kiểm tra những người dùng ẩn"
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
+msgstr "Kiểm tra siêu admin"
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
+msgstr "Kiểm tra người dùng bên ngoài cây con người"
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
+msgstr "Kiểm tra nhóm bên ngoài cây nhóm"
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
+msgstr "Kiểm tra các bộ phận ẩn"
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
+msgstr "Kiểm tra các số ID cuả người dùng (UID) được nhân bản"
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
+msgstr "Yêu cầu LDAP thất bại"
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "Bộ phận"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "Các bộ phận"
-
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "Thất bại"
 
-#: plugins/admin/departments/class_department.inc:67
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Name of %s"
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "Short description of this %s"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "Các danh mục"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "Lá»—i LDAP"
 
-#: plugins/admin/departments/class_department.inc:76
+#: setup/class_setupStep_Migrate.inc:500
 #, php-format
-msgid "Category of this %s"
-msgstr ""
-
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
+#: setup/class_setupStep_Migrate.inc:511
 #, php-format
-msgid "Website of this %s"
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "Cảnh báo"
 
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:574
 #, php-format
-msgid "Manager of this %s"
+msgid ""
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "Vị trí"
-
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "Bang"
-
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "Quốc Gia"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "Địa chỉ"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
+msgstr "Lỗi di trú"
 
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Migrate.inc:673
 #, php-format
-msgid "A postal address for this %s"
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "Số điện thoại"
-
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "Số fax"
-
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Migrate.inc:865
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "Tạo "
+
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
+msgstr "Người dùng"
+
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "Các nhóm"
+
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "Lá»—i"
+
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "Danh sách các bộ phận"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr ""
 
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "Tổ chức"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
+msgstr "Chuyển người dùng sang cây người dùng được cấu hình"
 
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "Danh sách người dùng"
-
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "Tên thật"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
+msgstr "đến"
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "Đăng nhập"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
+msgstr "Tham chiếu sau sẽ được cập nhật"
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
-msgstr "Người dùng"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Đã tìm thấy %s nhóm bên ngoài cây được cấu hình '%s'."
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "Mẫu"
+#: setup/class_setupStep_Migrate.inc:1314
+#, php-format
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
-msgstr "Áp dụng mẫu"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "Tên vị trí"
+
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "Người dùng"
-
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
-msgstr "Quản lý người dùng"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
+msgstr "Kết nối TLS"
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "Cho phép"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "Cơ sở"
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
-#, php-format
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
+msgstr "Thẩm định quyền"
+
+#: setup/class_setupStep_Ldap.inc:59
 msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "Admin DN"
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "Mật khẩu Admin"
+
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "Trạng thái"
+
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
+msgstr "Tình trạng hiện tại"
+
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
+msgstr "Cài đặt LDAP"
+
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
+msgstr "Thiết lập kết nối LDAP"
+
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr "Không có cài đặt ACL cho mục này"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
+msgstr "Kết nối nặc danh với server '%s' thất bại!"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#: setup/class_setupStep_Ldap.inc:168
 #, php-format
-msgid "ACL for these objects: %s"
-msgstr "ACL cho các đối tượng sau: %s"
+msgid "Bind as user '%s' failed!"
+msgstr "Kết nối với vai trò người dùng '%s' thất bại!"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
-msgstr "Hiệu chính mục ACL"
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
+#: setup/class_setupStep_Ldap.inc:174
 #, php-format
-msgid "Delete"
-msgstr "Xóa"
+msgid "Anonymous bind to server '%s' succeeded."
+msgstr "Kết nối nặc danh đến server '%s' thành công."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
-msgstr "Xác lập mục ACL"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr "Danh sách tất cả các mục ACL hiện có"
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
+msgstr "Xin hãy xác định người dùng và mật khẩu!"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
-msgstr "Tất cả các đối tượng hiện trong  cây thư mục con hiện tại"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
+msgstr "Kết nối với tư cách người dùng '%s' đến server '%s' thành công!"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
 #, php-format
-msgid "Edit ACL for \"%s\""
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "đọc"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "viết"
-
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "đối tượng"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "Kết thúc"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
-msgstr "Hiển thị/ Ẩn các thiết lập cao cấp "
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
+msgstr "Kết thúc - viết file cấu hình"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr "Tạo ra đối tượng"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
+msgstr "Viết file cấu hình"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
-msgstr "Dịch chuyển đối tượng"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "File cấu hình của bạn hiện cả thế giới đều đọc được. Xin hãy cập nhật quyền truy cập file!"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
-msgstr "Xóa đối tượng"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Cấu hình hiện tại không thể đọc được hoặc nó không tồn tại."
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
-msgstr "Hoàn thành đối tượng"
+#: setup/class_setup.inc:122
+msgid "Setup error"
+msgstr "Lỗi cài đặt"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
-msgstr "Các vai trò ACL"
+#: setup/class_setup.inc:202
+msgid "Completed"
+msgstr "Đã hoàn thành"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
-msgstr ""
+#: setup/class_setup.inc:245
+msgid "Next"
+msgstr "Tiếp tục"
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
-msgstr ""
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
+msgstr "Lá»—i ná»™i bá»™"
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: include/class_logging.inc:80
 #, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Chứa các thiết lập cho các đối tượng: %s"
-
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
-msgstr "Các vai trò kiểm soát truy cập"
-
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
-msgstr ""
+msgid "Logging failed: %s"
+msgstr "Đăng nhập thất bại: %s"
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
-msgstr ""
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
+msgstr "ObjecType được chỉ định đang rỗng hặc không hợp lệ!"
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
-msgstr ""
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "không được cấu hình"
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
-msgstr ""
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "Cho phép"
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
-msgstr ""
-
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
-msgstr ""
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
+msgstr "Lỗi về cấp phép"
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
-msgstr ""
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
+msgstr "Bạn không được phép tạo ra snapshot cho %s."
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
-msgstr ""
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
+msgstr "Bạn không được phép phục hồi một snapshot cho %s."
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
-msgstr ""
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "Gốc"
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
-msgstr ""
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "Ná»™p"
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
-msgstr ""
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "Lên"
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
-msgstr ""
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "Xuống"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
-msgstr ""
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
+msgstr "Chọn tất"
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
-msgstr ""
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "Đi đến bộ phận gốc"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr ""
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "Đi lên một bộ phận"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "Các thành viên"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
+msgstr "Nhà"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr ""
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "Danh sách reload"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
-msgstr ""
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "Các thao tác"
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
-msgstr ""
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
+msgstr "Copy"
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
-msgstr ""
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
+msgstr "Cut"
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
-msgstr ""
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "Paste"
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
-msgstr ""
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "Cắt entry này"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr ""
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "Copy entry này"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_listing.inc:1735
+msgid "Export list"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr ""
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
+msgstr "Phục hồi lại snapshot"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr ""
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
+msgstr "Tạo ra snapshot"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
-msgstr ""
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
+msgstr "Tạo ra một snapshot mới từ đối tượng này"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
-msgstr ""
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr "Lỗi nặng"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
+#: include/class_xml.inc:66
+msgid "in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr "Phương pháp lập mật khẩu"
-
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "Mật khẩu"
-
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "Thông tin cá nhân"
-
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "Họ"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
+msgstr "Lỗi cấu hình"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "Tên"
-
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
-msgstr ""
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr "Hủy bỏ tất"
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
-msgstr ""
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
+msgstr "Không thể paste"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "Số phòng"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "Đăng nhập"
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
-msgstr "Số phòng"
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "Mẫu"
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "Điện thoại di động"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "Tên Mẫu"
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
-msgstr ""
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr "Lỗi nghiêm trọng: không có vị trí lớp nào được xác định - xin hãy chạy '%s' để sửa lỗi này"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "Máy nhắn tin"
+#: include/functions.inc:142
+#, php-format
+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"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr ""
+#: include/functions.inc:512
+#, 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'."
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "Trang chá»§"
+#: include/functions.inc:616
+msgid "Authentication error"
+msgstr "Lỗi xác định thẩm quyền"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
-msgstr ""
+#: include/functions.inc:668 include/functions.inc:791
+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!"
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr ""
+#: include/functions.inc:678
+#, 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!"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
-msgstr "Ngôn ngữ muốn sử dụng"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "LDAP server trả về: %s"
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
-msgstr ""
+#: include/functions.inc:859
+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."
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
-msgstr ""
+#: include/functions.inc:1130
+#, 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!"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr ""
+#: include/functions.inc:1132
+#, 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"
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
-msgstr ""
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "Cấu hình"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
-msgstr ""
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "chưa hoàn thành"
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "Đại chỉ nhà theo bưu điện"
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "Cứ tiếp tục"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "Số điện thoại riêng"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "Cứ hiệu chỉnh"
 
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
-msgstr "Số điện thoại nhà"
+#: include/functions.inc:1563
+#, 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"
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "Thông tin về tổ chức"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "các entry cho mỗi trang"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr ""
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "Áp dụng bộ lọc"
 
-#: plugins/personal/generic/class_user.inc:415
-msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
+#: include/functions.inc:2090
+#, php-format
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "Số phòng ban"
-
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr "Số phòng làm việc"
-
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "Số nhân viên"
-
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
-msgstr "Số nhân viên"
+#: include/functions.inc:2092
+#, php-format
+msgid "%sMiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "Loại nhân viên"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:2094
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:2096
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "Bạn cần xác định mật khẩu hiện tại để có thể tiếp tục."
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/personal/generic/class_user.inc:653
+#: include/functions.inc:2267
+#, php-format
 msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "Mật khẩu mới"
-
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "Mật khẩu mới và mật khẩu cũ quá giống nhau."
-
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "Mật khẩu mới cần được cắt ngắn lại."
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
+msgstr "Không thể viết lên revision file!"
 
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
-msgstr "Hiệu chỉnh cài đặt POSIX của người dùng"
+#: include/functions.inc:2559
+msgid "LDAP warning"
+msgstr "Cảnh báo LDAP"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "Thư mục chủ"
+#: include/functions.inc:2559
+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 đồ!"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
-
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "Nhóm sơ cấp"
-
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "Trạng thái"
+#: include/functions.inc:2603
+msgid "Used to store templates."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
-msgstr ""
-
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
-msgstr ""
-
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
-msgstr ""
-
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
-msgstr ""
-
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "Tư cách thành viên nhóm"
-
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "Tài khoản"
-
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "Người dùng phải thay đổi mật khẩu ngay lần đăng nhập đầu tiên"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr "Đã có lớp"
 
-#: plugins/personal/posix/class_posixAccount.inc:160
+#: include/functions.inc:2641
 msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
-msgstr ""
-
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
+#: include/functions.inc:2642
 msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
-msgstr ""
-
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
+#: include/functions.inc:2645
 msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "không được cấu hình"
-
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "tự động"
-
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "hết hạn"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
+msgstr "Không thể phân phối một ID miễn phí!"
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "Thời gian trước khi tài khoản bị khóa đang hoạt động"
+#: include/functions.inc:3321
+#, 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!"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "hoạt động"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr "Tất cả các đối tượng trong hạng mục này"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
-msgstr "mật khẩu hết hạn"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr "Xin hãy sửa lỗi trên và reload trang trên."
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "Số ID của người sử dụng"
-
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_config.inc:156
 #, php-format
-msgid "Group of user %s"
-msgstr ""
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "Lỗi XML trong fusiondirectory.conf: %s tại dòng %d"
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
-msgstr ""
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "Không thể nối kết với LDAP. Xin hãy liên lạc với với admin hệ thống."
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
-msgstr ""
+#: include/class_config.inc:886
+#, 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."
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "Tất cả các nhóm đối tượng"
+#: include/class_config.inc:1006
+msgid "All categories"
+msgstr "Tất cả các mục"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
-msgstr ""
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "Tài khoản của tôi"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
-msgstr ""
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
+msgstr "Chọn để liệt kê các đối tượng loại '%s'."
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
-msgstr ""
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
+msgstr "Chọn để liệt kê đối tượng chứa '%s'."
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
-msgstr ""
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
+msgstr "Chọn để liệt kê đối tượng mà cho phép '%s'"
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
-msgstr ""
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "Chọn để tìm kiếm trong các cây con"
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
-msgstr "Cấu hình"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
+msgstr "Tìm kiếm tại các cây con"
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
-msgstr ""
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
+msgstr "Đối tượng này sẽ bị xóa!"
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
-msgstr ""
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
+msgstr "Đối tượng '%s' này sẽ bị xóa!"
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
-msgstr "Xem và cảm nhận"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
+msgstr "Đối tượng này sẽ bị xóa: %s"
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr ""
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
+msgstr "Đối tượng '%s' này sẽ bị xóa: '%s'"
 
-#: 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 ""
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
+msgstr "Đối tượng này sẽ bị xóa:"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
-msgstr "Theme"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
+msgstr "Đối tượng '%s' này sẽ bị xóa:"
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
-msgstr ""
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
+msgstr "Đối tượng này sẽ bị xóa: %s"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
-msgstr "Múi giờ"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
+msgstr "Đối tượng '%s' này sẽ bị xóa; %s"
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
-msgstr ""
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr "Bạn không có quyền xóa đối tượng này!"
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
-msgstr ""
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
+msgstr "Bạn không có quyền xóa đối tượng này:"
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
-msgstr ""
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr "Bạn không có quyền xóa những đối tượng này:"
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
-msgstr ""
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
+msgstr "Bạn không có quyền tạo ra đối tượng này!"
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
-msgstr "Thiết lập mật khẩu"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
+msgstr "Bạn không có quyền tạo ra đối tượng này:"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
-msgstr ""
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
+msgstr "Bạn không có quyền tạo ra những đối tượng này:"
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
-msgstr ""
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
+msgstr "Bạn không có quyền thay đổi đối tượng này!"
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
-msgstr "Độ dài tối thiểu của mật khẩu"
-
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
-msgstr ""
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
+msgstr "Bạn không có quyền xem đối tượng này!"
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
-msgstr ""
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
+msgstr "Bạn không có quyền xem đối tượng này:"
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
-msgstr "Sử dụng việc hết hạn tài khoản"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
+msgstr "Bạn không có quyền xem những đối tượng này:"
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
-msgstr ""
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
+msgstr "Bạn không có quyền di chuyển đối tượng này!"
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
-msgstr ""
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
+msgstr "Bạn không có quyền di chuyển đối tượng này:"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
-msgstr ""
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
+msgstr "Bạn không có quyền di chuyển những đối tượng này:"
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
-msgstr ""
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
+msgstr "Thông tin kết nối"
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
-msgstr ""
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Không thể kết nối đến cơ sở dữ liệu %s!"
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
-msgstr "Hiển thị tóm tắt trên danh sách"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
+msgstr "Không thể lựa chọn cơ sở dữ liệu %s!"
 
-#: plugins/config/class_configInLdap.inc:162
-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 ""
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
+msgstr "Không xác định được  Server '%s'!"
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
-msgstr ""
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
+msgstr "Không truy vấn được cơ sở dữ liệu %s!"
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
-msgstr ""
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Trường '%s' có chứa một từ khóa dự trữ!"
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
-msgstr ""
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "Lệnh được cụ thể hóa là %s móc nối với plugin '%s' không tồn tại!"
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
-msgstr ""
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
+msgstr "Lệnh '%s' không hợp lệ!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
-msgstr ""
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
+msgstr "Lệnh '%s' cho plugin '%s' không hợp lệ!"
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
-msgstr ""
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
+msgstr "Lệnh '%s' (%s) không hợp lệ!"
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
-msgstr "Đăng nhập và phiên"
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
+msgstr "Lệnh '%s' (%s) cho plugin %s không hợp lệ!"
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
-msgstr "Thuộc tính đăng nhập"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
+msgstr "Không thể chạy lệnh '%s'!"
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
-msgstr ""
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
+msgstr "Không thể chạy lệnh '%s' cho plugin %s!"
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
-msgstr "Thực thi việc mã hóa các kết nối"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
+msgstr "Không thể chạy lệnh '%s' ('%s)!"
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
-msgstr ""
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
+msgstr "Không thể chạy lệnh '%s' ('%s) cho plugin %s!"
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
-msgstr "Cảnh báo nếu một phiên chưa được mã hóa"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Gía trị '%s' quá lớn!"
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
-msgstr "Thời gian cho một phiên (một Session)"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Gía trị '%s' quá nhỏ!"
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
-msgstr ""
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr "'%s' phải lớn hơn %d hoặc trên nữa!"
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
-msgstr ""
-
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
-msgstr ""
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr "'%s' phụ thuộc vào '%s'- xin hãy cung cấp cả hai giá trị!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Đã có sẵn một entry với thuộc tính '%s' trong hệ thống này!"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
-msgstr ""
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Trường được yêu cầu '%s' bị rỗng!"
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
-msgstr "Bật chức năng snapshots"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr "'%s' không được phép:"
 
-#: plugins/config/class_configInLdap.inc:232
-msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
-msgstr ""
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
+msgstr "'%s' không được cho phép!"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
-msgstr "Gốc snapshot"
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr "PHP mở rộng %s mất tích!"
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
-msgstr ""
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "Hủy bỏ"
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
-msgstr ""
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "Áp dụng"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
-msgstr ""
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "Lưu lại"
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "Thêm vào"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr ""
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
+msgstr "Thêm %s"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "Xóa"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr ""
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
+msgstr "Xóa %s"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
+msgstr "Hiệu chỉnh..."
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr ""
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
+msgstr "Hiệu chỉnh %s..."
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr ""
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "Quay lại"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr ""
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Tài khoản này không có chức năng mở rộng %s hợp lệ!"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:582
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
+msgstr "Tài khoản này đã bật các thiết lập %s lên. Bạn có thể tắt chúng đi bằng việc kích vào bên dưới."
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr ""
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
+msgstr "Tài khoản này đã bật các thiết lập %s lên. Để tắt chúng đi, bạn cần phải xóa thiết lập %s trước!"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
+msgstr "Tài khoản này đã tắt các thiết lập %s đi. Bạn có thể bật chúng lên bằng việc kích vào bên dưới."
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr ""
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr "Tài khoản này đã tắt các thiết lập %s đi. Để bật chúng lên, bạn cần phải thêm thiết lập %s trước!"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
+msgstr "Thêm thiết lập %s "
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
+msgstr "Xóa thiết lập %s"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
-msgstr ""
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Kích phím 'Hiệu chỉnh' bên dưới để thay đổi thông tin trong hộp thoại này "
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
-msgstr "Kho lưu trữ người và nhóm"
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "Tháng Một"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
-msgstr "Thuộc tính DN người"
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "Tháng Hai"
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "Tháng Ba"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "Tháng Tư"
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "Tháng Năm"
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "Tháng Sáu"
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "Tháng Bảy"
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "Tháng Tám"
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "Tháng Chín"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "Tháng Mười"
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "Tháng Mười Một"
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "Tháng Mười Hai"
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Sunday"
+msgstr "Chủ nhật"
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Monday"
+msgstr "Thứ Hai"
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
+msgstr "Thứ Ba"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
+msgstr "Thứ Tư"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Thursday"
+msgstr "Thứ Năm"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Friday"
+msgstr "Thứ Sáu"
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
-msgstr ""
+#: include/class_msgPool.inc:673
+msgid "Saturday"
+msgstr "Thứ Bảy"
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "read operation"
+msgstr "Đọc thao tác"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "add operation"
+msgstr "thêm tao tác"
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
-msgstr ""
+#: include/class_msgPool.inc:704
+msgid "modify operation"
+msgstr "thay đối thao tác"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "delete operation"
+msgstr "xóa thao tác"
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "search operation"
+msgstr "tìm kiếm thao tác"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
-msgstr ""
+#: include/class_msgPool.inc:705
+msgid "authentication"
+msgstr "Xác định thẩm quyền"
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
+msgstr "LDAP %s thất bại!"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
-msgstr ""
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
+msgstr "Hoạt động LDAP thất bại!"
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "đối tượng"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
-msgstr ""
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
+msgstr "Tải lên thất bại!"
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
+msgstr "Tải lên thất bại: %s"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
-msgstr ""
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
+msgstr "Giao tiếp với dịch vụ cơ sở hạ tầng bị thất bại!"
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
-msgstr ""
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
+msgstr "Giao tiếp với dịch vụ cơ sở hạ tầng bị thất bại: %s"
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
-msgstr ""
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
+msgstr "'%s' này vẫn còn được sử dụng bởi đối tượng: %s "
 
-#: plugins/config/class_configInLdap.inc:377
-msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
-msgstr ""
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
+msgstr "'%s' này vẫn còn được sử dụng."
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
-msgstr "Sá»­a lá»—i"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
+msgstr "'%s' vẫn còn được sử dụng bởi các đối tượng này: %s"
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
-msgstr ""
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
+msgstr "File '%s' không tồn tại!"
 
-#: plugins/config/class_configInLdap.inc:387
-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 ""
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
+msgstr "Không thể mở file '%s' để đọc!"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
-msgstr "Thời gian truy vấn LDAP tối đa"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
+msgstr "Không thể mở file '%s' để viết!"
 
-#: plugins/config/class_configInLdap.inc:391
+#: include/class_msgPool.inc:806
+#, php-format
 msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
-msgstr "Đăng nhập thống kê LDAP"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
+msgstr "Không thế xóa file '%s'!"
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
-msgstr ""
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
+msgstr "Không thể tạo ra folder '%s'!"
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
-msgstr "Cấp độ sửa lỗi"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
+msgstr "Không thể xóa folder '%s'!"
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
-msgstr ""
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
+msgstr "Kiểm tra hỗ trợ %s"
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
+msgstr "Cài đặt và kích hoạt mô-đun PHP %s."
+
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_msgPool.inc:884
+msgid ""
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "Timestamp"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr ""
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s (Năm-tháng-ngày)"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
-msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
-msgstr ""
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "File"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
-msgstr ""
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "Dòng"
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr ""
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "Lá»—i PHP"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr "Tự động"
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "lá»›p"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
-msgstr ""
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "chức năng"
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
-msgstr ""
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "tĩnh"
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
-msgstr ""
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "phương pháp"
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
-msgstr ""
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "Dò theo"
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
-msgstr ""
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "Loại"
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
-msgstr ""
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "Tranh luận"
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr ""
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "Tạo ra trang này khiến cho bộ dịch PHP sinh ra một số lỗi!"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr ""
+#: include/php_setup.inc:237
+msgid "Send bugreport"
+msgstr "Gửi thông báo lỗi"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr ""
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "Thông tin Toggle"
 
-#: plugins/config/class_recoveryConfig.inc:66
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
+msgstr "Cảnh báo khả năng hoạt động"
+
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+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:846
+#, php-format
 msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
-msgstr ""
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "Trong khi chạy trên '%s' sử dụng LDAP server '%s'"
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "Trong khi chạy trên LDAP server %s"
+
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:90
+#: include/class_ldap.inc:1134
 #, php-format
-msgid "Body (first %s is login, second is link)"
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/class_ldap.inc:1139
 #, php-format
-msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/class_ldap.inc:1170
 #, php-format
 msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "Lỗi trong khi đang nạp thêm dn:'%s', xin hãy kiểm tra lại LDIF của bạn từ dòng %s trở đi!"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "Tên"
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "Mô tả"
 
-#: plugins/config/class_recoveryConfig.inc:109
+#: include/simpleplugin/class_dialogAttributes.inc:426
 #, php-format
-msgid "Body (%s is login)"
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
+#: include/simpleplugin/class_dialogAttributes.inc:428
 #, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
+#: include/simpleplugin/class_dialogAttributes.inc:430
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "Nhóm người dùng"
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "Không rõ"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "Hiệu chỉnh"
+
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "Xóa bỏ"
+
+#: include/simpleplugin/class_simpleTabs.inc:90
+#, php-format
+msgid ""
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_simpleTabs.inc:319
+#, php-format
+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:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "Lên"
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr ""
 
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "Xuống"
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
-msgstr "Chọn tất"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
+msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "Lá»—i"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
+msgstr ""
 
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "Đi đến bộ phận gốc"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
+msgstr ""
 
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "Gốc"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
+msgstr ""
 
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "Đi lên một bộ phận"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
+msgstr ""
 
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
-msgstr "Nhà"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
+msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "Danh sách reload"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
+msgstr ""
 
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "Ná»™p"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
+msgstr ""
 
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
-msgstr "Copy"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
-msgstr "Cut"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
+msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "Paste"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
+msgstr ""
 
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "Cắt entry này"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
+msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "Copy entry này"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
-msgstr "Phục hồi lại snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
+msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
-msgstr "Tạo ra snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
+msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr "Tạo ra một snapshot mới từ đối tượng này"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
+msgstr ""
 
-#: include/class_management.inc:160
-msgid "Filter error"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
 msgstr ""
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
-msgstr "Lỗi về cấp phép"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
+msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
-msgstr "Bạn không được phép tạo ra snapshot cho %s."
+msgid "Invalid value for %s"
+msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
-msgstr "Bạn không được phép phục hồi một snapshot cho %s."
+msgid "Error, incorrect date: %s"
+msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-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:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
-msgstr "Lỗi cấu hình"
+msgid "An integer larger than %d"
+msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "Lá»—i LDAP"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "Không thể nối kết với LDAP. Xin hãy liên lạc với với admin hệ thống."
-
-#: include/class_config.inc:357
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_config.inc:885
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
 #, 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."
+msgid "A float larger than %f"
+msgstr ""
 
-#: include/class_config.inc:898
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
-msgstr "Tất cả các mục"
-
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "Tài khoản của tôi"
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
+msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr "Cảnh báo khả năng hoạt động"
+#: include/class_plugin.inc:795
+#, php-format
+msgid ""
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+msgstr ""
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#: include/class_plugin.inc:1322
 #, php-format
-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!"
+msgid "Tab \"%s\""
+msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
-msgstr "Lá»—i ná»™i bá»™"
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_ldap.inc:846
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr "Quản lý các danh sách kiểm soát truy cập"
+
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
+msgstr "Các vai trò ACL"
+
+#: include/class_acl.inc:118
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/class_acl.inc:170
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
-msgstr ""
+msgid "Unknown entry '%s'!"
+msgstr "Entry '%s' không được biết đến!"
 
-#: include/class_ldap.inc:994
+#: include/class_acl.inc:173
 #, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "Trong khi chạy trên '%s' sử dụng LDAP server '%s'"
+msgid "All users"
+msgstr ""
+
+#: html/setup.php:59
+msgid "Smarty"
+msgstr "Smarty"
 
-#: include/class_ldap.inc:996
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "Trong khi chạy trên LDAP server %s"
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Không thể truy cập vào thư mục '%s' được xác định là thư mục soạn thảo!"
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/index.php:56 html/class_passwordRecovery.inc:165
+#, php-format
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:1133
-#, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:1151
+#: html/index.php:150
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:1154
+#: html/index.php:171
+msgid "Smarty error"
+msgstr "Lá»—i Smarty"
+
+#: html/index.php:173
 #, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: include/class_ldap.inc:1158
-#, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:214
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "Lỗi trong khi đang nạp thêm dn:'%s', xin hãy kiểm tra lại LDIF của bạn từ dòng %s trở đi!"
+msgid "Invalid plugin parameter \"%s\"!"
+msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
-msgstr "Chọn để liệt kê các đối tượng loại '%s'."
+#: html/index.php:217
+msgid "No session found!"
+msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
-msgstr "Chọn để liệt kê đối tượng chứa '%s'."
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
+msgstr ""
 
-#: include/class_msgPool.inc:47
-#, php-format
-msgid "Select to list objects that have '%s' enabled"
-msgstr "Chọn để liệt kê đối tượng mà cho phép '%s'"
+#: html/index.php:255
+msgid "LDAP schema error"
+msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "Chọn để tìm kiếm trong các cây con"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "Xin hãy xác định một tên người dùng hợp lệ!"
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
-msgstr "Tìm kiếm tại các cây con"
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "Xin hãy xác định mật mã của bạn!"
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
-msgstr "Đối tượng này sẽ bị xóa!"
+#: html/index.php:304
+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."
 
-#: include/class_msgPool.inc:69
-#, php-format
-msgid "This '%s' object will be deleted!"
-msgstr "Đối tượng '%s' này sẽ bị xóa!"
+#: html/index.php:334
+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!"
 
-#: include/class_msgPool.inc:74
+#: html/index.php:454
 #, php-format
-msgid "This object will be deleted: %s"
-msgstr "Đối tượng này sẽ bị xóa: %s"
+msgid "No value found in HTTP header \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:475
 #, php-format
-msgid "This '%s' object will be deleted: %s"
-msgstr "Đối tượng '%s' này sẽ bị xóa: '%s'"
-
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
-msgstr "Đối tượng này sẽ bị xóa:"
+msgid "Header user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:485
 #, php-format
-msgid "This '%s' object will be deleted:"
-msgstr "Đối tượng '%s' này sẽ bị xóa:"
+msgid "Header user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:547
 #, php-format
-msgid "These objects will be deleted: %s"
-msgstr "Đối tượng này sẽ bị xóa: %s"
+msgid "CAS user \"%s\" could not be found in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:557
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
-msgstr "Đối tượng '%s' này sẽ bị xóa; %s"
-
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
-msgstr "Bạn không có quyền xóa đối tượng này!"
-
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
-msgstr "Bạn không có quyền xóa đối tượng này:"
+msgid "CAS user \"%s\" match several users in the LDAP"
+msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr "Bạn không có quyền xóa những đối tượng này:"
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "Trình duyệt của bạn đã vô hiệu cookies. Xin hãy cho phép cookies vào và tải lại trang này trước khi đăng nhập!"
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
-msgstr "Bạn không có quyền tạo ra đối tượng này!"
+#: html/class_passwordRecovery.inc:109
+#, php-format
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
-msgstr "Bạn không có quyền tạo ra đối tượng này:"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
-msgstr "Bạn không có quyền tạo ra những đối tượng này:"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
+msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
-msgstr "Bạn không có quyền thay đổi đối tượng này!"
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr ""
 
-#: include/class_msgPool.inc:151
+#: html/class_passwordRecovery.inc:495
 #, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#: html/class_passwordRecovery.inc:498
 #, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:161
+#: html/class_passwordRecovery.inc:506
 #, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
-msgstr "Bạn không có quyền xem đối tượng này!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
+msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
-msgstr "Bạn không có quyền xem đối tượng này:"
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
+msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
-msgstr "Bạn không có quyền xem những đối tượng này:"
-
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
-msgstr "Bạn không có quyền di chuyển đối tượng này!"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
+msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
-msgstr "Bạn không có quyền di chuyển đối tượng này:"
+#: html/main.php:115
+msgid "PHP configuration"
+msgstr "Cấu hình PHP"
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
-msgstr "Bạn không có quyền di chuyển những đối tượng này:"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
+msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
-msgstr "Thông tin kết nối"
+#: html/main.php:142
+msgid "Password change"
+msgstr "Thay đổi mật khẩu"
 
-#: include/class_msgPool.inc:225
-#, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Không thể kết nối đến cơ sở dữ liệu %s!"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
+msgstr "Mật khẩu của bạn chuẩn bị hết hạn, xin hãy thay đối mật khẩu của bạn!"
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
-msgstr "Không thể lựa chọn cơ sở dữ liệu %s!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
+msgstr ""
 
-#: include/class_msgPool.inc:255
-#, php-format
-msgid "No %s server defined!"
-msgstr "Không xác định được  Server '%s'!"
+#: html/main.php:208
+msgid "Running out of memory!"
+msgstr "Hết dung lượng bộ nhớ!"
 
-#: include/class_msgPool.inc:275
-#, php-format
-msgid "Cannot query %s database!"
-msgstr "Không truy vấn được cơ sở dữ liệu %s!"
+#: html/main.php:251
+msgid "User ACL checks disabled"
+msgstr "Vô hiệu việc kiểm tra ACL của người dùng"
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Trường '%s' có chứa một từ khóa dự trữ!"
+#: html/main.php:289
+msgid "Plugin"
+msgstr "Plugin"
 
-#: include/class_msgPool.inc:297
+#: html/main.php:290
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "Lệnh được cụ thể hóa là %s móc nối với plugin '%s' không tồn tại!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
+msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
-msgstr "Lệnh '%s' không hợp lệ!"
+#: html/main.php:305
+msgid "Configuration Error"
+msgstr ""
 
-#: include/class_msgPool.inc:315
+#: html/main.php:306
 #, php-format
-msgid "'%s' command for plugin %s is invalid!"
-msgstr "Lệnh '%s' cho plugin '%s' không hợp lệ!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
+msgstr ""
 
-#: include/class_msgPool.inc:319
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "'%s' command (%s) is invalid!"
-msgstr "Lệnh '%s' (%s) không hợp lệ!"
+msgid "Welcome %s!"
+msgstr "Chào mừng %s!"
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
-msgstr "Lệnh '%s' (%s) cho plugin %s không hợp lệ!"
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "Các tham chiếu"
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
-msgstr "Không thể chạy lệnh '%s'!"
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
+msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
-msgstr "Không thể chạy lệnh '%s' cho plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
+msgstr "Hiệu chỉnh cài đặt POSIX của người dùng"
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
-msgstr "Không thể chạy lệnh '%s' ('%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "Thư mục chủ"
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
-msgstr "Không thể chạy lệnh '%s' ('%s) cho plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Gía trị '%s' quá lớn!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Gía trị '%s' quá nhỏ!"
-
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr "'%s' phải lớn hơn %d hoặc trên nữa!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "Nhóm sơ cấp"
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr "'%s' phụ thuộc vào '%s'- xin hãy cung cấp cả hai giá trị!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Đã có sẵn một entry với thuộc tính '%s' trong hệ thống này!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
+msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Trường được yêu cầu '%s' bị rỗng!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr "'%s' không được phép:"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
+msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
-msgstr "'%s' không được cho phép!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
+msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
-msgstr "PHP mở rộng %s mất tích!"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "Tư cách thành viên nhóm"
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "Hủy bỏ"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "Tài khoản"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "Người dùng phải thay đổi mật khẩu ngay lần đăng nhập đầu tiên"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "Áp dụng"
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
+msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "Lưu lại"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "Thêm vào"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr "Thêm %s"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr "Xóa %s"
-
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
-msgstr "Hiệu chỉnh..."
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
-msgstr "Hiệu chỉnh %s..."
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
+msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "Quay lại"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Tài khoản này không có chức năng mở rộng %s hợp lệ!"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:582
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:179
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
-msgstr "Tài khoản này đã bật các thiết lập %s lên. Bạn có thể tắt chúng đi bằng việc kích vào bên dưới."
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
-msgstr "Tài khoản này đã bật các thiết lập %s lên. Để tắt chúng đi, bạn cần phải xóa thiết lập %s trước!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
+msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:184
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
-msgstr "Tài khoản này đã tắt các thiết lập %s đi. Bạn có thể bật chúng lên bằng việc kích vào bên dưới."
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
+msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr "Tài khoản này đã tắt các thiết lập %s đi. Để bật chúng lên, bạn cần phải thêm thiết lập %s trước!"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "Ủy thác hệ thống"
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
-msgstr "Thêm thiết lập %s "
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "Chế độ ủy thác"
 
-#: include/class_msgPool.inc:646
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "Đã vô hiệu"
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "Truy cập hoàn toàn"
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "Cho phép truy cập đến các máy chủ này"
+
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "tự động"
+
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "hết hạn"
+
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "Thời gian trước khi tài khoản bị khóa đang hoạt động"
+
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "hoạt động"
+
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
+msgstr "mật khẩu hết hạn"
+
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "Số ID của người sử dụng"
+
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "Số ID của nhóm"
+
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Thời gian chờ khóa. Bỏ qua khóa!"
+
+#: plugins/personal/posix/class_posixAccount.inc:538
 #, php-format
-msgid "Remove %s settings"
-msgstr "Xóa thiết lập %s"
+msgid "Group of user %s"
+msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Kích phím 'Hiệu chỉnh' bên dưới để thay đổi thông tin trong hộp thoại này "
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "Tháng Một"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "Tháng Hai"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "Tháng Ba"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "Tháng Tư"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr "Phương pháp lập mật khẩu"
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "Tháng Năm"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "Tháng Sáu"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "Mật khẩu"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "Tháng Bảy"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "Tháng Tám"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "Tháng Chín"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "Tháng Mười"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "Người dùng"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "Tháng Mười Một"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "Tháng Mười Hai"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
-msgstr "Chủ nhật"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "Thông tin cá nhân"
+
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "Họ"
+
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "Tên"
+
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "Vị trí"
+
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "Bang"
+
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "Địa chỉ"
+
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "Số phòng"
+
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
+msgstr "Số phòng"
+
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "Số điện thoại"
+
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "Điện thoại di động"
+
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "Máy nhắn tin"
+
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "Số fax"
+
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "Trang chá»§"
+
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
-msgstr "Thứ Hai"
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
-msgstr "Thứ Ba"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
-msgstr "Thứ Tư"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
-msgstr "Thứ Năm"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr "Thứ Sáu"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr "Thứ Bảy"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
+msgstr ""
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
-msgstr "Đọc thao tác"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "Đại chỉ nhà theo bưu điện"
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr "thêm tao tác"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "Số điện thoại riêng"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
-msgstr "thay đối thao tác"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
+msgstr "Số điện thoại nhà"
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr "xóa thao tác"
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "Thông tin về tổ chức"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
-msgstr "tìm kiếm thao tác"
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr "Xác định thẩm quyền"
+#: plugins/personal/generic/class_user.inc:415
+msgid ""
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
+msgstr ""
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
-msgstr "LDAP %s thất bại!"
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "Tổ chức"
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr "Hoạt động LDAP thất bại!"
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "Bộ phận"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
-msgstr "Tải lên thất bại!"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
+msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr "Tải lên thất bại: %s"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "Số phòng ban"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
-msgstr "Giao tiếp với dịch vụ cơ sở hạ tầng bị thất bại!"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
+msgstr "Số phòng làm việc"
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr "Giao tiếp với dịch vụ cơ sở hạ tầng bị thất bại: %s"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "Số nhân viên"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
-msgstr "'%s' này vẫn còn được sử dụng bởi đối tượng: %s "
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
+msgstr "Số nhân viên"
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
-msgstr "'%s' này vẫn còn được sử dụng."
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "Loại nhân viên"
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
-msgstr "'%s' vẫn còn được sử dụng bởi các đối tượng này: %s"
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
+msgstr ""
 
-#: include/class_msgPool.inc:776
+#: plugins/personal/generic/class_user.inc:607
 #, php-format
-msgid "File '%s' does not exist!"
-msgstr "File '%s' không tồn tại!"
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
-msgstr "Không thể mở file '%s' để đọc!"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
+msgstr ""
 
-#: include/class_msgPool.inc:796
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr "Không thể mở file '%s' để viết!"
+msgid "You must wait %d seconds before changing your password again"
+msgstr ""
 
-#: include/class_msgPool.inc:806
-#, php-format
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "Bạn cần xác định mật khẩu hiện tại để có thể tiếp tục."
+
+#: plugins/personal/generic/class_user.inc:653
 msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
-msgstr "Không thế xóa file '%s'!"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "Mật khẩu mới"
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr "Không thể tạo ra folder '%s'!"
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "Mật khẩu mới và mật khẩu cũ quá giống nhau."
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr "Không thể xóa folder '%s'!"
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "Mật khẩu mới cần được cắt ngắn lại."
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
-msgstr "Kiểm tra hỗ trợ %s"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
+msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr "Cài đặt và kích hoạt mô-đun PHP %s."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
+msgstr ""
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/class_msgPool.inc:876
-#, php-format
-msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr "Lỗi nghiêm trọng: không có vị trí lớp nào được xác định - xin hãy chạy '%s' để sửa lỗi này"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
+msgstr ""
 
-#: include/functions.inc:142
-#, php-format
-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"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
+msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
-msgstr "Lỗi nặng"
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
+msgstr ""
 
-#: include/functions.inc:512
-#, 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'."
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
+msgstr ""
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
-msgstr "Lỗi xác định thẩm quyền"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
+msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-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!"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
+msgstr ""
 
-#: include/functions.inc:678
-#, 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!"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
+msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr "LDAP server trả về: %s"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
+msgstr ""
 
-#: include/functions.inc:859
-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."
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
+msgstr ""
 
-#: include/functions.inc:1130
-#, 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!"
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
+msgstr ""
 
-#: include/functions.inc:1132
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
+msgstr ""
 
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "Cấu hình"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
+msgstr ""
 
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "chưa hoàn thành"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
+msgstr ""
 
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "Cứ tiếp tục"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
+msgstr ""
 
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "Cứ hiệu chỉnh"
+#: plugins/config/class_recoveryConfig.inc:73
+msgid ""
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
+msgstr ""
 
-#: include/functions.inc:1563
-#, 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"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
+msgstr ""
 
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "các entry cho mỗi trang"
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
+msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "Áp dụng bộ lọc"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
+msgstr ""
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:2118
+#: plugins/config/class_recoveryConfig.inc:90
 #, php-format
-msgid "%sKiB"
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:2119
+#: plugins/config/class_recoveryConfig.inc:91
 #, php-format
-msgid "%sMiB"
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/functions.inc:2120
+#: plugins/config/class_recoveryConfig.inc:94
 #, php-format
-msgid "%sGiB"
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/functions.inc:2124
+#: plugins/config/class_recoveryConfig.inc:109
 #, php-format
-msgid "%sZiB"
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/functions.inc:2125
+#: plugins/config/class_recoveryConfig.inc:110
 #, php-format
-msgid "%sYiB"
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-
-#: include/functions.inc:2294
+#: plugins/config/class_recoveryConfig.inc:113
 #, php-format
 msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
-msgstr "Không thể viết lên revision file!"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
+msgstr "Cấu hình"
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
-msgstr "Cảnh báo LDAP"
-
-#: include/functions.inc:2586
-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 đồ!"
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
+msgstr "Xem và cảm nhận"
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: 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 ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
+msgstr "Theme"
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
-msgstr ""
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
+msgstr "Múi giờ"
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
-msgstr "Đã có lớp"
-
-#: include/functions.inc:2668
-msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
+msgstr "Thiết lập mật khẩu"
+
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/functions.inc:3175
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
+msgstr "Độ dài tối thiểu của mật khẩu"
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
-msgstr "Không thể phân phối một ID miễn phí!"
-
-#: include/functions.inc:3345
-#, 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!"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
+msgstr "Sử dụng việc hết hạn tài khoản"
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_configInLdap.inc:144
+msgid ""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "Tên Mẫu"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
+msgstr ""
 
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
-msgstr "Tất cả các đối tượng trong hạng mục này"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
+msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "File"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
+msgstr ""
 
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "Dòng"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
+msgstr "Hiển thị tóm tắt trên danh sách"
 
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "Lá»—i PHP"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "lá»›p"
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
+msgstr ""
 
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "chức năng"
+#: plugins/config/class_configInLdap.inc:168
+msgid ""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
+msgstr ""
 
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "tĩnh"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
+msgstr ""
 
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "phương pháp"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
+msgstr ""
 
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "Dò theo"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
+msgstr ""
 
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "Loại"
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
+msgstr ""
 
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "Tranh luận"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
+msgstr "Đăng nhập và phiên"
 
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "Tạo ra trang này khiến cho bộ dịch PHP sinh ra một số lỗi!"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
+msgstr "Thuộc tính đăng nhập"
 
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
-msgstr "Gửi thông báo lỗi"
-
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "Thông tin Toggle"
-
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
-msgstr "Xin hãy sửa lỗi trên và reload trang trên."
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
+msgstr "Thực thi việc mã hóa các kết nối"
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
+msgstr "Cảnh báo nếu một phiên chưa được mã hóa"
+
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "Timestamp"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
+msgstr "Thời gian cho một phiên (một Session)"
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s (Năm-tháng-ngày)"
-
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
+msgstr "Bật chức năng snapshots"
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr "Gốc snapshot"
 
-#: include/class_xml.inc:66
-msgid "in"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
-msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
-msgstr "Hủy bỏ tất"
-
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
-msgstr "Không thể paste"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
+msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
-msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
+msgstr "Kho lưu trữ người và nhóm"
+
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
+msgstr "Thuộc tính DN người"
+
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "Nhóm người dùng"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "Không rõ"
+#: plugins/config/class_configInLdap.inc:315
+msgid ""
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1853
+#: plugins/config/class_configInLdap.inc:377
 msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "Cơ sở"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
+msgstr "Sá»­a lá»—i"
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:387
+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 ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
+msgstr "Thời gian truy vấn LDAP tối đa"
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-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:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
+msgstr "Đăng nhập thống kê LDAP"
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
-
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
-msgstr "Quản lý các danh sách kiểm soát truy cập"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
+msgstr "Cấp độ sửa lỗi"
 
-#: include/class_acl.inc:118
-#, php-format
-msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Entry '%s' không được biết đến!"
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Đăng nhập thất bại: %s"
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
+msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
-msgstr "ObjecType được chỉ định đang rỗng hặc không hợp lệ!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
+msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/index.php:150
-#, php-format
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
-msgstr "Lá»—i Smarty"
-
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: html/index.php:282
-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
-msgid "Please specify your password!"
-msgstr "Xin hãy xác định mật mã của bạn!"
-
-#: html/index.php:304
-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:334
-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:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "Tất cả các nhóm đối tượng"
+
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: html/index.php:596
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "Trình duyệt của bạn đã vô hiệu cookies. Xin hãy cho phép cookies vào và tải lại trang này trước khi đăng nhập!"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
+msgstr ""
 
-#: html/main.php:115
-msgid "PHP configuration"
-msgstr "Cấu hình PHP"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
+msgstr ""
 
-#: html/main.php:116
+#: plugins/config/class_mainPluginsConfig.inc:55
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
-msgstr "Thay đổi mật khẩu"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
+msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
-msgstr "Mật khẩu của bạn chuẩn bị hết hạn, xin hãy thay đối mật khẩu của bạn!"
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
+msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr "Hết dung lượng bộ nhớ!"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr ""
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
-msgstr "Vô hiệu việc kiểm tra ACL của người dùng"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
+msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
-msgstr "Plugin"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
+msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid ""
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Không thể truy cập vào thư mục '%s' được xác định là thư mục soạn thảo!"
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "Các bộ phận"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
-msgstr ""
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "Properties"
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
+#: plugins/admin/departments/class_department.inc:67
+#, php-format
+msgid "Name of %s"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:495
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "There is no account using email \"%s\""
+msgid "A name for this %s"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
+#: plugins/admin/departments/class_department.inc:72
 #, php-format
-msgid "There are several accounts using email \"%s\""
+msgid "Short description of this %s"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "Các danh mục"
+
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+msgid "Category of this %s"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/admin/departments/class_department.inc:84
+#, php-format
+msgid "Manager of this %s"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
-msgstr "Smarty"
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "Quốc Gia"
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/admin/departments/class_department.inc:102
+#, php-format
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "Tên vị trí"
-
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
-msgstr "Kết nối TLS"
-
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
-msgstr "Thẩm định quyền"
-
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "Admin DN"
-
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "Mật khẩu Admin"
-
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
-msgstr "Tình trạng hiện tại"
-
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
-msgstr "Cài đặt LDAP"
-
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
-msgstr "Thiết lập kết nối LDAP"
-
-#: setup/class_setupStep_Ldap.inc:109
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
-#, php-format
-msgid "Anonymous bind to server '%s' failed!"
-msgstr "Kết nối nặc danh với server '%s' thất bại!"
-
-#: setup/class_setupStep_Ldap.inc:168
-#, php-format
-msgid "Bind as user '%s' failed!"
-msgstr "Kết nối với vai trò người dùng '%s' thất bại!"
-
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
-#, php-format
-msgid "Anonymous bind to server '%s' succeeded."
-msgstr "Kết nối nặc danh đến server '%s' thành công."
-
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
-msgstr "Xin hãy xác định người dùng và mật khẩu!"
-
-#: setup/class_setupStep_Ldap.inc:178
-#, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
-msgstr "Kết nối với tư cách người dùng '%s' đến server '%s' thành công!"
-
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
-#, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
-msgstr "Chào mừng"
-
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "Kết thúc"
-
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
-msgstr "Kết thúc - viết file cấu hình"
-
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
-msgstr "Viết file cấu hình"
-
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "File cấu hình của bạn hiện cả thế giới đều đọc được. Xin hãy cập nhật quyền truy cập file!"
-
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Cấu hình hiện tại không thể đọc được hoặc nó không tồn tại."
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "Danh sách các bộ phận"
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
-msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
-msgstr "Di trú"
-
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
-msgstr "Kiểm tra các module và mở rộng của PHP"
-
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
-msgstr "Thanh tra LDAP"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
+msgstr "Quản lý người dùng"
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
 msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
-msgstr ""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "Danh sách người dùng"
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
-msgstr "Kiểm tra những người dùng ẩn"
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
-msgstr "Kiểm tra siêu admin"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "Tên thật"
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
-msgstr "Kiểm tra người dùng bên ngoài cây con người"
-
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr "Kiểm tra nhóm bên ngoài cây nhóm"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr "Kiểm tra các bộ phận ẩn"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
+msgstr "Áp dụng mẫu"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
-msgstr "Kiểm tra các số ID cuả người dùng (UID) được nhân bản"
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
-msgstr "Yêu cầu LDAP thất bại"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "Thất bại"
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "Vai trò"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
+msgstr "Số fax"
+
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
-msgstr "Lỗi di trú"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
+
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "Các nhóm"
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
-msgstr "Chuyển người dùng sang cây người dùng được cấu hình"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
-msgstr "đến"
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
-msgstr "Tham chiếu sau sẽ được cập nhật"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Đã tìm thấy %s nhóm bên ngoài cây được cấu hình '%s'."
-
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "Nhóm đối tượng"
 
-#: setup/class_setupStep_Migrate.inc:1378
-#, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
-#, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "Nhóm "
+
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr "Cài đặt ngôn ngữ"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "Các đối tượng thành viên"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
-msgstr "Bước này cho phép bạn lựa chọn ngôn ngữ bạn muốn dùng."
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
+msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
+msgstr ""
+
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+"Putting both workstations and terminals in the same group is not allowed"
+msgstr ""
+
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "Danh sách các nhóm"
+
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
-msgstr "Tin nhắn chào mừng"
-
-#: setup/class_setupStep_Checks.inc:37
-msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr "Kiểm tra cài đặt"
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "Áp dụng GID"
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
-msgstr "Kiểm tra cơ bản cho khả năng tương thích và mở rộng PHP "
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
-msgstr "Kiểm tra phiên bản PHP"
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP phải là phiên bản %s hoặc như trên."
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "Các thành viên nhóm"
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr "Xin hãy cập nhật cho một phiên bản hỗ trợ."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
-msgstr "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
-msgstr "đăng ký_toàn cầu (register_globals) là một cơ chế PHP dùng để đăng ký tất cả các biến số toàn cầu mà có thể truy cập từ các tập lệnh mà không phải thay đổi phạm vi. Đây có thể là một rủi ro về bảo mật."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Tìm kiếm 'register_globals' trong thư mục php.ini của bạn và chuyển nó thành 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP sử dụng giá trị này để phần mềm thu dọn rác có thể sóa các phiên cũ đi."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr "Thiết lập giá trị này đến một ngày sẽ ngăn cản việc mất đi các phiên và cookies trước khi chúng thực sự hết hạn."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Tìm kiếm  'session.gc_maxlifetime' trong thư mục php.ini của bạn và thiết lập nó đển 86400 hoặc cao hơn."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
-msgstr "Tắt"
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "Các thành viên"
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Tìm kiếm  'session.auto_start' trong thư mục php.ini của bạn và đặt nó thành 'Off'."
-
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "Lựa chọn này sẽ ảnh hưởng tới việc sử lý đầu vào PHP. Tắt chức năng này đi, để tăng khả năng hoạt động."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr "Tìm kiếm 'implicit_flush' trong thư mục php.ini của bạn và chuyển nó sang 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
-msgstr "Thời gian chạy ít nhất là 30 giây."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
-msgstr "Tìm kiếm 'max_execution_time' trong thư mục php.ini của bạn và thiết lập nó đến '30' hoặc cao hơn."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
+msgstr "Không có cài đặt ACL cho mục này"
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
-msgstr "Tăng tính bảo mật của server bằng việc thiết lập expose_php thành 'off'. PHP sẽ không gửi bất cứ thông tin nào về server bạn đang chạy trong trường hợp này."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
+msgstr "ACL cho các đối tượng sau: %s"
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr "Tìm kiếm 'expose_php' trong thư much php.ini của bạn và chuyển nó thành 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr "Hiệu chính mục ACL"
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr "Tăng cường khả năng hoạt động cho server của bạn bằng việc thiết lập magic_quotes_gpc thành 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
+msgstr "Xác lập mục ACL"
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
-msgstr "Tìm kiếm 'zend.ze1_compatibility_mode' trong thư mục  php.ini và chuyển nó thành 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
+msgstr "Danh sách tất cả các mục ACL hiện có"
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
-msgstr "Lỗi cài đặt"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
+msgstr "Tất cả các đối tượng hiện trong  cây thư mục con hiện tại"
 
-#: setup/class_setup.inc:202
-msgid "Completed"
-msgstr "Đã hoàn thành"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
+msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
-msgstr "Tiếp tục"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "đọc"
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "viết"
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr "Hiển thị/ Ẩn các thiết lập cao cấp "
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr "Tạo ra đối tượng"
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "Đối tượng này không có mối quan hệ nào với các đối tượng khác."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr "Dịch chuyển đối tượng"
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
+msgstr "Xóa đối tượng"
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
+msgstr "Hoàn thành đối tượng"
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Chứa các thiết lập cho các đối tượng: %s"
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
-msgstr ""
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
+msgstr "Các vai trò kiểm soát truy cập"
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
-
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr "Hộp thoại này sẽ tự động thêm một siêu admin mới vào cây LDAP của bạn."
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
-msgstr ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "ID người dùng"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
+msgstr "Mật khẩu (nhập lại)"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
-msgstr ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr "Wizard sẽ giúp bạn những gì?"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr "Tạo ra một cấu hình trang đơn, đơn giản"
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Cố gắng tìm ra vấn đề trong cài đặt PHP và LDAP của bạn "
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
-msgstr ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Cho phép bạn lựa chọn từ một loạt các phím chuyển cấu hình cơ bản và cao cấp"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr "Di trú có hướng dẫn của các cây LDAP hiện có"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
+msgstr "Wizard không thể làm gì được cho bạn?"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
-msgstr ""
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr "Tìm được mọi lỗi cấu hình có thể xảy ra"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Di trú mọi cài đặt LDAP - và tạo ra các xổ backup!"
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
+#: setup/setup_welcome.tpl.c:32
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "Bạn đã thay đổi mật khẩu thành công. Hãy nhớ thay đổi cả các chương trình cấu hình để sử dụng được nó."
-
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "Thiết lập của người dùng"
-
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "Bỏ mật khẩu"
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "Đặt mật khẩu mới"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "Ảnh cá nhân"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "Ảnh của người sử dụng"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr "Hiện tại"
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "Xóa ảnh "
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr "Sau khi di trú"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
-msgstr "Bạn không được phép thay đổi mật khẩu tại thời điểm này"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "Đóng"
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "Phát hiện xung đột khóa"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
+msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
-msgstr ""
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
+msgid ""
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
+msgstr "Nếu bạn muốn biết việc gì sẽ được tiến hành khi di trú các entry được chọn này, hãy sử dụng phím 'hiển thị thay đổi 'để xem định dạng LDIF."
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
+msgstr "Hiển thị các thay đổi"
+
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "Tiếp tục"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr "Kiểm tra lại"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "Lựa chọn giới hạn kích cỡ khiến cho hoạt động của LDAP nhanh hơn và giúp cho LDAP server không chịu quá nhiều tải. Cách đơn giản nhất để quản lý được các cơ sở dữ liệu lớn mà không có thời gian hạn định dài là hạn chế việc tìm kiếm của bạn vào các giá trị nhỏ hơn và sử dụng bộ lọc để có được các entry mà bạn đang tìm kiếm."
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr "Tạo ra file cấu hình của bạn"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "Xin hãy lựa chọn cách để phản ứng với phiên này"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "Lờ đi lỗi này và hiển thị tất cả các entry mà LDAP server trả về "
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "Tải cấu hình về"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "Lờ lỗi này đi và hiển thị tất cả các entry mà phù hợp với giới hạn kích cỡ đã xác định và thay vào đó cho tôi sử dụng các bộ lọc "
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr "Trạng thái: "
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "Đặt"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr ""
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4926,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "Vì thế nếu bạn chắc chắn hãy nhấn \"Xóa bỏ\" để tiếp tục hoặc'Hủy bỏ' để dừng lại."
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr "Màn hình đăng nhập"
@@ -4964,72 +4869,106 @@ msgstr "Đăng ký"
 msgid "Click here to log in"
 msgstr "Kích vào đây để đăng nhập"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "Lựa chọn giới hạn kích cỡ khiến cho hoạt động của LDAP nhanh hơn và giúp cho LDAP server không chịu quá nhiều tải. Cách đơn giản nhất để quản lý được các cơ sở dữ liệu lớn mà không có thời gian hạn định dài là hạn chế việc tìm kiếm của bạn vào các giá trị nhỏ hơn và sử dụng bộ lọc để có được các entry mà bạn đang tìm kiếm."
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "Xin hãy lựa chọn cách để phản ứng với phiên này"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "Lờ đi lỗi này và hiển thị tất cả các entry mà LDAP server trả về "
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "Lờ lỗi này đi và hiển thị tất cả các entry mà phù hợp với giới hạn kích cỡ đã xác định và thay vào đó cho tôi sử dụng các bộ lọc "
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "Đặt"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
-msgstr ""
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "Vì thế nếu bạn chắc chắn hãy nhấn \"Xóa bỏ\" để tiếp tục hoặc'Hủy bỏ' để dừng lại."
 
-#: ihtml/themes/breezy/acl.tpl.c:2
-msgid "Assigned ACL for current entry"
-msgstr "Giao ACL cho entry hiện tại"
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "Trang chính"
 
-#: ihtml/themes/breezy/acl.tpl.c:5
-msgid "New ACL"
-msgstr "ACL má»›i"
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "Đăng xuất"
 
-#: ihtml/themes/breezy/acl.tpl.c:8
-msgid "ACL type"
-msgstr "Dạng ACL"
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "Đăng nhập:"
 
-#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
-msgid "Select an acl type"
-msgstr "Chọn một dạng acl"
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:17
-msgid "Additional filter options"
-msgstr "Các lựa chọn thêm cho bộ lọc"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:20
-msgid "Use members from"
-msgstr "Sử dụng các thành viên từ"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:23
-msgid "Available members"
-msgstr "Những thành viên đang có mặt"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
-msgid "List message possible targets"
-msgstr "Liệt kê các mục tiêu có thể gửi tin nhắn"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "Tiếp tục"
 
-#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
-msgid "List message recipients"
-msgstr "Liệt kê người nhận tin"
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "Phát hiện xung đột khóa"
 
-#: ihtml/themes/breezy/acl.tpl.c:44
-msgid "ACL for this object"
-msgstr "ACL cho đối tượng này"
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
+msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:47
-msgid "Available roles"
-msgstr "Các vai trò hiện có"
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
+msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
+msgstr ""
+
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
 msgstr ""
 
 #: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
@@ -5057,182 +4996,242 @@ msgstr ""
 msgid "Operation complete"
 msgstr "Thao tác hoàn thành"
 
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
 #: ihtml/themes/breezy/msg_dialog.tpl.c:8
 msgid "Information"
 msgstr "Thông tin"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "Trang chính"
+#: ihtml/themes/breezy/acl.tpl.c:2
+msgid "Assigned ACL for current entry"
+msgstr "Giao ACL cho entry hiện tại"
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "Đăng xuất"
+#: ihtml/themes/breezy/acl.tpl.c:5
+msgid "New ACL"
+msgstr "ACL má»›i"
+
+#: ihtml/themes/breezy/acl.tpl.c:8
+msgid "ACL type"
+msgstr "Dạng ACL"
+
+#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
+msgid "Select an acl type"
+msgstr "Chọn một dạng acl"
+
+#: ihtml/themes/breezy/acl.tpl.c:17
+msgid "Additional filter options"
+msgstr "Các lựa chọn thêm cho bộ lọc"
+
+#: ihtml/themes/breezy/acl.tpl.c:20
+msgid "Use members from"
+msgstr "Sử dụng các thành viên từ"
+
+#: ihtml/themes/breezy/acl.tpl.c:23
+msgid "Available members"
+msgstr "Những thành viên đang có mặt"
+
+#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
+msgid "List message possible targets"
+msgstr "Liệt kê các mục tiêu có thể gửi tin nhắn"
+
+#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
+msgid "List message recipients"
+msgstr "Liệt kê người nhận tin"
+
+#: ihtml/themes/breezy/acl.tpl.c:44
+msgid "ACL for this object"
+msgstr "ACL cho đối tượng này"
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "Đăng nhập:"
+#: ihtml/themes/breezy/acl.tpl.c:47
+msgid "Available roles"
+msgstr "Các vai trò hiện có"
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
-msgstr "Hiện tại"
+#: plugins/generic/references/contents.tpl.c:5
+msgid ""
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
+msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
-msgstr "Sau khi di trú"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "Đối tượng này không có mối quan hệ nào với các đối tượng khác."
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "Đóng"
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "Thiết lập của người dùng"
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
-msgstr "Tạo ra file cấu hình của bạn"
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "Bỏ mật khẩu"
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "Đặt mật khẩu mới"
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "Tải cấu hình về"
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "Ảnh cá nhân"
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
-msgstr "Trạng thái: "
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "Ảnh của người sử dụng"
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "Xóa ảnh "
+
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
+msgstr "Bạn không được phép thay đổi mật khẩu tại thời điểm này"
+
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
+#: plugins/personal/generic/changed.tpl.c:2
 msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr "Hộp thoại này sẽ tự động thêm một siêu admin mới vào cây LDAP của bạn."
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "Bạn đã thay đổi mật khẩu thành công. Hãy nhớ thay đổi cả các chương trình cấu hình để sử dụng được nó."
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "ID người dùng"
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr "Mật khẩu (nhập lại)"
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
-msgstr "Wizard sẽ giúp bạn những gì?"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
-msgstr "Tạo ra một cấu hình trang đơn, đơn giản"
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Cố gắng tìm ra vấn đề trong cài đặt PHP và LDAP của bạn "
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Cho phép bạn lựa chọn từ một loạt các phím chuyển cấu hình cơ bản và cao cấp"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
-msgstr "Di trú có hướng dẫn của các cây LDAP hiện có"
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
-msgstr "Wizard không thể làm gì được cho bạn?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
-msgstr "Tìm được mọi lỗi cấu hình có thể xảy ra"
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Di trú mọi cài đặt LDAP - và tạo ra các xổ backup!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
+msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
-msgstr "Nếu bạn muốn biết việc gì sẽ được tiến hành khi di trú các entry được chọn này, hãy sử dụng phím 'hiển thị thay đổi 'để xem định dạng LDIF."
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
+msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
-msgstr "Hiển thị các thay đổi"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
+msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
+msgstr ""
+
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
+msgstr ""
+
+#: plugins/admin/acl/remove.tpl.c:2
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
-msgstr "Kiểm tra lại"
+#: plugins/admin/acl/remove.tpl.c:5
+msgid ""
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
+msgstr ""
+
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
diff --git a/locale/zh/fusiondirectory.po b/locale/zh/fusiondirectory.po
index 14120af8da00a0a3d7f0afa6a5c4c40160f2c361..26af8b3b19737262db6a03fb100b47fdc4414baf 100644
--- a/locale/zh/fusiondirectory.po
+++ b/locale/zh/fusiondirectory.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-110\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-09-27 18:04+0200\n"
+"POT-Creation-Date: 2016-11-02 22:53+0100\n"
 "PO-Revision-Date: 2016-09-27 16:01+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n"
@@ -17,4842 +17,4758 @@ msgstr ""
 "Language: zh\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: plugins/generic/welcome/main.inc:25
-#, php-format
-msgid "Welcome %s!"
-msgstr "欢迎 %s!"
-
-#: plugins/generic/references/class_reference.inc:26
-#: plugins/generic/references/class_reference.inc:27
-#: plugins/generic/references/class_reference.inc:44
-msgid "References"
-msgstr "参考"
-
-#: plugins/admin/groups/class_roleGeneric.inc:55
-#: plugins/admin/groups/class_roleGeneric.inc:59
-#: plugins/admin/groups/class_groupManagement.inc:71
-#: plugins/admin/aclrole/class_aclRole.inc:77
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role"
-msgstr "角色"
-
-#: plugins/admin/groups/class_roleGeneric.inc:56
-msgid "Role information"
+#: setup/class_setupStep_Language.inc:30
+#: plugins/personal/generic/class_user.inc:381
+msgid "Preferred language"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:60
-msgid "Organizational role"
+#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
+msgid "Language setup"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:82
-msgid "Informations"
+#: setup/class_setupStep_Language.inc:61
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-#: plugins/admin/groups/group-list.xml:33
-#: plugins/admin/departments/class_department.inc:176
-#: plugins/admin/aclrole/class_aclRole.inc:99
-#: include/simpleplugin/simple-select-list.xml:32
-#: include/simpleplugin/simple-list.xml:32
-#: plugins/admin/users/user-filter.tpl.c:20
-#: include/select/groupSelect/group-filter.tpl.c:14
-#: setup/setup_migrate_adminAccount.tpl.c:8
-msgid "Name"
-msgstr "名称"
-
-#: plugins/admin/groups/class_roleGeneric.inc:86
-#: plugins/admin/groups/class_group.inc:60
-#: plugins/admin/groups/class_ogroup.inc:194
-msgid "Name of this group"
+#: setup/class_setupStep_Language.inc:62
+msgid ""
+"At this point, you can select the site wide default language. Choosing "
+"\"automatic\" will use the language requested by the browser. This setting "
+"can be overriden per user."
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:91
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-#: plugins/admin/groups/group-list.xml:41
-#: plugins/admin/departments/class_department.inc:72
-#: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:103
-#: plugins/personal/generic/class_user.inc:319
-#: include/simpleplugin/simple-select-list.xml:40
-#: include/simpleplugin/simple-list.xml:40
-msgid "Description"
-msgstr "描述"
-
-#: plugins/admin/groups/class_roleGeneric.inc:91
-msgid "Description of the role"
+#: setup/class_setupStep_Language.inc:69
+#: plugins/config/class_configInLdap.inc:485
+msgid "Automatic"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:95
-msgid "Phone number"
-msgstr "电话号码"
-
-#: plugins/admin/groups/class_roleGeneric.inc:99
-msgid "Fax number"
+#: setup/class_setupStep_Checks.inc:30 setup/class_setupStep_Migrate.inc:206
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:105
-msgid "Role members"
+#: setup/class_setupStep_Checks.inc:37
+msgid ""
+"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
+"information)</a>)"
 msgstr ""
 
-#: plugins/admin/groups/class_roleGeneric.inc:108
-msgid "Add users for the role"
+#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
+msgid "Installation check"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:33
-#: plugins/admin/groups/class_ogroup.inc:161
-#: plugins/admin/groups/class_ogroup.inc:162
-msgid "Group"
-msgstr "组"
-
-#: plugins/admin/groups/class_group.inc:34
-msgid "POSIX group information"
+#: setup/class_setupStep_Checks.inc:50
+msgid "Basic checks for PHP compatibility and extensions"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:37
-msgid "POSIX group"
+#: setup/class_setupStep_Checks.inc:67
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:38
-msgid "POSIX user group"
+#: setup/class_setupStep_Checks.inc:68
+#, php-format
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:56
-#: plugins/admin/groups/class_ogroup.inc:190
-#: plugins/admin/groups/group-list.xml:49
-#: plugins/admin/departments/class_department.inc:63
-#: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:95
-#: plugins/admin/acl/class_aclAssignment.inc:38
-msgid "Properties"
-msgstr "属性"
-
-#: plugins/admin/groups/class_group.inc:65
-#: plugins/admin/groups/class_ogroup.inc:199
-msgid "Short description of this group"
+#: setup/class_setupStep_Checks.inc:69
+msgid "Please upgrade to a supported version."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID"
-msgstr "强制 GID"
-
-#: plugins/admin/groups/class_group.inc:69
-msgid "Force GID value for this group"
+#: setup/class_setupStep_Checks.inc:76
+msgid "FusionDirectory requires this module to talk with your LDAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:73
-#: plugins/admin/groups/class_group.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:422
-msgid "GID"
-msgstr "GID"
-
-#: plugins/admin/groups/class_group.inc:73
-msgid "GID value for this group"
+#: setup/class_setupStep_Checks.inc:84
+msgid ""
+"FusionDirectory requires this module for an internationalized interface."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:80
-#: plugins/admin/groups/class_group.inc:83
-msgid "Group members"
-msgstr "组成员"
+#: setup/class_setupStep_Checks.inc:92
+msgid ""
+"FusionDirectory requires this module to communicate with different types of "
+"servers and protocols."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:90
-#: plugins/admin/groups/class_ogroup.inc:216
-#: plugins/personal/posix/class_posixAccount.inc:196
-msgid "System trust"
-msgstr "信赖的系统"
+#: setup/class_setupStep_Checks.inc:100
+msgid "FusionDirectory requires this module for the samba integration."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Trust mode"
-msgstr "信赖模式"
+#: setup/class_setupStep_Checks.inc:108
+msgid ""
+"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
+"SSHA encryption."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:94
-#: plugins/admin/groups/class_ogroup.inc:220
-#: plugins/personal/posix/class_posixAccount.inc:200
-msgid "Type of authorization for those hosts"
+#: setup/class_setupStep_Checks.inc:116
+msgid "FusionDirectory requires this module to talk to an IMAP server."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "disabled"
-msgstr "禁用"
+#: setup/class_setupStep_Checks.inc:123
+msgid "mbstring"
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-#: plugins/personal/posix/class_posixAccount.inc:226
-msgid "full access"
-msgstr "完全访问权限"
+#: setup/class_setupStep_Checks.inc:124
+msgid "FusionDirectory requires this module to handle unicode strings."
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:98
-#: plugins/admin/groups/class_ogroup.inc:224
-#: plugins/personal/posix/class_posixAccount.inc:204
-msgid "allow access to these hosts"
-msgstr "允许访问这些主机"
+#: setup/class_setupStep_Checks.inc:130
+msgid "imagick"
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:101
-#: plugins/admin/groups/class_ogroup.inc:227
-msgid "Only allow this group to connect to this list of hosts"
+#: setup/class_setupStep_Checks.inc:131
+msgid "FusionDirectory requires this extension to handle images."
 msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478 include/functions.inc:859
-#: include/functions.inc:2568 include/class_xml.inc:55
-#: include/simpleplugin/class_simpleTabs.inc:319 html/index.php:596
-#: html/main.php:158 setup/class_setupStep_Ldap.inc:198
-#: setup/class_setupStep_Migrate.inc:572
-#: setup/class_setupStep_Migrate.inc:1083
-#: setup/class_setupStep_Migrate.inc:1202
-#: setup/class_setupStep_Migrate.inc:1313
-#: setup/class_setupStep_Migrate.inc:1377
-#: setup/class_setupStep_Migrate.inc:1421 ihtml/themes/breezy/islocked.tpl.c:5
-#: ihtml/themes/breezy/remove.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:5
-#: setup/setup_checks.tpl.c:8
-msgid "Warning"
-msgstr "警告"
+#: setup/class_setupStep_Checks.inc:137
+msgid "compression module"
+msgstr ""
 
-#: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:478
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:138
+msgid "FusionDirectory requires this extension to handle snapshots."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:63
-#, php-format
-msgid "Unknown type : %s"
+#: setup/class_setupStep_Checks.inc:148
+msgid ""
+"register_globals is a PHP mechanism to register all global variables to be "
+"accessible from scripts without changing the scope. This may be a security "
+"risk."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:67
-#, php-format
-msgid "Non existing dn: %s"
+#: setup/class_setupStep_Checks.inc:149
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:156
-msgid "Object group"
-msgstr "对象组"
+#: setup/class_setupStep_Checks.inc:156
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:157
-msgid "Object group information"
+#: setup/class_setupStep_Checks.inc:157
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:206
-msgid "Member objects"
-msgstr "成员对象"
+#: setup/class_setupStep_Checks.inc:158
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:209
-msgid "Objects member of this group"
+#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
+#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
+msgid "Off"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:321
+#: setup/class_setupStep_Checks.inc:166
 msgid ""
-"Putting both workstations and terminals in the same group is not allowed"
+"In Order to use FusionDirectory without any trouble, the session.auto_start "
+"option in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/group-list.xml:11
-msgid "List of groups"
-msgstr "组列表"
-
-#: plugins/admin/groups/group-list.xml:54
-#: plugins/admin/departments/dep-list.xml:37
-#: plugins/admin/users/user-list.xml:62 include/class_listing.inc:1284
-#: include/simpleplugin/simple-list.xml:48
-msgid "Actions"
-msgstr "动作"
+#: setup/class_setupStep_Checks.inc:167
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/admin/groups/group-list.xml:66
-#: plugins/admin/departments/dep-list.xml:48
-#: plugins/admin/users/user-list.xml:73
-#: include/simpleplugin/simple-list.xml:59
-#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
-msgid "Create"
-msgstr "创建"
+#: setup/class_setupStep_Checks.inc:174
+msgid ""
+"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
+"may cause errors that are not reproducable! Increase it for larger setups."
+msgstr ""
 
-#: plugins/admin/groups/group-list.xml:74
-#: plugins/admin/groups/group-list.xml:119
-#: plugins/admin/departments/dep-list.xml:79
-#: plugins/admin/users/user-list.xml:108
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-#: include/simpleplugin/class_dialogAttributes.inc:645
-#: include/simpleplugin/class_dialogAttributes.inc:646
-#: include/simpleplugin/class_attribute.inc:2792
-#: include/simpleplugin/class_attribute.inc:2793
-#: include/simpleplugin/simple-list.xml:67
-#: include/simpleplugin/simple-list.xml:112
-msgid "Edit"
-msgstr "编辑"
+#: setup/class_setupStep_Checks.inc:175
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+msgstr ""
 
-#: plugins/admin/groups/group-list.xml:82
-#: plugins/admin/groups/group-list.xml:132
-#: plugins/admin/departments/dep-list.xml:67
-#: plugins/admin/departments/dep-list.xml:88
-#: plugins/admin/users/user-list.xml:115
-#: include/simpleplugin/class_dialogAttributes.inc:655
-#: include/simpleplugin/class_dialogAttributes.inc:656
-#: include/simpleplugin/class_attribute.inc:1887
-#: include/simpleplugin/class_attribute.inc:1888
-#: include/simpleplugin/simple-list.xml:75
-#: include/simpleplugin/simple-list.xml:125
-msgid "Remove"
-msgstr "删除"
+#: setup/class_setupStep_Checks.inc:182
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:31
-#: plugins/personal/roles/class_userRoles.inc:31
-msgid "Groups and roles"
+#: setup/class_setupStep_Checks.inc:183
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:32
-msgid "Manage groups and roles"
+#: setup/class_setupStep_Checks.inc:190
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:33
-msgid "Allows you to manage object groups, POSIX groups and roles"
+#: setup/class_setupStep_Checks.inc:191
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or "
+"higher."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:71
-msgid "Edit role properties"
+#: setup/class_setupStep_Checks.inc:198
+msgid ""
+"Increase the server security by setting expose_php to 'off'. PHP won't send "
+"any information about the server you are running in this case."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Posix"
-msgstr "Posix"
+#: setup/class_setupStep_Checks.inc:199
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:87
-msgid "Edit posix properties"
+#: setup/class_setupStep_Checks.inc:206
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
-msgid "Show user groups"
+#: setup/class_setupStep_Checks.inc:207
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
+"'Off'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
-#: include/select/groupSelect/group-filter.tpl.c:5
-msgid "Show primary groups"
-msgstr "显示主要组"
+#: setup/class_setupStep_Welcome.inc:30 setup/class_setupStep_Welcome.inc:50
+#: setup/class_setupStep_Finish.inc:30
+msgid "Welcome"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
-msgid "Show organizational roles"
+#: setup/class_setupStep_Welcome.inc:51
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
-msgid "Show application groups"
+#: setup/class_setupStep_Welcome.inc:52
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:134
-msgid "Show unidentified groups"
+#: setup/class_setupStep_Migrate.inc:133 include/class_msgPool.inc:486
+#: setup/setup_checks.tpl.c:2 ihtml/themes/breezy/msg_dialog.tpl.c:14
+msgid "Ok"
+msgstr "好"
+
+#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
+msgid "Migrate"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:137
-#: include/select/groupSelect/group-filter.tpl.c:11
-msgid "Show mail groups"
+#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
+msgid "LDAP inspection"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:140
-#: include/select/groupSelect/group-filter.tpl.c:8
-msgid "Show samba groups"
-msgstr "显示 samba 用户组"
+#: setup/class_setupStep_Migrate.inc:225
+msgid "Analyze your current LDAP for FusionDirectory compatibility"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:143
-msgid "Show DSA entries"
+#: setup/class_setupStep_Migrate.inc:233
+msgid "Give all rights on users in the given branch"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
-msgid "Show server groups"
+#: setup/class_setupStep_Migrate.inc:239
+msgid ""
+"Allow users to edit their own information (main tab and posix use only on "
+"base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
-msgid "Show workstation groups"
+#: setup/class_setupStep_Migrate.inc:245
+msgid "Allow users to edit their own password (use only on base)"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:151
-msgid "Show windows groups"
+#: setup/class_setupStep_Migrate.inc:258
+msgid "Inspecting object classes in root object"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:152
-msgid "Show terminal groups"
+#: setup/class_setupStep_Migrate.inc:259
+msgid "Checking permission for LDAP database"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:153
-msgid "Show printer groups"
+#: setup/class_setupStep_Migrate.inc:260
+msgid "Checking for invisible users"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:154
-msgid "Show phone groups"
+#: setup/class_setupStep_Migrate.inc:261
+msgid "Checking for super administrator"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:30
-#: plugins/admin/departments/class_dcObject.inc:31
-#: plugins/admin/departments/class_dcObject.inc:34
-msgid "Domain Component"
+#: setup/class_setupStep_Migrate.inc:262
+msgid "Checking for default ACL roles and groups"
 msgstr ""
 
-#: plugins/admin/departments/class_dcObject.inc:51
-msgid "domain component"
+#: setup/class_setupStep_Migrate.inc:263
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:33
-#: plugins/admin/departments/class_department.inc:39
-#: plugins/admin/departments/dep-list.xml:21
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department"
-msgstr "部门"
-
-#: plugins/admin/departments/class_department.inc:34
-#: plugins/admin/departments/class_department.inc:35
-#: plugins/admin/departments/class_departmentManagement.inc:34
-msgid "Departments"
-msgstr "部门"
-
-#: plugins/admin/departments/class_department.inc:57
-msgid "department"
-msgstr "部门"
-
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "Name of %s"
+#: setup/class_setupStep_Migrate.inc:264
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:67
-#, php-format
-msgid "A name for this %s"
+#: setup/class_setupStep_Migrate.inc:265
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:72
-#, php-format
-msgid "Short description of this %s"
+#: setup/class_setupStep_Migrate.inc:266
+msgid "Checking for duplicated UID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:76
-msgid "Category"
-msgstr "分类"
-
-#: plugins/admin/departments/class_department.inc:76
-#, php-format
-msgid "Category of this %s"
+#: setup/class_setupStep_Migrate.inc:267
+msgid "Checking for duplicated GID numbers"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-msgid "Website"
+#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
+#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
+#: setup/class_setupStep_Migrate.inc:980
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1179
+#: setup/class_setupStep_Migrate.inc:1272
+#: setup/class_setupStep_Migrate.inc:1351
+#: setup/class_setupStep_Migrate.inc:1395
+msgid "LDAP query failed"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:80
-#, php-format
-msgid "Website of this %s"
+#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
+#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
+#: setup/class_setupStep_Migrate.inc:981
+#: setup/class_setupStep_Migrate.inc:1057
+#: setup/class_setupStep_Migrate.inc:1180
+#: setup/class_setupStep_Migrate.inc:1273
+#: setup/class_setupStep_Migrate.inc:1352
+#: setup/class_setupStep_Migrate.inc:1396
+msgid "Possibly the \"root object\" is missing."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:84
-#: plugins/personal/generic/class_user.inc:440
-msgid "Manager"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
+#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
+#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
+#: setup/class_setupStep_Migrate.inc:879
+msgid "Failed"
+msgstr "失败"
 
-#: plugins/admin/departments/class_department.inc:84
+#: setup/class_setupStep_Migrate.inc:347
 #, php-format
-msgid "Manager of this %s"
+msgid "Missing FusionDirectory object class '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:90
-#: plugins/admin/departments/class_department.inc:96
-#: plugins/personal/generic/class_user.inc:334
-msgid "Location"
-msgstr "位置"
-
-#: plugins/admin/departments/class_department.inc:93
-#: plugins/personal/generic/class_user.inc:338
-msgid "State"
-msgstr "州/省"
-
-#: plugins/admin/departments/class_department.inc:99
-#: plugins/admin/departments/class_country.inc:29
-#: plugins/admin/departments/class_country.inc:30
-#: plugins/admin/departments/class_country.inc:33
-msgid "Country"
-msgstr "国家"
-
-#: plugins/admin/departments/class_department.inc:102
-#: plugins/personal/generic/class_user.inc:342
-msgid "Address"
-msgstr "住址"
+#: setup/class_setupStep_Migrate.inc:348
+msgid "Please check your installation."
+msgstr ""
 
-#: plugins/admin/departments/class_department.inc:102
+#: setup/class_setupStep_Migrate.inc:369
 #, php-format
-msgid "A postal address for this %s"
+msgid ""
+"Cannot handle the structural object type of your root object. Please try to "
+"add the object class '%s' manually."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:106
-#: plugins/personal/generic/class_user.inc:350
-msgid "Phone"
-msgstr "电话"
+#: setup/class_setupStep_Migrate.inc:451
+#: setup/class_setupStep_Migrate.inc:1130
+#: include/password-methods/class_password-methods.inc:180
+#: include/functions.inc:541 include/functions.inc:696
+#: include/functions.inc:743 include/functions.inc:843
+#: include/functions.inc:3006 include/functions.inc:3183
+#: include/class_config.inc:322 include/class_ldap.inc:895
+#: include/class_ldap.inc:1257 include/simpleplugin/class_simplePlugin.inc:592
+#: include/simpleplugin/attributes/class_SetAttribute.inc:723
+#: include/class_SnapshotHandler.inc:53 include/class_SnapshotHandler.inc:278
+#: include/class_SnapshotHandler.inc:311 include/class_SnapshotHandler.inc:327
+#: include/class_SnapshotHandler.inc:460 include/class_SnapshotHandler.inc:463
+#: html/index.php:370 html/class_passwordRecovery.inc:531
+msgid "LDAP error"
+msgstr "LDAP 错误"
 
-#: plugins/admin/departments/class_department.inc:106
-msgid "Telephone number"
+#: setup/class_setupStep_Migrate.inc:500
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your LDAP database."
 msgstr ""
 
-#: plugins/admin/departments/class_department.inc:110
-#: plugins/personal/generic/class_user.inc:362
-msgid "Fax"
-msgstr "传真"
-
-#: plugins/admin/departments/class_department.inc:110
-msgid "Facsimile telephone number"
+#: setup/class_setupStep_Migrate.inc:511
+#, php-format
+msgid "The specified user \"%s\" does not have full access to your ldap database."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:35
-msgid "Manage departments"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:572
+#: setup/class_setupStep_Migrate.inc:1083
+#: setup/class_setupStep_Migrate.inc:1202
+#: setup/class_setupStep_Migrate.inc:1313
+#: setup/class_setupStep_Migrate.inc:1377
+#: setup/class_setupStep_Migrate.inc:1421 setup/class_setupStep_Ldap.inc:198
+#: include/class_xml.inc:55 include/functions.inc:859
+#: include/functions.inc:2541 include/simpleplugin/class_simpleTabs.inc:319
+#: html/index.php:596 html/main.php:158
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181 setup/setup_checks.tpl.c:8
+#: ihtml/themes/breezy/islocked.tpl.c:5 ihtml/themes/breezy/remove.tpl.c:2
+#: ihtml/themes/breezy/msg_dialog.tpl.c:5
+msgid "Warning"
+msgstr "警告"
 
-#: plugins/admin/departments/class_departmentManagement.inc:36
+#: setup/class_setupStep_Migrate.inc:574
+#, php-format
 msgid ""
-"Manage departments, countries, domain components, domains, localities and "
-"organization nodes,"
+"Found %s user(s) that will not be visible in FusionDirectory or which are "
+"incomplete."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:38
-msgid "Users and groups"
+#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
+msgid "User migration"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:30
-#: plugins/admin/departments/class_locality.inc:31
-#: plugins/admin/departments/class_locality.inc:34
-msgid "Locality"
+#: setup/class_setupStep_Migrate.inc:671
+#: setup/class_setupStep_Migrate.inc:1027
+msgid "Migration error"
 msgstr ""
 
-#: plugins/admin/departments/class_locality.inc:51
-msgid "locality"
+#: setup/class_setupStep_Migrate.inc:673
+#, php-format
+msgid "Cannot migrate entry \"%s\":"
 msgstr ""
 
-#: plugins/admin/departments/class_country.inc:50
-msgid "country"
+#: setup/class_setupStep_Migrate.inc:857
+#, php-format
+msgid "FD 1.0.7 administrative accounts found: %s"
 msgstr ""
 
-#: plugins/admin/departments/class_domain.inc:30
-#: plugins/admin/departments/class_domain.inc:31
-#: plugins/admin/departments/class_domain.inc:34
-msgid "Domain"
-msgstr "域"
-
-#: plugins/admin/departments/class_domain.inc:51
-msgid "domain"
+#: setup/class_setupStep_Migrate.inc:860
+#, php-format
+msgid "FD 1.0.7 administrative groups found: %s"
 msgstr ""
 
-#: plugins/admin/departments/dep-list.xml:9
-msgid "List of departments"
-msgstr "部门列表"
-
-#: plugins/admin/departments/class_organization.inc:30
-#: plugins/admin/departments/class_organization.inc:31
-#: plugins/admin/departments/class_organization.inc:34
-#: plugins/personal/generic/class_user.inc:420
-msgid "Organization"
-msgstr "组织/公司"
-
-#: plugins/admin/departments/class_organization.inc:51
-msgid "organization"
+#: setup/class_setupStep_Migrate.inc:862
+msgid ""
+"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
+"file at the end of the setup to migrate it.<br/>"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:11
-msgid "List of users"
-msgstr "用户列表"
-
-#: plugins/admin/users/user-list.xml:33
-msgid "Surname"
-msgstr "å§“"
-
-#: plugins/admin/users/user-list.xml:41
-msgid "Given name"
-msgstr "名"
+#: setup/class_setupStep_Migrate.inc:865
+msgid ""
+"There is no valid FusionDirectory 1.0.8 administrator account inside your "
+"LDAP."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:49
-#: plugins/personal/generic/class_user.inc:377
-#: include/select/userSelect/class_userSelect.inc:32
-#: plugins/personal/generic/paste_generic.tpl.c:11
-#: ihtml/themes/breezy/recovery.tpl.c:26
-msgid "Login"
-msgstr "登录名"
+#: setup/class_setupStep_Migrate.inc:866 setup/class_setupStep_Migrate.inc:881
+#: include/simpleplugin/simple-list.xml:59
+#: plugins/admin/departments/dep-list.xml:48
+#: plugins/admin/users/user-list.xml:73 plugins/admin/groups/group-list.xml:66
+msgid "Create"
+msgstr "创建"
 
-#: plugins/admin/users/user-list.xml:79
-#: plugins/personal/generic/class_user.inc:276
-#: plugins/personal/generic/class_user.inc:282
-msgid "User"
+#: setup/class_setupStep_Migrate.inc:871
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
+#: plugins/admin/users/class_userManagement.inc:42
+msgid "Users"
 msgstr "用户"
 
-#: plugins/admin/users/user-list.xml:87
-#: include/simpleplugin/class_simpleManagement.inc:216
-msgid "From template"
+#: setup/class_setupStep_Migrate.inc:874
+msgid "Groups"
+msgstr "用户组"
+
+#: setup/class_setupStep_Migrate.inc:880
+msgid "There is no FusionDirectory administrator account inside your LDAP."
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:95 include/class_template.inc:36
-#: include/simpleplugin/class_simpleManagement.inc:210
-#: include/simpleplugin/class_simpleManagement.inc:407
-#: ihtml/themes/breezy/template.tpl.c:5
-msgid "Template"
-msgstr "模板"
+#: setup/class_setupStep_Migrate.inc:918
+msgid "Gives all rights on all objects"
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:127
-msgid "Lock users"
+#: setup/class_setupStep_Migrate.inc:935 include/class_management.inc:679
+#: include/class_listing.inc:551 include/class_xml.inc:58
+#: include/password-methods/class_password-methods-sasl.inc:59
+#: include/password-methods/class_password-methods-sasl.inc:85
+#: include/password-methods/class_password-methods.inc:395
+#: include/password-methods/class_password-methods.inc:405
+#: include/class_CopyPasteHandler.inc:275 include/functions.inc:3130
+#: include/functions.inc:3151 include/functions.inc:3191
+#: include/functions.inc:3203 include/functions.inc:3207
+#: include/functions.inc:3214 include/functions.inc:3223
+#: include/functions.inc:3285 include/class_msg_dialog.inc:128
+#: include/class_msg_dialog.inc:164 include/class_config.inc:357
+#: include/class_msgPool.inc:220 include/class_msgPool.inc:240
+#: include/class_msgPool.inc:270 include/class_msgPool.inc:687
+#: include/class_msgPool.inc:718 include/class_msgPool.inc:745
+#: include/simpleplugin/class_simpleTabs.inc:89
+#: include/simpleplugin/class_simpleTabs.inc:401
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:87
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:89
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#: include/simpleplugin/attributes/class_FileAttribute.inc:296
+#: include/class_SnapshotHandler.inc:453 include/class_plugin.inc:793
+#: include/class_plugin.inc:1524 html/index.php:452 html/index.php:473
+#: html/index.php:483 html/index.php:545 html/index.php:555
+#: setup/setup_checks.tpl.c:5 ihtml/themes/breezy/msg_dialog.tpl.c:2
+msgid "Error"
+msgstr "错误"
+
+#: setup/class_setupStep_Migrate.inc:995
+msgid "Default ACL roles have not been inserted"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:135
-msgid "Unlock users"
+#: setup/class_setupStep_Migrate.inc:997
+msgid "Some default ACL roles are missing"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:146
-msgid "Apply template"
+#: setup/class_setupStep_Migrate.inc:999
+msgid "Default ACL roles have been inserted"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:177
-msgid "New user from template"
+#: setup/class_setupStep_Migrate.inc:1029
+#, php-format
+msgid "Cannot add ACL role \"%s\":"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:190
-msgid "Edit user"
-msgstr "编辑用户"
+#: setup/class_setupStep_Migrate.inc:1084
+#, php-format
+msgid "Found %s user(s) outside the configured tree \"%s\"."
+msgstr ""
 
-#: plugins/admin/users/user-list.xml:199
-msgid "%{filter:lockLabel(userPassword)}"
+#: setup/class_setupStep_Migrate.inc:1098
+#: setup/class_setupStep_Migrate.inc:1112
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: plugins/admin/users/user-list.xml:213
-msgid "Remove user"
+#: setup/class_setupStep_Migrate.inc:1130
+msgid "Cannot move entries to the requested department!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
-#: setup/class_setupStep_Migrate.inc:871
-msgid "Users"
-msgstr "用户"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "Entry will be moved from"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:43
-msgid "Manage users"
+#: setup/class_setupStep_Migrate.inc:1142
+msgid "to"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:44
-msgid "Manage user accounts and their properties"
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "The following references will be updated"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:149
-#: include/class_management.inc:334 include/class_management.inc:483
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
-#: include/simpleplugin/class_simpleManagement.inc:653
-#: include/simpleplugin/class_simpleManagement.inc:753
-#: include/simpleplugin/class_simpleManagement.inc:804
-msgid "Permission"
-msgstr "允许"
+#: setup/class_setupStep_Migrate.inc:1203
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:187
-msgid "Account locking"
+#: setup/class_setupStep_Migrate.inc:1217
+#: setup/class_setupStep_Migrate.inc:1231
+msgid "Move groups into configured groups tree"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:188
+#: setup/class_setupStep_Migrate.inc:1314
 #, php-format
-msgid ""
-"Password method \"%s\" does not support locking. Account \"%s\" has not been"
-" locked!"
+msgid "Found %s department(s) that will not be visible in FusionDirectory."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:216
-msgid "Unlock account"
+#: setup/class_setupStep_Migrate.inc:1323
+#: setup/class_setupStep_Migrate.inc:1328
+msgid "Department migration"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:218
-msgid "Lock account"
+#: setup/class_setupStep_Migrate.inc:1378
+#, php-format
+msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:283
-msgid "User account"
+#: setup/class_setupStep_Migrate.inc:1422
+#, php-format
+msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:245
-#: plugins/personal/generic/class_user.inc:277
-msgid "User account information"
+#: setup/class_setupStep_Ldap.inc:33
+msgid "LDAP connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
-msgid "No ACL settings for this category"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Location name"
+msgstr "位置名称"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
-#, php-format
-msgid "ACL for these objects: %s"
+#: setup/class_setupStep_Ldap.inc:36
+msgid "Name of this connexion to show in the LDAP server list"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
-msgid "Edit category ACL"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "Connection URI"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-#: include/class_msgPool.inc:522 include/simpleplugin/class_attribute.inc:2802
-#: include/simpleplugin/class_attribute.inc:2803
-#, php-format
-msgid "Delete"
-msgstr "删除"
+#: setup/class_setupStep_Ldap.inc:41
+msgid "URI to contact the LDAP server. Usually starts with ldap://"
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
-msgid "Reset category ACL"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "TLS connection"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
-#: ihtml/themes/breezy/acl.tpl.c:41
-msgid "List of available ACL categories"
+#: setup/class_setupStep_Ldap.inc:46
+msgid "Should TLS be used to connect to this LDAP server?"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
-msgid "All objects in current subtree"
+#: setup/class_setupStep_Ldap.inc:50
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:37
+#: ihtml/themes/breezy/simple-list.tpl.c:2
+msgid "Base"
+msgstr "位置"
+
+#: setup/class_setupStep_Ldap.inc:50
+msgid "The LDAP directory base"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
-#, php-format
-msgid "Edit ACL for \"%s\""
+#: setup/class_setupStep_Ldap.inc:56
+msgid "Authentication"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
-msgid "read"
-msgstr "读"
+#: setup/class_setupStep_Ldap.inc:59
+msgid ""
+"DN of the admin account to use for binding to the LDAP. Base is "
+"automatically appended."
+msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
-msgid "write"
-msgstr "写"
+#: setup/class_setupStep_Ldap.inc:74
+msgid "Admin DN"
+msgstr "管理员 DN"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
-#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
-#: include/class_SnapshotDialogs.inc:182
-msgid "Object"
-msgstr "对象"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Admin password"
+msgstr "管理员口令"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
-msgid "Show/hide advanced settings"
+#: setup/class_setupStep_Ldap.inc:77
+msgid "Password for the admin account to use for binding to the LDAP"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
-msgid "Create objects"
-msgstr ""
+#: setup/class_setupStep_Ldap.inc:83
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status"
+msgstr "状态"
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
-msgid "Move objects"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Current status"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
-msgid "Remove objects"
+#: setup/class_setupStep_Ldap.inc:86
+msgid "Result of last attempt at checking LDAP binding and basic schemas"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
-msgid "Grant permission to owner"
+#: setup/class_setupStep_Ldap.inc:107
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
-msgid "Complete object"
+#: setup/class_setupStep_Ldap.inc:108
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:39
-msgid "ACL roles"
+#: setup/class_setupStep_Ldap.inc:109
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"FusionDirectory."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: setup/class_setupStep_Ldap.inc:166
+#, php-format
+msgid "Anonymous bind to server '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
-msgid "Manage ACL roles"
+#: setup/class_setupStep_Ldap.inc:168
+#, php-format
+msgid "Bind as user '%s' failed!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:38
+#: setup/class_setupStep_Ldap.inc:170
+msgid "Retry"
+msgstr "重试"
+
+#: setup/class_setupStep_Ldap.inc:174
 #, php-format
-msgid "Contains settings for these objects: %s"
+msgid "Anonymous bind to server '%s' succeeded."
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:78
-msgid "Access control roles"
+#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
+msgid "Refresh"
+msgstr "刷新"
+
+#: setup/class_setupStep_Ldap.inc:176
+msgid "Please specify user and password!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:81
-msgid "ACL role"
+#: setup/class_setupStep_Ldap.inc:178
+#, php-format
+msgid "Bind as user '%s' to server '%s' succeeded!"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:99
-msgid "A name for this role"
+#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#, php-format
+msgid ""
+"%s\n"
+"Schema \"%s\": %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:103
-msgid "Short description of this role"
+#: setup/class_setupStep_Finish.inc:40
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
+msgid "Finish"
+msgstr "完成"
+
+#: setup/class_setupStep_Finish.inc:41
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:109
-msgid "ACLs"
+#: setup/class_setupStep_Finish.inc:42
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:113
-msgid "ACLs which are part of this group"
+#: setup/class_setupStep_Finish.inc:89
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:31
-#: plugins/admin/acl/class_aclManagement.inc:32
-#: plugins/admin/acl/class_aclManagement.inc:45
-msgid "ACL assignment creation"
+#: setup/class_setupStep_Finish.inc:91
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:33
-msgid "Create an ACL assignment on an arbitrary dn"
+#: setup/class_setupStep_Finish.inc:96
+#, php-format
+msgid ""
+"After downloading and placing the file under %s, please make sure that the "
+"user the webserver is running with is able to read %s, while other users "
+"shouldn't."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "Dn"
+#: setup/class_setup.inc:122
+msgid "Setup error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:49
-msgid "DN you wish to add assignments for"
+#: setup/class_setup.inc:202
+msgid "Completed"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:110
-msgid "The dn you entered could not be found in the LDAP"
+#: setup/class_setup.inc:245
+msgid "Next"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:139
-msgid "ACL assignments"
+#: include/class_logging.inc:80 include/class_session.inc:50
+#: include/class_session.inc:88 include/class_session.inc:127
+#: include/functions.inc:583 include/functions.inc:668
+#: include/functions.inc:791 include/functions.inc:1210
+#: include/functions.inc:2267 include/functions.inc:2309
+#: include/functions.inc:2338 include/class_ldap.inc:846
+#: include/class_ldap.inc:882 include/class_acl.inc:118
+msgid "Internal error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:140
-msgid "ACL assignments management"
+#: include/class_logging.inc:80
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:141
-msgid "Manage ACL roles assignments to users"
+#: include/class_logging.inc:102
+#, php-format
+msgid "Invalid option \"%s\" specified!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:208
-#: plugins/admin/acl/class_aclAssignment.inc:261
-msgid "ACL Assignment"
+#: include/class_logging.inc:106
+msgid "Specified objectType is empty or invalid!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:26
-msgid "ACL Assignment Dialog"
+#: include/class_management.inc:36 include/class_management.inc:37
+#: plugins/personal/posix/class_posixAccount.inc:288
+msgid "unconfigured"
+msgstr "未配置"
+
+#: include/class_management.inc:160
+msgid "Filter error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:27
-msgid "Access control roles assignment dialog"
+#: include/class_management.inc:160
+msgid "The filter is incomplete!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Mode"
-msgstr "模式"
+#: include/class_management.inc:334 include/class_management.inc:483
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570 include/class_CopyPasteHandler.inc:245
+#: include/simpleplugin/class_simpleManagement.inc:652
+#: include/simpleplugin/class_simpleManagement.inc:752
+#: include/simpleplugin/class_simpleManagement.inc:803
+#: plugins/admin/users/class_userManagement.inc:153
+msgid "Permission"
+msgstr "允许"
 
-#: plugins/admin/acl/class_aclAssignment.inc:41
-msgid "Is this applying on complete subtree or only the base?"
+#: include/class_management.inc:406
+#: include/simpleplugin/class_simpleManagement.inc:718
+msgid "Permission error"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Subtree"
+#: include/class_management.inc:483
+#: include/simpleplugin/class_simpleManagement.inc:752
+#, php-format
+msgid "You are not allowed to create a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:44
-msgid "Base only"
+#: include/class_management.inc:503 include/class_management.inc:521
+#: include/class_management.inc:570
+#: include/simpleplugin/class_simpleManagement.inc:803
+#, php-format
+msgid "You are not allowed to restore a snapshot for %s."
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:47
-msgid "Role to apply"
+#: include/class_management.inc:679
+#, php-format
+msgid ""
+"No tab declaration for '%s' found in your configuration file. Cannot create "
+"plugin instance!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "For all users"
-msgstr ""
+#: include/class_baseSelector.inc:210 include/class_listing.inc:1188
+#: include/class_listing.inc:1190
+msgid "Root"
+msgstr "æ ¹"
 
-#: plugins/admin/acl/class_aclAssignment.inc:52
-msgid "Apply this ACL for all LDAP users"
-msgstr ""
+#: include/class_baseSelector.inc:262 include/class_listing.inc:1211
+msgid "Submit"
+msgstr "提交"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-#: ihtml/themes/breezy/acl.tpl.c:32
-msgid "Members"
-msgstr "成员"
+#: include/class_listing.inc:313 include/class_listing.inc:1196
+#: include/class_listing.inc:1198
+msgid "Up"
+msgstr "上"
 
-#: plugins/admin/acl/class_aclAssignment.inc:56
-msgid "Users or groups to assign this role to."
-msgstr ""
+#: include/class_listing.inc:313
+msgid "Down"
+msgstr "关闭"
 
-#: plugins/admin/acl/class_aclAssignment.inc:247
-msgid "ACL assignment"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:460
+#: include/simpleplugin/attributes/class_SetAttribute.inc:461
+msgid "Sort up"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:262
-msgid "Access control roles assignment"
+#: include/class_listing.inc:313
+#: include/simpleplugin/attributes/class_SetAttribute.inc:473
+#: include/simpleplugin/attributes/class_SetAttribute.inc:474
+msgid "Sort down"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:281
-msgid "Assignments"
+#: include/class_listing.inc:374 setup/setup_migrate_gosaAccounts.tpl.c:23
+msgid "Select all"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:285
-msgid "ACL role assignments for this base"
+#: include/class_listing.inc:592
+msgid "created by"
 msgstr ""
 
-#: plugins/admin/acl/class_aclAssignment.inc:296
-#, php-format
-msgid "Assignments on object or subtree %s"
-msgstr ""
+#: include/class_listing.inc:1188
+msgid "Go to root department"
+msgstr "转到根部门"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:28
-#: plugins/addons/dashboard/class_dashBoard.inc:33
-msgid "Dashboard"
-msgstr ""
+#: include/class_listing.inc:1196
+msgid "Go up one department"
+msgstr "向上跳转一个部门"
 
-#: plugins/addons/dashboard/class_dashBoard.inc:29
-msgid "Statistics and various informations"
+#: include/class_listing.inc:1204
+msgid "Go to user's department"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:38
-msgid "Reporting"
+#: include/class_listing.inc:1204 include/class_listing.inc:1206
+msgid "Home"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:49
-#: plugins/addons/dashboard/main_stats.tpl.c:2
-msgid "Statistics"
-msgstr ""
+#: include/class_listing.inc:1211
+msgid "Reload list"
+msgstr "重新加载列表"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
-msgid "Statistics about users"
-msgstr ""
+#: include/class_listing.inc:1325 include/simpleplugin/simple-list.xml:48
+#: plugins/admin/departments/dep-list.xml:37
+#: plugins/admin/users/user-list.xml:62 plugins/admin/groups/group-list.xml:54
+msgid "Actions"
+msgstr "动作"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
-msgid "Users statistics"
+#: include/class_listing.inc:1633 include/class_listing.inc:1687
+msgid "Copy"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
-msgid "Groups statistics"
+#: include/class_listing.inc:1639 include/class_listing.inc:1675
+msgid "Cut"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
-#: plugins/addons/dashboard/users_accounts.tpl.c:8
-msgid "Expired accounts"
-msgstr ""
+#: include/class_listing.inc:1647 include/class_listing.inc:1649
+#: include/class_CopyPasteHandler.inc:366
+msgid "Paste"
+msgstr "粘贴"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password method"
-msgstr ""
+#: include/class_listing.inc:1675
+msgid "Cut this entry"
+msgstr "剪切条目"
 
-#: plugins/personal/generic/class_user.inc:46
-msgid "Password hash method to use"
+#: include/class_listing.inc:1687
+msgid "Copy this entry"
+msgstr "拷贝条目"
+
+#: include/class_listing.inc:1719 include/class_listing.inc:1721
+msgid "Restore snapshots"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-#: plugins/personal/generic/class_user.inc:386
-#: plugins/personal/generic/paste_generic.tpl.c:14
-#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
-#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
-#: ihtml/themes/breezy/login.tpl.c:23
-#: setup/setup_migrate_adminAccount.tpl.c:14
-msgid "Password"
-msgstr "口令"
+#: include/class_listing.inc:1735
+msgid "Export list"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:51
-msgid "Password (Leave empty if you do not wish to change it)"
+#: include/class_listing.inc:1765 include/class_listing.inc:1766
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Password again"
+#: include/class_listing.inc:1775
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:55
-msgid "Same password as above, to avoid errors"
+#: include/class_listing.inc:1776
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:304
-msgid "Personal information"
-msgstr "个人信息"
+#: include/class_xml.inc:61 include/functions.inc:511
+#: include/functions.inc:3320 include/simpleplugin/class_simplePlugin.inc:271
+#: include/simpleplugin/class_simplePlugin.inc:276
+#: include/simpleplugin/class_simplePlugin.inc:288
+#: html/class_passwordRecovery.inc:108
+msgid "Fatal error"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:309
-#: plugins/personal/generic/paste_generic.tpl.c:5
-msgid "Last name"
-msgstr "å§“"
+#: include/class_xml.inc:66
+msgid "in"
+msgstr "于"
 
-#: plugins/personal/generic/class_user.inc:309
-msgid "Last name of this user"
+#: include/class_xml.inc:68
+msgid "on line"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:314
-#: plugins/personal/generic/paste_generic.tpl.c:8
-msgid "First name"
-msgstr "名"
-
-#: plugins/personal/generic/class_user.inc:314
-msgid "First name of this user"
+#: include/class_xml.inc:69
+msgid "XML error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:319
-msgid "Short description of the user"
+#: include/password-methods/class_password-methods-sasl.inc:59
+#, php-format
+msgid "Cannot change password, unknown user '%s'"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "Picture"
+#: include/password-methods/class_password-methods-sasl.inc:85
+msgid ""
+"You need to fill saslRealm or saslExop in the configuration screen in order "
+"to use SASL"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:323
-msgid "The avatar for this user"
+#: include/password-methods/class_password-methods-sha.inc:69
+#: include/password-methods/class_password-methods-ssha.inc:73
+#: include/password-methods/class_password-methods-ssha.inc:89
+#: include/functions.inc:678 include/class_timezone.inc:51
+#: include/class_config.inc:159 include/class_config.inc:284
+#: include/class_config.inc:885 include/class_config.inc:898
+#: html/index.php:148 html/class_passwordRecovery.inc:131 html/main.php:208
+msgid "Configuration error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:330
-msgid "Organizational contact information"
+#: include/exporter/class_PDF.php:61
+msgid "Page"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:342
-msgid "Business postal address"
+#: include/exporter/class_pdfExporter.inc:58
+msgid "No PDF export possible: there is no FPDF library installed."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room No."
-msgstr "房间号"
+#: include/exporter/class_pdfExporter.inc:196
+msgid "PDF"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:346
-msgid "Room number"
+#: include/exporter/class_cvsExporter.inc:93
+msgid "CSV"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:350
-msgid "Business phone number"
+#: include/class_session.inc:50 include/class_session.inc:88
+#: include/class_session.inc:127
+msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Mobile"
-msgstr "手机"
+#: include/class_CopyPasteHandler.inc:301
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
+msgid "Cancel all"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:354
-msgid "Business mobile number"
+#: include/class_CopyPasteHandler.inc:368
+msgid "Cannot paste"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Pager"
-msgstr "呼机"
+#: include/select/userSelect/class_userSelect.inc:32
+#: plugins/personal/generic/class_user.inc:377
+#: plugins/admin/users/user-list.xml:49 ihtml/themes/breezy/recovery.tpl.c:26
+#: plugins/personal/generic/paste_generic.tpl.c:11
+msgid "Login"
+msgstr "登录名"
 
-#: plugins/personal/generic/class_user.inc:358
-msgid "Business pager number"
-msgstr ""
+#: include/class_template.inc:36
+#: include/simpleplugin/class_simpleManagement.inc:210
+#: include/simpleplugin/class_simpleManagement.inc:406
+#: plugins/admin/users/user-list.xml:95 ihtml/themes/breezy/template.tpl.c:5
+msgid "Template"
+msgstr "模板"
 
-#: plugins/personal/generic/class_user.inc:362
-msgid "Business fax number"
+#: include/class_template.inc:37
+msgid "Object template, used to create several objects with similar values"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Homepage"
-msgstr "个人主页"
+#: include/class_template.inc:41
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "Template name"
+msgstr "模板名称"
 
-#: plugins/personal/generic/class_user.inc:366
-msgid "Personal homepage"
+#: include/functions.inc:123
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:372
-msgid "Account information"
+#: include/functions.inc:142
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:377
-msgid "Login of this user"
-msgstr ""
+#: include/functions.inc:512
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "致命错误:连接 LDAP 错误。服务器返回 '%s'。"
 
-#: plugins/personal/generic/class_user.inc:381
-#: setup/class_setupStep_Language.inc:30
-msgid "Preferred language"
+#: include/functions.inc:583
+msgid ""
+"Login (uid) is not unique inside the LDAP tree. Please contact your "
+"administrator."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:386
-msgid "Password of the user"
+#: include/functions.inc:616
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:392
-msgid "Personal contact information"
+#: include/functions.inc:617
+msgid ""
+"It seems your user password has expired. Please use <a "
+"href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:396
-msgid "Display name"
-msgstr "显示名称"
-
-#: plugins/personal/generic/class_user.inc:396
-msgid "Name this user should appear as. Used by Exchange."
+#: include/functions.inc:668 include/functions.inc:791
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home address"
+#: include/functions.inc:678
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:400
-msgid "Home postal address"
-msgstr "住宅地址"
-
-#: plugins/personal/generic/class_user.inc:404
-msgid "Private phone"
-msgstr "私人电话"
-
-#: plugins/personal/generic/class_user.inc:404
-msgid "Home phone number"
+#: include/functions.inc:678
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:410
-msgid "Organizational information"
-msgstr "组织信息"
+#: include/functions.inc:859
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:415
-msgid "Title"
-msgstr "ç§°è°“"
+#: include/functions.inc:1130
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "超过了 %d 个条目的大小限制!"
 
-#: plugins/personal/generic/class_user.inc:415
+#: include/functions.inc:1132
+#, php-format
 msgid ""
-"Title of a person in their organizational context. Each title is one value "
-"of this multi-valued attribute"
-msgstr ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr "设置新的大小限制为 %s 并且如果限制依然超出还显示这条信息。"
 
-#: plugins/personal/generic/class_user.inc:424
-msgid "Department to which the user belongs"
-msgstr ""
+#: include/functions.inc:1149
+msgid "Configure"
+msgstr "配置"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department No."
-msgstr "部门编号"
+#: include/functions.inc:1154
+msgid "incomplete"
+msgstr "不完整"
 
-#: plugins/personal/generic/class_user.inc:428
-msgid "Department number"
-msgstr ""
+#: include/functions.inc:1559
+msgid "Continue anyway"
+msgstr "仍然继续"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee No."
-msgstr "员工编号"
+#: include/functions.inc:1561
+msgid "Edit anyway"
+msgstr "仍然编辑"
 
-#: plugins/personal/generic/class_user.inc:432
-msgid "Employee number"
+#: include/functions.inc:1563
+#, php-format
+msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:436
-msgid "Employee type"
-msgstr "员工类别"
+#: include/functions.inc:1791
+msgid "Entries per page"
+msgstr "每页条目数"
 
-#: plugins/personal/generic/class_user.inc:607
+#: include/functions.inc:1822 include/class_filter.inc:353
+msgid "Apply filter"
+msgstr "应用过滤器"
+
+#: include/functions.inc:2090
 #, php-format
-msgid "Ppolicy \"%s\" could not be found in the LDAP!"
+msgid "%sB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:610
-msgid "You are not allowed to change your own password"
+#: include/functions.inc:2091
+#, php-format
+msgid "%sKiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:621
+#: include/functions.inc:2092
 #, php-format
-msgid "You must wait %d seconds before changing your password again"
+msgid "%sMiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:635
-msgid "Password is in history of old passwords"
+#: include/functions.inc:2093
+#, php-format
+msgid "%sGiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:640
-#: plugins/personal/generic/class_user.inc:644
-msgid "Password is not being changed from existing value"
+#: include/functions.inc:2094
+#, php-format
+msgid "%sTiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:651
-msgid "You need to specify your current password in order to proceed."
-msgstr "您需要输入当前口令才能继续。"
-
-#: plugins/personal/generic/class_user.inc:653
-msgid ""
-"The passwords you've entered as \"New password\" and \"Repeated new "
-"password\" do not match."
+#: include/functions.inc:2095
+#, php-format
+msgid "%sPiB"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:655
-#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
-msgid "New password"
-msgstr "新口令"
-
-#: plugins/personal/generic/class_user.inc:657
-msgid "The password used as new and current are too similar."
-msgstr "输入的新口令和当前口令非常相似。"
-
-#: plugins/personal/generic/class_user.inc:659
-msgid "The password used as new is to short."
-msgstr "输入的新口令太短了。"
-
-#: plugins/personal/generic/class_user.inc:661
-msgid "The password contains possibly problematic Unicode characters!"
+#: include/functions.inc:2096
+#, php-format
+msgid "%sEiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:84
-#: plugins/personal/posix/class_posixAccount.inc:112
-msgid "Unix"
+#: include/functions.inc:2097
+#, php-format
+msgid "%sZiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:85
-msgid "Edit users POSIX settings"
+#: include/functions.inc:2098
+#, php-format
+msgid "%sYiB"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "Home directory"
-msgstr "用户主目录"
+#: include/functions.inc:2130 include/class_filter.inc:315
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/personal/posix/class_posixAccount.inc:116
-msgid "The path to the home directory of this user"
+#: include/functions.inc:2267
+#, php-format
+msgid ""
+"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
+"directories to fix permissions."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Shell"
-msgstr "Shell"
-
-#: plugins/personal/posix/class_posixAccount.inc:121
-msgid "Which shell should be used when this user log in"
+#: include/functions.inc:2309
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group"
-msgstr "主要用户组"
-
-#: plugins/personal/posix/class_posixAccount.inc:125
-msgid "Primary group for this user"
+#: include/functions.inc:2338
+msgid "Cannot read to revision file!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-#: setup/class_setupStep_Ldap.inc:83
-msgid "Status"
-msgstr "状态"
+#: include/functions.inc:2541
+msgid "'nextIdHook' is not available. Using default base!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:129
-msgid "Status of this user unix account"
+#: include/functions.inc:2559
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user/group id"
+#: include/functions.inc:2559
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:133
-msgid "Force user id and group id values for this user"
+#: include/functions.inc:2582
+msgid "Main FusionDirectory schema"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id"
+#: include/functions.inc:2589
+msgid "Schema used to store FusionDirectory configuration"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:137
-msgid "User id value for this user"
+#: include/functions.inc:2596
+msgid "Used to store trust mode information in users or groups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id"
+#: include/functions.inc:2603
+msgid "Used to store templates."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:142
-msgid "Group id value for this user"
+#: include/functions.inc:2610
+msgid "Used to store POSIX information."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:149
-#: plugins/personal/posix/class_posixAccount.inc:152
-msgid "Group membership"
-msgstr "组成员身份"
+#: include/functions.inc:2617
+#, php-format
+msgid "Missing required object class \"%s\"!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "Account"
-msgstr "账户"
+#: include/functions.inc:2619
+#, php-format
+msgid "Missing optional object class \"%s\"!"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
-msgid "User must change password on first login"
-msgstr "用户必须在第一次登录修改口令"
+#: include/functions.inc:2623
+#, php-format
+msgid "Class(es) available"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:160
+#: include/functions.inc:2641
 msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+"You have installed the mixed groups plugin, but your schema configuration "
+"does not support this."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
-msgid "Minimum delay between password changes (days)"
+#: include/functions.inc:2642
+msgid ""
+"In order to use mixed groups the objectClass \"posixGroup\" must be "
+"AUXILIARY"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:164
+#: include/functions.inc:2645
 msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+"Your schema is configured to support mixed groups, but this plugin is not "
+"present."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid "Delay before forcing password change (days)"
+#: include/functions.inc:2646
+msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:169
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: include/functions.inc:3130 include/functions.inc:3151
+#: include/functions.inc:3191 include/functions.inc:3203
+#: include/functions.inc:3207 include/functions.inc:3214
+#: include/functions.inc:3223
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid "Password expiration date"
+#: include/functions.inc:3130
+msgid "unknown idAllocation method!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:174
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: include/functions.inc:3151
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid "Delay of inactivity before disabling user (days)"
+#: include/functions.inc:3191
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:179
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: include/functions.inc:3203 include/functions.inc:3207
+msgid "no ID available!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid "Delay for user warning before password expiry (days)"
+#: include/functions.inc:3223
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:184
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: include/functions.inc:3285
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:207
-msgid "Only allow this user to connect to this list of hosts"
+#: include/functions.inc:3321
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:288
-#: include/class_management.inc:36 include/class_management.inc:37
-msgid "unconfigured"
-msgstr "未配置"
-
-#: plugins/personal/posix/class_posixAccount.inc:298
-msgid "automatic"
-msgstr "自动"
+#: include/class_pluglist.inc:163
+msgid "All objects in this category"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:317
-msgid "expired"
-msgstr "过期"
+#: include/class_msg_dialog.inc:169
+msgid "Please fix the above error and reload the page."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:319
-msgid "grace time active"
-msgstr "时间限制激活"
+#: include/class_timezone.inc:52
+#, php-format
+msgid "The timezone setting \"%s\" in your configuration is not valid."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-#: plugins/personal/posix/class_posixAccount.inc:324
-#: plugins/personal/posix/class_posixAccount.inc:326
-msgid "active"
-msgstr "活动"
+#: include/class_config.inc:156
+#, php-format
+msgid "XML error in fusiondirectory.conf: %s at line %d"
+msgstr "XML 出错于 fusiondirectory.conf: %s ,行 %d"
 
-#: plugins/personal/posix/class_posixAccount.inc:322
-msgid "password expired"
+#: include/class_config.inc:280
+#, php-format
+msgid ""
+"It seems you are trying to decode something which is not encoded : %s<br/>\n"
+"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:324
-msgid "password not changeable"
+#: include/class_config.inc:322
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:419
-msgid "UID"
-msgstr "UID"
+#: include/class_config.inc:357
+#, php-format
+msgid "Location \"%s\" could not be found in the configuration file"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:538
+#: include/class_config.inc:886
 #, php-format
-msgid "Group of user %s"
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not"
+" set."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:32
-msgid "Edit user's groups and roles"
+#: include/class_config.inc:899
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required compression module "
+"is missing. Please install '%s'."
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:47
-#: plugins/personal/roles/class_userRoles.inc:51
-msgid "Groups membership"
+#: include/class_config.inc:1006
+msgid "All categories"
 msgstr ""
 
-#: plugins/personal/roles/class_userRoles.inc:58
-#: plugins/personal/roles/class_userRoles.inc:62
-msgid "Roles membership"
+#: include/class_config.inc:1133
+msgid "My account"
+msgstr "我的账号"
+
+#: include/class_msgPool.inc:43
+#, php-format
+msgid "Select to list objects of type '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:28
-msgid "Plugins configuration"
+#: include/class_msgPool.inc:45
+#, php-format
+msgid "Select to list objects containig '%s'."
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:29
-msgid "FusionDirectory plugins configuration"
+#: include/class_msgPool.inc:47
+#, php-format
+msgid "Select to list objects that have '%s' enabled"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:42
-msgid "Object groups"
-msgstr "对象组"
+#: include/class_msgPool.inc:49
+msgid "Select to search within subtrees"
+msgstr "选择在子树中查询"
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "OGroup RDN"
+#: include/class_msgPool.inc:51 include/class_filter.inc:364
+msgid "Search in subtrees"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:45
-msgid "Branch in which object groups will be stored"
+#: include/class_msgPool.inc:67
+msgid "This object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:52
-msgid "SASL"
+#: include/class_msgPool.inc:69
+#, php-format
+msgid "This '%s' object will be deleted!"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid "Force to ask for password"
+#: include/class_msgPool.inc:74
+#, php-format
+msgid "This object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_mainPluginsConfig.inc:55
-msgid ""
-"Useful if you add a hook using password value when SASL user passwords are "
-"edited"
+#: include/class_msgPool.inc:76
+#, php-format
+msgid "This '%s' object will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:56
-#: plugins/config/class_configInLdap.inc:70
-msgid "Configuration"
+#: include/class_msgPool.inc:81
+msgid "This object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:62
-msgid "FusionDirectory configuration"
+#: include/class_msgPool.inc:83
+#, php-format
+msgid "This '%s' object will be deleted:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:58
-msgid "Configuration screen of FusionDirectory"
+#: include/class_msgPool.inc:87
+#, php-format
+msgid "These objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:88
-msgid "Look and feel"
+#: include/class_msgPool.inc:89
+#, php-format
+msgid "These '%s' objects will be deleted: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:91
-msgid "Language"
-msgstr "语言"
+#: include/class_msgPool.inc:101
+msgid "You have no permission to delete this object!"
+msgstr ""
 
-#: 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."
+#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme"
+#: include/class_msgPool.inc:112
+msgid "You have no permission to delete these objects:"
+msgstr ""
+
+#: include/class_msgPool.inc:123
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:96
-msgid "Theme to be used"
+#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone"
+#: include/class_msgPool.inc:134
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:102
-msgid "Timezone to be used"
+#: include/class_msgPool.inc:146
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:110
-msgid "Schema setup"
+#: include/class_msgPool.inc:151
+#, php-format
+msgid "You have no permission to modify the field \"%s\" of object \"%s\""
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
-msgid "Schema validation"
+#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
+#, php-format
+msgid "You have no permission to modify the object:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:114
-msgid "Enables schema checking during login."
+#: include/class_msgPool.inc:161
+#, php-format
+msgid "You have no permission to modify these objects:<br/>%s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:121
-msgid "Password settings"
+#: include/class_msgPool.inc:172
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Password default hash"
+#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:124
-msgid "Default hash to be used"
+#: include/class_msgPool.inc:183
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force default hash"
+#: include/class_msgPool.inc:194
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:129
-msgid "Force the use of the default password hash"
+#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Password minimum length"
+#: include/class_msgPool.inc:205
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:133
-msgid "Minimum length of user passwords"
+#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
+#: include/class_msgPool.inc:273
+msgid "Connection information"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Password minimum differs"
+#: include/class_msgPool.inc:225
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:138
-msgid "Minimum number of different characters from last password"
+#: include/class_msgPool.inc:245
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
-msgid "Use account expiration"
+#: include/class_msgPool.inc:255
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:144
-msgid ""
-"Enables shadow attribute tests during the login to FusionDirectory and "
-"forces password renewal or account locking"
+#: include/class_msgPool.inc:275
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:148
-msgid "SASL Realm"
+#: include/class_msgPool.inc:285
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "SASL Exop"
+#: include/class_msgPool.inc:297
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:152
-msgid "Attribute to be stored in the userPassword attribute"
+#: include/class_msgPool.inc:313
+#, php-format
+msgid "'%s' command is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:158
-msgid "Core settings"
+#: include/class_msgPool.inc:315
+#, php-format
+msgid "'%s' command for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
-msgid "Display summary in listings"
+#: include/class_msgPool.inc:319
+#, php-format
+msgid "'%s' command (%s) is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:162
-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."
+#: include/class_msgPool.inc:321
+#, php-format
+msgid "'%s' command (%s) for plugin %s is invalid!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
-msgid "Edit locking"
+#: include/class_msgPool.inc:339
+#, php-format
+msgid "Cannot execute '%s' command!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:168
-msgid ""
-"Check if a entry currently being edited has been modified outside of "
-"FusionDirectory in the meantime."
+#: include/class_msgPool.inc:341
+#, php-format
+msgid "Cannot execute '%s' command for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
-msgid "Enable logging"
+#: include/class_msgPool.inc:345
+#, php-format
+msgid "Cannot execute '%s' command (%s)!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:174
-msgid "Event logging on FusionDirectory side."
+#: include/class_msgPool.inc:347
+#, php-format
+msgid "Cannot execute '%s' command (%s) for plugin %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "LDAP size limit"
+#: include/class_msgPool.inc:362
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
-msgid "Defines the number of entries to get from LDAP by default."
+#: include/class_msgPool.inc:364
+#, php-format
+msgid "'%s' must be smaller than %s!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:186
-msgid "Login and session"
+#: include/class_msgPool.inc:378
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:189
-msgid "Login attribute"
+#: include/class_msgPool.inc:380
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:190
-msgid "Which LDAP attribute should be used as the login name during login."
+#: include/class_msgPool.inc:393
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:196
-msgid "Enforce encrypted connections"
+#: include/class_msgPool.inc:404
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:197
-msgid ""
-"Enables PHP security checks to force encrypted access (https) to the web "
-"interface."
+#: include/class_msgPool.inc:406
+#, php-format
+msgid "The entry '%s' already use this '%s' attribute!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
-msgid "Warn if session is not encrypted"
+#: include/class_msgPool.inc:417
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
-msgid "will display a warning to the user when http is used instead of https."
+#: include/class_msgPool.inc:435
+msgid "Example:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Session lifetime"
+#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
+#, php-format
+msgid "The field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
-msgid "Defines when a session will expire in seconds (0 to disable)."
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "HTTP Basic authentication"
+#: include/class_msgPool.inc:456
+#, php-format
+msgid "'%s' are not allowed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
-msgid "Use HTTP Basic authentication protocol instead of the login form."
+#: include/class_msgPool.inc:470
+#, php-format
+msgid "Missing %s PHP extension!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "HTTP Header authentication"
-msgstr ""
+#: include/class_msgPool.inc:478 setup/setup_migrate_adminAccount.tpl.c:23
+#: setup/setup_migrate_gosaAccounts.tpl.c:32
+#: ihtml/themes/breezy/islocked.tpl.c:17
+#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
+#: ihtml/themes/breezy/msg_dialog.tpl.c:17 ihtml/themes/breezy/acl.tpl.c:53
+#: ihtml/themes/breezy/acl.tpl.c:59
+msgid "Cancel"
+msgstr "取消"
 
-#: plugins/config/class_configInLdap.inc:217
-msgid "Use HTTP Header authentication instead of the login form."
+#: include/class_msgPool.inc:494 setup/setup_migrate_adminAccount.tpl.c:20
+#: setup/setup_migrate_gosaAccounts.tpl.c:29 ihtml/themes/breezy/acl.tpl.c:50
+#: ihtml/themes/breezy/acl.tpl.c:56
+msgid "Apply"
+msgstr "应用"
+
+#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
+msgid "Save"
+msgstr "保存"
+
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add"
+msgstr "添加"
+
+#: include/class_msgPool.inc:512
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Header name"
+#: include/class_msgPool.inc:522
+#: include/simpleplugin/attributes/class_SetAttribute.inc:498
+#: include/simpleplugin/attributes/class_SetAttribute.inc:499
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#, php-format
+msgid "Delete"
+msgstr "删除"
+
+#: include/class_msgPool.inc:522
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
-msgid "Name of the header containing user identifier."
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:229
-#: include/class_SnapshotDialogs.inc:186
-msgid "Snapshots"
+#: include/class_msgPool.inc:532
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
-msgid "Enable snapshots"
+#: include/class_msgPool.inc:540
+msgid "Back"
+msgstr "返回"
+
+#: include/class_msgPool.inc:569
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:232
+#: include/class_msgPool.inc:582
+#, php-format
 msgid ""
-"This enables you to save certain states of entries and restore them later "
-"on."
+"This account has %s settings enabled. You can disable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "Snapshot base"
+#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove"
+" the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
-msgid "The base where snapshots should be stored inside of the LDAP."
+#: include/class_msgPool.inc:610
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking "
+"below."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:244
-msgid "SSL"
+#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Key path"
+#: include/class_msgPool.inc:635
+#, php-format
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-msgid "Path to FusionDirectory private key. Unused for now."
+#: include/class_msgPool.inc:646
+#, php-format
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Certificate path"
-msgstr ""
+#: include/class_msgPool.inc:654
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "点击下面的“编辑”按钮修改该对话框内的信息"
 
-#: plugins/config/class_configInLdap.inc:252
-msgid "Path to FusionDirectory certificate. Unused for now."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "January"
+msgstr "一月"
 
-#: plugins/config/class_configInLdap.inc:257
-#: plugins/config/class_configInLdap.inc:272
-msgid "CA certificate path"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "February"
+msgstr "二月"
 
-#: plugins/config/class_configInLdap.inc:257
-msgid "Path to the CA certificate. Used for validating Argonaut Server host."
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "March"
+msgstr "三月"
 
-#: plugins/config/class_configInLdap.inc:264
-msgid "CAS"
-msgstr ""
+#: include/class_msgPool.inc:662
+msgid "April"
+msgstr "四月"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "Enable CAS"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "May"
+msgstr "五月"
 
-#: plugins/config/class_configInLdap.inc:267
-msgid "CAS login will be used instead of LDAP bind"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "June"
+msgstr "六月"
 
-#: plugins/config/class_configInLdap.inc:272
-msgid "Path to the CA certificate of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "July"
+msgstr "七月"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "August"
+msgstr "八月"
 
-#: plugins/config/class_configInLdap.inc:277
-msgid "Host of the CAS server"
-msgstr ""
+#: include/class_msgPool.inc:663
+msgid "September"
+msgstr "九月"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port"
-msgstr "端口"
+#: include/class_msgPool.inc:664
+msgid "October"
+msgstr "十月"
 
-#: plugins/config/class_configInLdap.inc:282
-msgid "Port the CAS server is listening on"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "November"
+msgstr "十一月"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context"
-msgstr ""
+#: include/class_msgPool.inc:664
+msgid "December"
+msgstr "十二月"
 
-#: plugins/config/class_configInLdap.inc:287
-msgid "CAS context to be used"
+#: include/class_msgPool.inc:673
+msgid "Sunday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:294
-msgid "People and group storage"
+#: include/class_msgPool.inc:673
+msgid "Monday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "People DN attribute"
+#: include/class_msgPool.inc:673
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
-msgid "Attribute to use at the beginning of users dn"
+#: include/class_msgPool.inc:673
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "CN pattern"
+#: include/class_msgPool.inc:673
+msgid "Thursday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:303
-msgid "The pattern to use to build the common name field"
+#: include/class_msgPool.inc:673
+msgid "Friday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:308
-msgid "Strict naming policy"
+#: include/class_msgPool.inc:673
+msgid "Saturday"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:309
-msgid "Enables strict checking of user and group names"
+#: include/class_msgPool.inc:686
+msgid "Database operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
-msgid "Group/user min id"
+#: include/class_msgPool.inc:704
+msgid "read operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: include/class_msgPool.inc:704
+msgid "add operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid "Next id hook"
+#: include/class_msgPool.inc:704
+msgid "modify operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: include/class_msgPool.inc:705
+msgid "delete operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:324
-msgid "Base number for user id"
+#: include/class_msgPool.inc:705
+msgid "search operation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:325
-msgid "Where to start looking for a new free user id."
+#: include/class_msgPool.inc:705
+msgid "authentication"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:330
-msgid "Base number for group id"
+#: include/class_msgPool.inc:708
+#, php-format
+msgid "LDAP %s failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
-msgid "Where to start looking for a new free group id."
+#: include/class_msgPool.inc:710
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "Users RDN"
-msgstr ""
+#: include/class_msgPool.inc:715 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+msgid "Object"
+msgstr "对象"
 
-#: plugins/config/class_configInLdap.inc:336
-msgid "The branch where users are stored."
+#: include/class_msgPool.inc:729
+msgid "Upload failed!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "Groups RDN"
+#: include/class_msgPool.inc:732
+#, php-format
+msgid "Upload failed: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
-msgid "The branch where groups are stored."
+#: include/class_msgPool.inc:743
+msgid "Communication failure with the infrastructure service!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "ACL role RDN"
+#: include/class_msgPool.inc:745
+#, php-format
+msgid "Communication failure with the infrastructure service: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:346
-msgid "The branch where ACL roles are stored."
+#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
+#, php-format
+msgid "This '%s' is still in use by this object: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Id allocation method"
+#: include/class_msgPool.inc:764
+#, php-format
+msgid "This '%s' is still in use."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:351
-msgid "Method to allocate user/group ids"
+#: include/class_msgPool.inc:766
+#, php-format
+msgid "This '%s' is still in use by these objects: %s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Traditional"
+#: include/class_msgPool.inc:776
+#, php-format
+msgid "File '%s' does not exist!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:354
-msgid "Samba unix id pool"
+#: include/class_msgPool.inc:786
+#, php-format
+msgid "Cannot open file '%s' for reading!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Pool user id min"
+#: include/class_msgPool.inc:796
+#, php-format
+msgid "Cannot open file '%s' for writing!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
-msgid "Minimum value for user id when using pool method"
+#: include/class_msgPool.inc:806
+#, php-format
+msgid ""
+"The value for '%s' is currently unconfigured or invalid, please check your "
+"configuration file!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Pool user id max"
+#: include/class_msgPool.inc:816
+#, php-format
+msgid "Cannot delete file '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
-msgid "Maximum value for user id when using pool method"
+#: include/class_msgPool.inc:826
+#, php-format
+msgid "Cannot create folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Pool group id min"
+#: include/class_msgPool.inc:836
+#, php-format
+msgid "Cannot delete folder '%s'!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:367
-msgid "Minimum value for group id when using pool method"
+#: include/class_msgPool.inc:846
+#, php-format
+msgid "Checking for %s support"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Pool group id max"
+#: include/class_msgPool.inc:856
+#, php-format
+msgid "Install and activate the %s PHP module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
-msgid "Maximum value for group id when using pool method"
+#: include/class_msgPool.inc:866
+#, php-format
+msgid "Install and activate the %s Pear module."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
-msgid "Restrict role members"
+#: include/class_msgPool.inc:876
+#, php-format
+msgid ""
+"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
+"FusionDirectory setup?"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
+#: include/class_msgPool.inc:884
 msgid ""
-"When enabled only users from the same branch or members of groups from the "
-"same branch can be added to a role."
+"The supplied base is not valid and has been reset to the previous value!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
-msgid "Debugging"
+#: include/class_SnapshotDialogs.inc:30
+msgid "Creating an object snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:386
-msgid "Display errors"
+#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
+msgid "DN of the object you are creating a snapshot of"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:387
-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 ""
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp"
+msgstr "日期"
 
-#: plugins/config/class_configInLdap.inc:391
-msgid "Maximum LDAP query time"
+#: include/class_SnapshotDialogs.inc:37
+msgid "Timestamp of this snapshot creation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:391
-msgid ""
-"Stop LDAP actions if there is no answer within the specified number of "
-"seconds."
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:396
-msgid "Log LDAP statistics"
+#: include/class_SnapshotDialogs.inc:41
+msgid "Reason for creating this snapshot"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:397
-msgid ""
-"Track LDAP timing statistics to the syslog. This may help to find indexing "
-"problems or bad search filters."
+#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:402
-msgid "Debug level"
+#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
+msgid "Restore"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:403
-msgid "Display certain information on each page load."
+#: include/class_SnapshotDialogs.inc:178
+msgid "Restoring snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
-msgid "Miscellaneous"
-msgstr "杂项"
-
-#: plugins/config/class_configInLdap.inc:420
-msgid "Hooks that are called when specific actions happens"
+#: include/class_SnapshotDialogs.inc:186
+#: plugins/config/class_configInLdap.inc:229
+msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "tab"
+#: include/class_SnapshotDialogs.inc:186
+msgid "Existing snapshots for this object"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:424
-msgid "The tab that this hook concerns"
-msgstr ""
+#: include/php_setup.inc:45 include/php_setup.inc:132
+msgid "File"
+msgstr "文件"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "mode"
-msgstr "模式"
+#: include/php_setup.inc:47 include/php_setup.inc:132
+msgid "Line"
+msgstr "行"
 
-#: plugins/config/class_configInLdap.inc:429
-msgid "When to call this command"
-msgstr ""
+#: include/php_setup.inc:53
+msgid "PHP error"
+msgstr "PHP 错误"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "cmd"
-msgstr ""
+#: include/php_setup.inc:62
+msgid "class"
+msgstr "ç±»"
 
-#: plugins/config/class_configInLdap.inc:435
-msgid "The command that will be called"
-msgstr ""
+#: include/php_setup.inc:70
+msgid "function"
+msgstr "功能"
 
-#: plugins/config/class_configInLdap.inc:442
-msgid "Hooks"
-msgstr "钩子"
+#: include/php_setup.inc:76
+msgid "static"
+msgstr "静态"
 
-#: plugins/config/class_configInLdap.inc:449
-msgid "Display hook output"
-msgstr ""
+#: include/php_setup.inc:80
+msgid "method"
+msgstr "方法"
 
-#: plugins/config/class_configInLdap.inc:450
-msgid ""
-"When enabled successful hook execution output is displayed to the user using"
-" a dialog."
+#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
+msgid "Trace"
+msgstr "跟踪"
+
+#: include/php_setup.inc:132
+msgid "Type"
+msgstr "类型"
+
+#: include/php_setup.inc:133
+msgid "Arguments"
+msgstr "参数"
+
+#: include/php_setup.inc:231
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "生成这个页面导致 PHP 解析器发生一些错误!"
+
+#: include/php_setup.inc:236
+msgid "Send bug report to the FusionDirectory Team"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available shells"
+#: include/php_setup.inc:237
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:455
-msgid "Available POSIX shells for FD users."
+#: include/php_setup.inc:242
+msgid "Toggle information"
+msgstr "切换信息"
+
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:462
-msgid "Show ACL tab on all objects"
+#: include/class_ldap.inc:316 include/class_ldap.inc:363
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
+#: include/class_ldap.inc:846
+#, php-format
 msgid ""
-"For very specific ACL rights setting where you might need to give right on a"
-" single object."
+"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available department categories"
+#: include/class_ldap.inc:882
+#, php-format
+msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:468
-msgid "Available categories in the departments dropdown"
-msgstr ""
+#: include/class_ldap.inc:970
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "当操作 '%s' 使用 LDAP 服务器 '%s' 时"
 
-#: plugins/config/class_configInLdap.inc:485
-#: setup/class_setupStep_Language.inc:69
-msgid "Automatic"
-msgstr ""
+#: include/class_ldap.inc:972
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "当操作  LDAP 服务器 '%s' 时"
 
-#: plugins/config/class_recoveryConfig.inc:28
-msgid "Password recovery"
+#: include/class_ldap.inc:1062
+msgid "proc_open failed to execute ldapsearch"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:29
-msgid "Settings for the password recovery feature"
+#: include/class_ldap.inc:1109
+#, php-format
+msgid "Error line %s, first line of an entry cannot start with a space"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:40
-msgid "Password recovery settings"
+#: include/class_ldap.inc:1127
+#, php-format
+msgid "Error line %s, references to an external file are not supported"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:45
-msgid "Activate password recovery"
+#: include/class_ldap.inc:1130
+#, php-format
+msgid "Error line %s, attribute \"%s\" has no value"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:46
-msgid "Whether to activate or not password recovery feature"
+#: include/class_ldap.inc:1134
+#, php-format
+msgid "Error line %s, an entry bloc can only have one dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:51
-msgid "Sender email address"
+#: include/class_ldap.inc:1139
+#, php-format
+msgid "Error line %s, an entry bloc should start with the dn"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:52
-msgid "Email address from which mails will be sent"
-msgstr ""
+#: include/class_ldap.inc:1170
+#, php-format
+msgid ""
+"Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "导入 dn: '%s' 时错误,请从行 %s 开始检查您的 LDIF!"
 
-#: plugins/config/class_recoveryConfig.inc:58
-msgid "Link validity (minutes)"
+#: include/simpleplugin/simple-select-list.xml:11
+msgid "Please select the desired entries"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:59
-msgid "Number of minutes before a recovery link expires"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:32
+#: include/simpleplugin/simple-list.xml:32
+#: plugins/admin/departments/class_department.inc:170
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/group-list.xml:33
+#: plugins/admin/groups/class_group.inc:60
+#: plugins/admin/aclrole/class_aclRole.inc:99
+#: setup/setup_migrate_adminAccount.tpl.c:8
+msgid "Name"
+msgstr "名称"
 
-#: plugins/config/class_recoveryConfig.inc:65
-msgid "Salt for tokens"
-msgstr ""
+#: include/simpleplugin/simple-select-list.xml:40
+#: include/simpleplugin/simple-list.xml:40
+#: plugins/personal/generic/class_user.inc:319
+#: plugins/admin/departments/class_department.inc:72
+#: plugins/admin/departments/dep-list.xml:29
+#: plugins/admin/groups/class_roleGeneric.inc:91
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/group-list.xml:41
+#: plugins/admin/groups/class_group.inc:65
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Description"
+msgstr "描述"
 
-#: plugins/config/class_recoveryConfig.inc:66
-msgid ""
-"Just a security measure, you can put anything in there, even random "
-"characters"
+#: include/simpleplugin/class_dialogAttributes.inc:426
+#, php-format
+msgid "POSIX group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:72
-msgid "Allow the use of alternate addresses"
+#: include/simpleplugin/class_dialogAttributes.inc:428
+#, php-format
+msgid "Role %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:73
-msgid ""
-"Users will also be able to enter one of theirs alternate addresses to "
-"recover their password"
+#: include/simpleplugin/class_dialogAttributes.inc:430
+#, php-format
+msgid "Group %s"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:80
-msgid "First email"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:465
+msgid "Group of user"
+msgstr "用户组"
 
-#: plugins/config/class_recoveryConfig.inc:83
-#: plugins/config/class_recoveryConfig.inc:102
-msgid "Subject"
+#: include/simpleplugin/class_dialogAttributes.inc:634
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:66
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:111
+msgid "None"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:84
-msgid "Subject of the first email"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:636
+msgid "Unknown"
+msgstr "未知"
 
-#: plugins/config/class_recoveryConfig.inc:87
-msgid "[FusionDirectory] Password recovery link"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:645
+#: include/simpleplugin/class_dialogAttributes.inc:646
+#: include/simpleplugin/simple-list.xml:67
+#: include/simpleplugin/simple-list.xml:112
+#: include/simpleplugin/attributes/class_SetAttribute.inc:488
+#: include/simpleplugin/attributes/class_SetAttribute.inc:489
+#: plugins/admin/departments/dep-list.xml:79
+#: plugins/admin/users/user-list.xml:108
+#: plugins/admin/groups/group-list.xml:74
+#: plugins/admin/groups/group-list.xml:119
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit"
+msgstr "编辑"
 
-#: plugins/config/class_recoveryConfig.inc:90
-#, php-format
-msgid "Body (first %s is login, second is link)"
-msgstr ""
+#: include/simpleplugin/class_dialogAttributes.inc:655
+#: include/simpleplugin/class_dialogAttributes.inc:656
+#: include/simpleplugin/simple-list.xml:75
+#: include/simpleplugin/simple-list.xml:125
+#: include/simpleplugin/attributes/class_FileAttribute.inc:331
+#: include/simpleplugin/attributes/class_FileAttribute.inc:332
+#: plugins/admin/departments/dep-list.xml:67
+#: plugins/admin/departments/dep-list.xml:88
+#: plugins/admin/users/user-list.xml:115
+#: plugins/admin/groups/group-list.xml:82
+#: plugins/admin/groups/group-list.xml:132
+msgid "Remove"
+msgstr "删除"
 
-#: plugins/config/class_recoveryConfig.inc:91
+#: include/simpleplugin/class_simpleTabs.inc:90
 #, php-format
 msgid ""
-"Body of the first email, sent when the user ask for a new password. Use %s "
-"for the login and the recovery link."
+"No plugin definitions found to initialize '%s', please check your "
+"configuration file."
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:94
+#: include/simpleplugin/class_simpleTabs.inc:319
 #, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Here are your informations : \n"
-" - Login : %s\n"
-" - Link : %s\n"
-"\n"
-"This link is only valid for 10 minutes."
-msgstr ""
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "删除进程被插件 '%s' 取消: %s"
 
-#: plugins/config/class_recoveryConfig.inc:99
-msgid "Second email"
+#: include/simpleplugin/class_simpleTabs.inc:401
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:103
-msgid "Subject of the second email"
+#: include/simpleplugin/class_helpersAttribute.inc:264
+msgid "B"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:106
-msgid "[FusionDirectory] Password recovery successful"
+#: include/simpleplugin/class_helpersAttribute.inc:265
+msgid "KiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:109
-#, php-format
-msgid "Body (%s is login)"
+#: include/simpleplugin/class_helpersAttribute.inc:266
+msgid "MiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:110
-#, php-format
-msgid ""
-"Body of the second email, sent to confirm the password has been changed. Use"
-" %s for the user login."
+#: include/simpleplugin/class_helpersAttribute.inc:267
+msgid "GiB"
 msgstr ""
 
-#: plugins/config/class_recoveryConfig.inc:113
-#, php-format
-msgid ""
-"Hello,\n"
-"\n"
-"Your password has been changed.\n"
-"Your login is still %s."
+#: include/simpleplugin/class_helpersAttribute.inc:268
+msgid "TiB"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:28
-msgid "Dashboard configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:279
+msgid "seconds"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:29
-msgid "FusionDirectory dashboard plugin configuration"
+#: include/simpleplugin/class_helpersAttribute.inc:280
+msgid "minutes"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:42
-msgid "Dashboard name schema"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:281
+msgid "hours"
+msgstr "小时"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits"
-msgstr ""
+#: include/simpleplugin/class_helpersAttribute.inc:282
+msgid "days"
+msgstr "天"
 
-#: plugins/config/class_dashBoardConfig.inc:45
-msgid "Number of digits to use after prefix"
+#: include/simpleplugin/class_simpleManagement.inc:216
+#: plugins/admin/users/user-list.xml:87
+msgid "From template"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes"
+#: include/simpleplugin/class_simpleManagement.inc:243
+#, php-format
+msgid "%s template"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:51
-msgid "Prefixes to be used for computer ids"
+#: include/simpleplugin/class_simpleManagement.inc:400
+#: include/simpleplugin/class_simpleManagement.inc:406
+#, php-format
+msgid "Show %s"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:59
-msgid "Dashboard expired users"
+#: include/simpleplugin/simple-list.xml:11
+msgid "NO LABEL"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid "Number of days"
+#: include/simpleplugin/class_simplePlugin.inc:168
+msgid "Template settings"
 msgstr ""
 
-#: plugins/config/class_dashBoardConfig.inc:62
-msgid ""
-"Number of days before expiration needed for an account to show in the "
-"dashboard next expired accounts list"
+#: include/simpleplugin/class_simplePlugin.inc:171
+msgid "This is the name of the template"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:29
-msgid "Plugins"
+#: include/simpleplugin/class_simplePlugin.inc:271
+msgid "Only main tab can compute dn"
 msgstr ""
 
-#: plugins/config/class_pluginsConfigInLdap.inc:30
-msgid "Configuration for plugins"
+#: include/simpleplugin/class_simplePlugin.inc:278
+#, php-format
+msgid "Could not compute dn: no parent tab class for \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:307 include/class_listing.inc:1155
-#: include/class_listing.inc:1157
-msgid "Up"
-msgstr "上"
-
-#: include/class_listing.inc:307
-msgid "Down"
-msgstr "关闭"
-
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2764
-#: include/simpleplugin/class_attribute.inc:2765
-msgid "Sort up"
+#: include/simpleplugin/class_simplePlugin.inc:290
+#, php-format
+msgid ""
+"Could not compute dn: could not find objectType infos from tab class \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:307 include/simpleplugin/class_attribute.inc:2777
-#: include/simpleplugin/class_attribute.inc:2778
-msgid "Sort down"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#: include/simpleplugin/class_simplePlugin.inc:694
+msgid "Error when saving"
 msgstr ""
 
-#: include/class_listing.inc:368 setup/setup_migrate_gosaAccounts.tpl.c:23
-msgid "Select all"
+#: include/simpleplugin/class_simplePlugin.inc:686
+#, php-format
+msgid "There is already an entry with the same dn : %s"
 msgstr ""
 
-#: include/class_listing.inc:538 include/class_management.inc:679
-#: include/class_config.inc:357 include/class_msgPool.inc:220
-#: include/class_msgPool.inc:240 include/class_msgPool.inc:270
-#: include/class_msgPool.inc:687 include/class_msgPool.inc:718
-#: include/class_msgPool.inc:745 include/functions.inc:3154
-#: include/functions.inc:3175 include/functions.inc:3215
-#: include/functions.inc:3227 include/functions.inc:3231
-#: include/functions.inc:3238 include/functions.inc:3247
-#: include/functions.inc:3309 include/class_msg_dialog.inc:128
-#: include/class_xml.inc:58 include/class_plugin.inc:793
-#: include/class_plugin.inc:1524 include/class_CopyPasteHandler.inc:275
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#: include/simpleplugin/class_attribute.inc:1852
-#: include/simpleplugin/class_attribute.inc:1974
-#: include/simpleplugin/class_attribute.inc:1976
-#: include/simpleplugin/class_simpleTabs.inc:89
-#: include/simpleplugin/class_simpleTabs.inc:399
-#: include/password-methods/class_password-methods-sasl.inc:59
-#: include/password-methods/class_password-methods-sasl.inc:85
-#: include/password-methods/class_password-methods.inc:428
-#: include/password-methods/class_password-methods.inc:438
-#: include/class_SnapshotHandler.inc:422 html/index.php:452 html/index.php:473
-#: html/index.php:483 html/index.php:545 html/index.php:555
-#: setup/class_setupStep_Migrate.inc:935
-#: ihtml/themes/breezy/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
-msgid "Error"
-msgstr "错误"
-
-#: include/class_listing.inc:579
-msgid "created by"
+#: include/simpleplugin/class_simplePlugin.inc:694
+#, php-format
+msgid "The entry %s is not existing"
 msgstr ""
 
-#: include/class_listing.inc:1147
-msgid "Go to root department"
-msgstr "转到根部门"
-
-#: include/class_listing.inc:1147 include/class_listing.inc:1149
-#: include/class_baseSelector.inc:210
-msgid "Root"
-msgstr "æ ¹"
-
-#: include/class_listing.inc:1155
-msgid "Go up one department"
-msgstr "向上跳转一个部门"
-
-#: include/class_listing.inc:1163
-msgid "Go to user's department"
+#: include/simpleplugin/class_simplePlugin.inc:759
+#: include/class_plugin.inc:543
+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 ""
 
-#: include/class_listing.inc:1163 include/class_listing.inc:1165
-msgid "Home"
+#: include/simpleplugin/class_simplePlugin.inc:1038
+#, php-format
+msgid "Unknown field \"%s\""
 msgstr ""
 
-#: include/class_listing.inc:1170
-msgid "Reload list"
-msgstr "重新加载列表"
-
-#: include/class_listing.inc:1170 include/class_baseSelector.inc:262
-msgid "Submit"
-msgstr "提交"
-
-#: include/class_listing.inc:1590 include/class_listing.inc:1644
-msgid "Copy"
+#: include/simpleplugin/class_Attribute.inc:555
+#: include/simpleplugin/attributes/class_SetAttribute.inc:227
+#, php-format
+msgid "%s (required)"
 msgstr ""
 
-#: include/class_listing.inc:1596 include/class_listing.inc:1632
-msgid "Cut"
+#: include/simpleplugin/attributes/class_BaseSelectorAttribute.inc:40
+msgid "Object base"
 msgstr ""
 
-#: include/class_listing.inc:1604 include/class_listing.inc:1606
-#: include/class_CopyPasteHandler.inc:367
-msgid "Paste"
-msgstr "粘贴"
-
-#: include/class_listing.inc:1632
-msgid "Cut this entry"
-msgstr "剪切条目"
+#: include/simpleplugin/attributes/class_SelectAttribute.inc:137
+#, php-format
+msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+msgstr ""
 
-#: include/class_listing.inc:1644
-msgid "Copy this entry"
-msgstr "拷贝条目"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+#, php-format
+msgid "Cannot read uploaded file: %s"
+msgstr ""
 
-#: include/class_listing.inc:1677 include/class_listing.inc:1679
-msgid "Restore snapshots"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:31
+msgid "file is empty"
 msgstr ""
 
-#: include/class_listing.inc:1693
-msgid "Export list"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:34
+msgid "file not found"
 msgstr ""
 
-#: include/class_listing.inc:1728 include/class_listing.inc:1729
-msgid "Restore snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:37
+msgid "file not readable"
 msgstr ""
 
-#: include/class_listing.inc:1738
-msgid "Create snapshot"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:71
+#, php-format
+msgid "%s (%d bytes)"
 msgstr ""
 
-#: include/class_listing.inc:1739
-msgid "Create a new snapshot from this object"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:118
+#: include/simpleplugin/attributes/class_FileAttribute.inc:321
+#: include/simpleplugin/attributes/class_FileAttribute.inc:322
+msgid "Upload"
+msgstr "上传"
 
-#: include/class_management.inc:160
-msgid "Filter error"
-msgstr ""
+#: include/simpleplugin/attributes/class_FileAttribute.inc:123
+#: include/simpleplugin/attributes/class_FileAttribute.inc:124
+msgid "Download"
+msgstr "下载"
 
-#: include/class_management.inc:160
-msgid "The filter is incomplete!"
+#: include/simpleplugin/attributes/class_FileAttribute.inc:297
+msgid ""
+"Cannot save user picture, FusionDirectory requires the PHP module "
+"\"imagick\" to be installed!"
 msgstr ""
 
-#: include/class_management.inc:406
-#: include/simpleplugin/class_simpleManagement.inc:719
-msgid "Permission error"
+#: include/simpleplugin/attributes/class_SetAttribute.inc:582
+#, php-format
+msgid "Invalid value for %s"
 msgstr ""
 
-#: include/class_management.inc:483
-#: include/simpleplugin/class_simpleManagement.inc:753
+#: include/simpleplugin/attributes/class_DateAttribute.inc:131
 #, php-format
-msgid "You are not allowed to create a snapshot for %s."
+msgid "Error, incorrect date: %s"
 msgstr ""
 
-#: include/class_management.inc:503 include/class_management.inc:521
-#: include/class_management.inc:570
-#: include/simpleplugin/class_simpleManagement.inc:804
+#: include/simpleplugin/attributes/class_IntAttribute.inc:50
 #, php-format
-msgid "You are not allowed to restore a snapshot for %s."
+msgid "An integer between %d and %d"
 msgstr ""
 
-#: include/class_management.inc:679
+#: include/simpleplugin/attributes/class_IntAttribute.inc:52
 #, php-format
-msgid ""
-"No tab declaration for '%s' found in your configuration file. Cannot create "
-"plugin instance!"
+msgid "An integer larger than %d"
 msgstr ""
 
-#: include/class_config.inc:156
+#: include/simpleplugin/attributes/class_IntAttribute.inc:54
 #, php-format
-msgid "XML error in fusiondirectory.conf: %s at line %d"
-msgstr "XML 出错于 fusiondirectory.conf: %s ,行 %d"
-
-#: include/class_config.inc:159 include/class_config.inc:284
-#: include/class_config.inc:884 include/class_config.inc:897
-#: include/functions.inc:678 include/class_timezone.inc:51
-#: include/password-methods/class_password-methods-sha.inc:69
-#: include/password-methods/class_password-methods-ssha.inc:73
-#: include/password-methods/class_password-methods-ssha.inc:89
-#: html/index.php:148 html/main.php:208 html/class_passwordRecovery.inc:131
-msgid "Configuration error"
+msgid "An integer smaller than %d"
 msgstr ""
 
-#: include/class_config.inc:280
+#: include/simpleplugin/attributes/class_IntAttribute.inc:156
 #, php-format
-msgid ""
-"It seems you are trying to decode something which is not encoded : %s<br/>\n"
-"Please check you are not using a fusiondirectory.secrets file while your passwords are not encrypted."
+msgid "A float between %f and %f"
 msgstr ""
 
-#: include/class_config.inc:322 include/class_ldap.inc:895
-#: include/class_ldap.inc:1281 include/functions.inc:541
-#: include/functions.inc:696 include/functions.inc:743
-#: include/functions.inc:843 include/functions.inc:3033
-#: include/functions.inc:3207 include/simpleplugin/class_simplePlugin.inc:592
-#: include/simpleplugin/class_attribute.inc:3027
-#: include/password-methods/class_password-methods.inc:194
-#: include/class_SnapshotHandler.inc:48 include/class_SnapshotHandler.inc:247
-#: include/class_SnapshotHandler.inc:280 include/class_SnapshotHandler.inc:296
-#: include/class_SnapshotHandler.inc:429 include/class_SnapshotHandler.inc:432
-#: html/index.php:370 html/class_passwordRecovery.inc:531
-#: setup/class_setupStep_Migrate.inc:451
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "LDAP error"
-msgstr "LDAP 错误"
-
-#: include/class_config.inc:322
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: include/simpleplugin/attributes/class_IntAttribute.inc:158
+#, php-format
+msgid "A float larger than %f"
 msgstr ""
 
-#: include/class_config.inc:357
+#: include/simpleplugin/attributes/class_IntAttribute.inc:160
 #, php-format
-msgid "Location \"%s\" could not be found in the configuration file"
+msgid "A float smaller than %f"
 msgstr ""
 
-#: include/class_config.inc:885
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not"
-" set."
+#: include/class_SnapshotHandler.inc:453
+msgid "There was a problem uncompressing snapshot data"
 msgstr ""
 
-#: include/class_config.inc:898
+#: include/class_plugin.inc:795
 #, php-format
 msgid ""
-"The snapshot functionality is enabled, but the required compression module "
-"is missing. Please install '%s'."
+"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
+"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
 msgstr ""
 
-#: include/class_config.inc:1005
-msgid "All categories"
+#: include/class_plugin.inc:1322
+#, php-format
+msgid "Tab \"%s\""
 msgstr ""
 
-#: include/class_config.inc:1132
-msgid "My account"
-msgstr "我的账号"
-
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-msgid "Performance warning"
-msgstr ""
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr "ACL"
 
-#: include/class_ldap.inc:316 include/class_ldap.inc:363
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/class_ldap.inc:846 include/class_ldap.inc:882
-#: include/functions.inc:583 include/functions.inc:668
-#: include/functions.inc:791 include/functions.inc:1210
-#: include/functions.inc:2294 include/functions.inc:2336
-#: include/functions.inc:2365 include/class_session.inc:50
-#: include/class_session.inc:88 include/class_session.inc:127
-#: include/class_acl.inc:118 include/class_logging.inc:80
-msgid "Internal error"
+#: include/class_acl.inc:39
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+msgid "ACL roles"
 msgstr ""
 
-#: include/class_ldap.inc:846
+#: include/class_acl.inc:118
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN \"%s\": no object class found!"
+"Unkown ACL type '%s'!\n"
+"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
 msgstr ""
 
-#: include/class_ldap.inc:882
+#: include/class_acl.inc:170
 #, php-format
-msgid "Cannot automatically create subtrees with RDN \"%s\": not supported"
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_ldap.inc:994
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "当操作 '%s' 使用 LDAP 服务器 '%s' 时"
-
-#: include/class_ldap.inc:996
+#: include/class_acl.inc:173
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "当操作  LDAP 服务器 '%s' 时"
+msgid "All users"
+msgstr ""
 
-#: include/class_ldap.inc:1086
-msgid "proc_open failed to execute ldapsearch"
+#: html/setup.php:59
+msgid "Smarty"
 msgstr ""
 
-#: include/class_ldap.inc:1133
+#: html/setup.php:59 html/class_passwordRecovery.inc:132
 #, php-format
-msgid "Error line %s, first line of an entry cannot start with a space"
-msgstr ""
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "目录 '%s' 作为编译目录无法访问!"
 
-#: include/class_ldap.inc:1151
+#: html/index.php:56 html/class_passwordRecovery.inc:165
 #, php-format
-msgid "Error line %s, references to an external file are not supported"
+msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
 msgstr ""
 
-#: include/class_ldap.inc:1154
-#, php-format
-msgid "Error line %s, attribute \"%s\" has no value"
+#: html/index.php:62
+msgid ""
+"Warning: The session lifetime configured in your fusiondirectory.conf will "
+"be overridden by php.ini settings."
 msgstr ""
 
-#: include/class_ldap.inc:1158
+#: html/index.php:150
 #, php-format
-msgid "Error line %s, an entry bloc can only have one dn"
+msgid ""
+"FusionDirectory configuration %s/%s is not readable. Please run "
+"fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: include/class_ldap.inc:1163
-#, php-format
-msgid "Error line %s, an entry bloc should start with the dn"
+#: html/index.php:171
+msgid "Smarty error"
 msgstr ""
 
-#: include/class_ldap.inc:1194
+#: html/index.php:173
 #, php-format
-msgid ""
-"Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "导入 dn: '%s' 时错误,请从行 %s 开始检查您的 LDIF!"
+msgid "Directory \"%s\" specified as compile directory is not accessible!"
+msgstr ""
 
-#: include/class_msgPool.inc:43
-#, php-format
-msgid "Select to list objects of type '%s'."
+#: html/index.php:208
+msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: include/class_msgPool.inc:45
-#, php-format
-msgid "Select to list objects containig '%s'."
+#: html/index.php:211
+msgid "Your IP has changed!"
 msgstr ""
 
-#: include/class_msgPool.inc:47
+#: html/index.php:214
 #, php-format
-msgid "Select to list objects that have '%s' enabled"
+msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: include/class_msgPool.inc:49
-msgid "Select to search within subtrees"
-msgstr "选择在子树中查询"
+#: html/index.php:217
+msgid "No session found!"
+msgstr ""
 
-#: include/class_msgPool.inc:51 include/class_filter.inc:364
-msgid "Search in subtrees"
+#: html/index.php:253
+msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: include/class_msgPool.inc:67
-msgid "This object will be deleted!"
+#: html/index.php:255
+msgid "LDAP schema error"
 msgstr ""
 
-#: include/class_msgPool.inc:69
-#, php-format
-msgid "This '%s' object will be deleted!"
+#: html/index.php:282
+msgid "Please specify a valid username!"
+msgstr "请输入一个有效的用户名!"
+
+#: html/index.php:285
+msgid "Please specify your password!"
+msgstr "请输入您的口令!"
+
+#: html/index.php:304
+msgid "Please check the username/password combination."
+msgstr "请检查用户名/口令。"
+
+#: html/index.php:334
+msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:74
+#: html/index.php:454
 #, php-format
-msgid "This object will be deleted: %s"
+msgid "No value found in HTTP header \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:76
+#: html/index.php:475
 #, php-format
-msgid "This '%s' object will be deleted: %s"
+msgid "Header user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:81
-msgid "This object will be deleted:"
+#: html/index.php:485
+#, php-format
+msgid "Header user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:83
+#: html/index.php:547
 #, php-format
-msgid "This '%s' object will be deleted:"
+msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:87
+#: html/index.php:557
 #, php-format
-msgid "These objects will be deleted: %s"
+msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: include/class_msgPool.inc:89
+#: html/index.php:596
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "您的浏览器已经禁用 cookies。请启用 cookies 并在登录前重新加载本页面!"
+
+#: html/class_passwordRecovery.inc:109
 #, php-format
-msgid "These '%s' objects will be deleted: %s"
+msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: include/class_msgPool.inc:101
-msgid "You have no permission to delete this object!"
+#: html/class_passwordRecovery.inc:455
+#, php-format
+msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:105 include/class_msgPool.inc:109
-msgid "You have no permission to delete the object:"
+#: html/class_passwordRecovery.inc:458
+#, php-format
+msgid "Found multiple accounts with login \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:112
-msgid "You have no permission to delete these objects:"
-msgstr ""
+#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
+msgid "Email address"
+msgstr "邮件地址"
 
-#: include/class_msgPool.inc:123
-msgid "You have no permission to create this object!"
+#: html/class_passwordRecovery.inc:495
+#, php-format
+msgid "There is no account using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:127 include/class_msgPool.inc:131
-msgid "You have no permission to create the object:"
+#: html/class_passwordRecovery.inc:498
+#, php-format
+msgid "There are several accounts using email \"%s\""
 msgstr ""
 
-#: include/class_msgPool.inc:134
-msgid "You have no permission to create these objects:"
+#: html/class_passwordRecovery.inc:506
+#, php-format
+msgid "The user using email \"%s\" is locked. Please contact your administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:146
-msgid "You have no permission to modify this object!"
+#: html/class_passwordRecovery.inc:548
+msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: include/class_msgPool.inc:151
-#, php-format
-msgid "You have no permission to modify the field \"%s\" of object \"%s\""
+#: html/class_passwordRecovery.inc:559
+msgid "This token is invalid"
 msgstr ""
 
-#: include/class_msgPool.inc:153 include/class_msgPool.inc:158
-#, php-format
-msgid "You have no permission to modify the object:<br/>%s"
+#: html/class_passwordRecovery.inc:613
+msgid "There was a problem with mail server, confirmation email not sent"
 msgstr ""
 
-#: include/class_msgPool.inc:161
-#, php-format
-msgid "You have no permission to modify these objects:<br/>%s"
+#: html/main.php:115
+msgid "PHP configuration"
 msgstr ""
 
-#: include/class_msgPool.inc:172
-msgid "You have no permission to view this object!"
+#: html/main.php:116
+msgid ""
+"Fatal error: Register globals is on. FusionDirectory will refuse to login "
+"unless this is fixed by an administrator."
 msgstr ""
 
-#: include/class_msgPool.inc:176 include/class_msgPool.inc:180
-msgid "You have no permission to view the object:"
+#: html/main.php:142
+msgid "Password change"
 msgstr ""
 
-#: include/class_msgPool.inc:183
-msgid "You have no permission to view these objects:"
+#: html/main.php:142
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: include/class_msgPool.inc:194
-msgid "You have no permission to move this object!"
+#: html/main.php:158
+msgid "Your password has expired, please set a new one."
 msgstr ""
 
-#: include/class_msgPool.inc:198 include/class_msgPool.inc:202
-msgid "You have no permission to move the object:"
+#: html/main.php:208
+msgid "Running out of memory!"
 msgstr ""
 
-#: include/class_msgPool.inc:205
-msgid "You have no permission to move these objects:"
+#: html/main.php:251
+msgid "User ACL checks disabled"
 msgstr ""
 
-#: include/class_msgPool.inc:223 include/class_msgPool.inc:243
-#: include/class_msgPool.inc:273
-msgid "Connection information"
+#: html/main.php:289
+msgid "Plugin"
 msgstr ""
 
-#: include/class_msgPool.inc:225
+#: html/main.php:290
 #, php-format
-msgid "Cannot connect to %s database!"
+msgid ""
+"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
+" a file)!"
 msgstr ""
 
-#: include/class_msgPool.inc:245
-#, php-format
-msgid "Cannot select %s database!"
+#: html/main.php:305
+msgid "Configuration Error"
 msgstr ""
 
-#: include/class_msgPool.inc:255
+#: html/main.php:306
 #, php-format
-msgid "No %s server defined!"
+msgid ""
+"Fatal error: not all POST variables have been transfered by PHP - please "
+"inform your administrator!"
 msgstr ""
 
-#: include/class_msgPool.inc:275
+#: plugins/generic/welcome/main.inc:25
 #, php-format
-msgid "Cannot query %s database!"
+msgid "Welcome %s!"
+msgstr "欢迎 %s!"
+
+#: plugins/generic/references/class_reference.inc:26
+#: plugins/generic/references/class_reference.inc:27
+#: plugins/generic/references/class_reference.inc:44
+msgid "References"
+msgstr "参考"
+
+#: plugins/personal/posix/class_posixAccount.inc:84
+#: plugins/personal/posix/class_posixAccount.inc:112
+msgid "Unix"
 msgstr ""
 
-#: include/class_msgPool.inc:285
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: plugins/personal/posix/class_posixAccount.inc:85
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: include/class_msgPool.inc:297
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "Home directory"
+msgstr "用户主目录"
+
+#: plugins/personal/posix/class_posixAccount.inc:116
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:313
-#, php-format
-msgid "'%s' command is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Shell"
+msgstr "Shell"
+
+#: plugins/personal/posix/class_posixAccount.inc:121
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: include/class_msgPool.inc:315
-#, php-format
-msgid "'%s' command for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group"
+msgstr "主要用户组"
+
+#: plugins/personal/posix/class_posixAccount.inc:125
+msgid "Primary group for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:319
-#, php-format
-msgid "'%s' command (%s) is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:129
+msgid "Status of this user unix account"
 msgstr ""
 
-#: include/class_msgPool.inc:321
-#, php-format
-msgid "'%s' command (%s) for plugin %s is invalid!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user/group id"
 msgstr ""
 
-#: include/class_msgPool.inc:339
-#, php-format
-msgid "Cannot execute '%s' command!"
+#: plugins/personal/posix/class_posixAccount.inc:133
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:341
-#, php-format
-msgid "Cannot execute '%s' command for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id"
 msgstr ""
 
-#: include/class_msgPool.inc:345
-#, php-format
-msgid "Cannot execute '%s' command (%s)!"
+#: plugins/personal/posix/class_posixAccount.inc:137
+msgid "User id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:347
-#, php-format
-msgid "Cannot execute '%s' command (%s) for plugin %s!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id"
 msgstr ""
 
-#: include/class_msgPool.inc:362
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/personal/posix/class_posixAccount.inc:142
+msgid "Group id value for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:364
-#, php-format
-msgid "'%s' must be smaller than %s!"
+#: plugins/personal/posix/class_posixAccount.inc:149
+#: plugins/personal/posix/class_posixAccount.inc:152
+msgid "Group membership"
+msgstr "组成员身份"
+
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "Account"
+msgstr "账户"
+
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid "User must change password on first login"
+msgstr "用户必须在第一次登录修改口令"
+
+#: plugins/personal/posix/class_posixAccount.inc:160
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: include/class_msgPool.inc:378
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:380
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/personal/posix/class_posixAccount.inc:164
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:393
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:404
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/personal/posix/class_posixAccount.inc:169
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:406
-#, php-format
-msgid "The entry '%s' already use this '%s' attribute!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid "Password expiration date"
 msgstr ""
 
-#: include/class_msgPool.inc:417
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/personal/posix/class_posixAccount.inc:174
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:435
-msgid "Example:"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:455 include/class_msgPool.inc:459
-#, php-format
-msgid "The field '%s' contains invalid characters"
+#: plugins/personal/posix/class_posixAccount.inc:179
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: include/class_msgPool.inc:456
-#, php-format
-msgid "'%s' are not allowed!"
+#: plugins/personal/posix/class_posixAccount.inc:184
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: include/class_msgPool.inc:470
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/personal/posix/class_posixAccount.inc:196
+#: plugins/admin/groups/class_ogroup.inc:216
+#: plugins/admin/groups/class_group.inc:90
+msgid "System trust"
+msgstr "信赖的系统"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Trust mode"
+msgstr "信赖模式"
+
+#: plugins/personal/posix/class_posixAccount.inc:200
+#: plugins/admin/groups/class_ogroup.inc:220
+#: plugins/admin/groups/class_group.inc:94
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: include/class_msgPool.inc:478 ihtml/themes/breezy/islocked.tpl.c:17
-#: ihtml/themes/breezy/acl.tpl.c:53 ihtml/themes/breezy/acl.tpl.c:59
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:17
-#: ihtml/themes/breezy/msg_dialog.tpl.c:17
-#: setup/setup_migrate_adminAccount.tpl.c:23
-#: setup/setup_migrate_gosaAccounts.tpl.c:32
-msgid "Cancel"
-msgstr "取消"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "disabled"
+msgstr "禁用"
+
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/personal/posix/class_posixAccount.inc:226
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "full access"
+msgstr "完全访问权限"
 
-#: include/class_msgPool.inc:486 setup/class_setupStep_Migrate.inc:133
-#: ihtml/themes/breezy/msg_dialog.tpl.c:14 setup/setup_checks.tpl.c:2
-msgid "Ok"
-msgstr "好"
+#: plugins/personal/posix/class_posixAccount.inc:204
+#: plugins/admin/groups/class_ogroup.inc:224
+#: plugins/admin/groups/class_group.inc:98
+msgid "allow access to these hosts"
+msgstr "允许访问这些主机"
 
-#: include/class_msgPool.inc:494 ihtml/themes/breezy/acl.tpl.c:50
-#: ihtml/themes/breezy/acl.tpl.c:56 setup/setup_migrate_adminAccount.tpl.c:20
-#: setup/setup_migrate_gosaAccounts.tpl.c:29
-msgid "Apply"
-msgstr "应用"
+#: plugins/personal/posix/class_posixAccount.inc:207
+msgid "Only allow this user to connect to this list of hosts"
+msgstr ""
 
-#: include/class_msgPool.inc:502 ihtml/themes/breezy/copyPasteDialog.tpl.c:14
-msgid "Save"
-msgstr "保存"
+#: plugins/personal/posix/class_posixAccount.inc:298
+msgid "automatic"
+msgstr "自动"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add"
-msgstr "添加"
+#: plugins/personal/posix/class_posixAccount.inc:317
+msgid "expired"
+msgstr "过期"
 
-#: include/class_msgPool.inc:512
-#, php-format
-msgid "Add %s"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:319
+msgid "grace time active"
+msgstr "时间限制激活"
 
-#: include/class_msgPool.inc:522
-#, php-format
-msgid "Delete %s"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:322
+#: plugins/personal/posix/class_posixAccount.inc:324
+#: plugins/personal/posix/class_posixAccount.inc:326
+msgid "active"
+msgstr "活动"
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit..."
+#: plugins/personal/posix/class_posixAccount.inc:322
+msgid "password expired"
 msgstr ""
 
-#: include/class_msgPool.inc:532
-#, php-format
-msgid "Edit %s..."
+#: plugins/personal/posix/class_posixAccount.inc:324
+msgid "password not changeable"
 msgstr ""
 
-#: include/class_msgPool.inc:540
-msgid "Back"
-msgstr "返回"
+#: plugins/personal/posix/class_posixAccount.inc:419
+msgid "UID"
+msgstr "UID"
 
-#: include/class_msgPool.inc:569
-#, php-format
-msgid "This account has no valid %s extensions!"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:422
+#: plugins/admin/groups/class_group.inc:73
+#: plugins/admin/groups/class_group.inc:149
+msgid "GID"
+msgstr "GID"
 
-#: include/class_msgPool.inc:582
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking "
-"below."
+#: plugins/personal/posix/class_posixAccount.inc:478
+#: plugins/admin/groups/class_group.inc:181
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: include/class_msgPool.inc:588 include/class_msgPool.inc:595
+#: plugins/personal/posix/class_posixAccount.inc:538
 #, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove"
-" the %s settings first!"
+msgid "Group of user %s"
 msgstr ""
 
-#: include/class_msgPool.inc:610
-#, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking "
-"below."
+#: plugins/personal/roles/class_userRoles.inc:31
+#: plugins/admin/groups/class_groupManagement.inc:31
+msgid "Groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:616 include/class_msgPool.inc:623
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/personal/roles/class_userRoles.inc:32
+msgid "Edit user's groups and roles"
 msgstr ""
 
-#: include/class_msgPool.inc:635
-#, php-format
-msgid "Add %s settings"
+#: plugins/personal/roles/class_userRoles.inc:47
+#: plugins/personal/roles/class_userRoles.inc:51
+msgid "Groups membership"
 msgstr ""
 
-#: include/class_msgPool.inc:646
-#, php-format
-msgid "Remove %s settings"
+#: plugins/personal/roles/class_userRoles.inc:58
+#: plugins/personal/roles/class_userRoles.inc:62
+msgid "Roles membership"
 msgstr ""
 
-#: include/class_msgPool.inc:654
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "点击下面的“编辑”按钮修改该对话框内的信息"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password method"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "January"
-msgstr "一月"
+#: plugins/personal/generic/class_user.inc:46
+msgid "Password hash method to use"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "February"
-msgstr "二月"
+#: plugins/personal/generic/class_user.inc:51
+#: plugins/personal/generic/class_user.inc:386
+#: setup/setup_migrate_adminAccount.tpl.c:14
+#: ihtml/themes/breezy/recovery.tpl.c:2 ihtml/themes/breezy/recovery.tpl.c:5
+#: ihtml/themes/breezy/login.tpl.c:17 ihtml/themes/breezy/login.tpl.c:20
+#: ihtml/themes/breezy/login.tpl.c:23
+#: plugins/personal/generic/paste_generic.tpl.c:14
+msgid "Password"
+msgstr "口令"
 
-#: include/class_msgPool.inc:662
-msgid "March"
-msgstr "三月"
+#: plugins/personal/generic/class_user.inc:51
+msgid "Password (Leave empty if you do not wish to change it)"
+msgstr ""
 
-#: include/class_msgPool.inc:662
-msgid "April"
-msgstr "四月"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Password again"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "May"
-msgstr "五月"
+#: plugins/personal/generic/class_user.inc:55
+msgid "Same password as above, to avoid errors"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "June"
-msgstr "六月"
+#: plugins/personal/generic/class_user.inc:276
+#: plugins/personal/generic/class_user.inc:282
+#: plugins/admin/users/user-list.xml:79
+msgid "User"
+msgstr "用户"
 
-#: include/class_msgPool.inc:663
-msgid "July"
-msgstr "七月"
+#: plugins/personal/generic/class_user.inc:277
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account information"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "August"
-msgstr "八月"
+#: plugins/personal/generic/class_user.inc:283
+#: plugins/admin/users/class_userManagement.inc:247
+msgid "User account"
+msgstr ""
 
-#: include/class_msgPool.inc:663
-msgid "September"
-msgstr "九月"
+#: plugins/personal/generic/class_user.inc:304
+msgid "Personal information"
+msgstr "个人信息"
 
-#: include/class_msgPool.inc:664
-msgid "October"
-msgstr "十月"
+#: plugins/personal/generic/class_user.inc:309
+#: plugins/personal/generic/paste_generic.tpl.c:5
+msgid "Last name"
+msgstr "å§“"
 
-#: include/class_msgPool.inc:664
-msgid "November"
-msgstr "十一月"
+#: plugins/personal/generic/class_user.inc:309
+msgid "Last name of this user"
+msgstr ""
 
-#: include/class_msgPool.inc:664
-msgid "December"
-msgstr "十二月"
+#: plugins/personal/generic/class_user.inc:314
+#: plugins/personal/generic/paste_generic.tpl.c:8
+msgid "First name"
+msgstr "名"
 
-#: include/class_msgPool.inc:673
-msgid "Sunday"
+#: plugins/personal/generic/class_user.inc:314
+msgid "First name of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Monday"
+#: plugins/personal/generic/class_user.inc:319
+msgid "Short description of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Tuesday"
+#: plugins/personal/generic/class_user.inc:323
+msgid "Picture"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Wednesday"
+#: plugins/personal/generic/class_user.inc:323
+msgid "The avatar for this user"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Thursday"
+#: plugins/personal/generic/class_user.inc:330
+msgid "Organizational contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:673
-msgid "Friday"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:334
+#: plugins/admin/departments/class_department.inc:90
+#: plugins/admin/departments/class_department.inc:96
+msgid "Location"
+msgstr "位置"
 
-#: include/class_msgPool.inc:673
-msgid "Saturday"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:338
+#: plugins/admin/departments/class_department.inc:93
+msgid "State"
+msgstr "州/省"
 
-#: include/class_msgPool.inc:686
-msgid "Database operation failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:342
+#: plugins/admin/departments/class_department.inc:102
+msgid "Address"
+msgstr "住址"
 
-#: include/class_msgPool.inc:704
-msgid "read operation"
+#: plugins/personal/generic/class_user.inc:342
+msgid "Business postal address"
 msgstr ""
 
-#: include/class_msgPool.inc:704
-msgid "add operation"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room No."
+msgstr "房间号"
 
-#: include/class_msgPool.inc:704
-msgid "modify operation"
+#: plugins/personal/generic/class_user.inc:346
+msgid "Room number"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "delete operation"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:350
+#: plugins/admin/departments/class_department.inc:106
+msgid "Phone"
+msgstr "电话"
 
-#: include/class_msgPool.inc:705
-msgid "search operation"
+#: plugins/personal/generic/class_user.inc:350
+msgid "Business phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:705
-msgid "authentication"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:354
+msgid "Mobile"
+msgstr "手机"
 
-#: include/class_msgPool.inc:708
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/personal/generic/class_user.inc:354
+msgid "Business mobile number"
 msgstr ""
 
-#: include/class_msgPool.inc:710
-msgid "LDAP operation failed!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:358
+msgid "Pager"
+msgstr "呼机"
 
-#: include/class_msgPool.inc:729
-msgid "Upload failed!"
+#: plugins/personal/generic/class_user.inc:358
+msgid "Business pager number"
 msgstr ""
 
-#: include/class_msgPool.inc:732
-#, php-format
-msgid "Upload failed: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:362
+#: plugins/admin/departments/class_department.inc:110
+msgid "Fax"
+msgstr "传真"
 
-#: include/class_msgPool.inc:743
-msgid "Communication failure with the infrastructure service!"
+#: plugins/personal/generic/class_user.inc:362
+msgid "Business fax number"
 msgstr ""
 
-#: include/class_msgPool.inc:745
-#, php-format
-msgid "Communication failure with the infrastructure service: %s"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:366
+msgid "Homepage"
+msgstr "个人主页"
 
-#: include/class_msgPool.inc:758 include/class_msgPool.inc:761
-#, php-format
-msgid "This '%s' is still in use by this object: %s"
+#: plugins/personal/generic/class_user.inc:366
+msgid "Personal homepage"
 msgstr ""
 
-#: include/class_msgPool.inc:764
-#, php-format
-msgid "This '%s' is still in use."
+#: plugins/personal/generic/class_user.inc:372
+msgid "Account information"
 msgstr ""
 
-#: include/class_msgPool.inc:766
-#, php-format
-msgid "This '%s' is still in use by these objects: %s"
+#: plugins/personal/generic/class_user.inc:377
+msgid "Login of this user"
 msgstr ""
 
-#: include/class_msgPool.inc:776
-#, php-format
-msgid "File '%s' does not exist!"
+#: plugins/personal/generic/class_user.inc:386
+msgid "Password of the user"
 msgstr ""
 
-#: include/class_msgPool.inc:786
-#, php-format
-msgid "Cannot open file '%s' for reading!"
+#: plugins/personal/generic/class_user.inc:392
+msgid "Personal contact information"
 msgstr ""
 
-#: include/class_msgPool.inc:796
-#, php-format
-msgid "Cannot open file '%s' for writing!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:396
+msgid "Display name"
+msgstr "显示名称"
 
-#: include/class_msgPool.inc:806
-#, php-format
-msgid ""
-"The value for '%s' is currently unconfigured or invalid, please check your "
-"configuration file!"
+#: plugins/personal/generic/class_user.inc:396
+msgid "Name this user should appear as. Used by Exchange."
 msgstr ""
 
-#: include/class_msgPool.inc:816
-#, php-format
-msgid "Cannot delete file '%s'!"
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home address"
 msgstr ""
 
-#: include/class_msgPool.inc:826
-#, php-format
-msgid "Cannot create folder '%s'!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:400
+msgid "Home postal address"
+msgstr "住宅地址"
 
-#: include/class_msgPool.inc:836
-#, php-format
-msgid "Cannot delete folder '%s'!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:404
+msgid "Private phone"
+msgstr "私人电话"
 
-#: include/class_msgPool.inc:846
-#, php-format
-msgid "Checking for %s support"
+#: plugins/personal/generic/class_user.inc:404
+msgid "Home phone number"
 msgstr ""
 
-#: include/class_msgPool.inc:856
-#, php-format
-msgid "Install and activate the %s PHP module."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:410
+msgid "Organizational information"
+msgstr "组织信息"
 
-#: include/class_msgPool.inc:866
-#, php-format
-msgid "Install and activate the %s Pear module."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:415
+msgid "Title"
+msgstr "ç§°è°“"
 
-#: include/class_msgPool.inc:876
-#, php-format
+#: plugins/personal/generic/class_user.inc:415
 msgid ""
-"Cannot initialize class '%s'! Maybe there is a plugin missing in your "
-"FusionDirectory setup?"
+"Title of a person in their organizational context. Each title is one value "
+"of this multi-valued attribute"
 msgstr ""
 
-#: include/class_msgPool.inc:884
-msgid ""
-"The supplied base is not valid and has been reset to the previous value!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:420
+#: plugins/admin/departments/class_organization.inc:30
+#: plugins/admin/departments/class_organization.inc:31
+#: plugins/admin/departments/class_organization.inc:34
+msgid "Organization"
+msgstr "组织/公司"
 
-#: include/functions.inc:123
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:424
+#: plugins/admin/departments/class_department.inc:33
+#: plugins/admin/departments/class_department.inc:39
+#: plugins/admin/departments/dep-list.xml:21
+msgid "Department"
+msgstr "部门"
 
-#: include/functions.inc:142
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+#: plugins/personal/generic/class_user.inc:424
+msgid "Department to which the user belongs"
 msgstr ""
 
-#: include/functions.inc:511 include/functions.inc:3344
-#: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:271
-#: include/simpleplugin/class_simplePlugin.inc:276
-#: include/simpleplugin/class_simplePlugin.inc:288
-#: html/class_passwordRecovery.inc:108
-msgid "Fatal error"
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department No."
+msgstr "部门编号"
+
+#: plugins/personal/generic/class_user.inc:428
+msgid "Department number"
 msgstr ""
 
-#: include/functions.inc:512
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
-msgstr "致命错误:连接 LDAP 错误。服务器返回 '%s'。"
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee No."
+msgstr "员工编号"
 
-#: include/functions.inc:583
-msgid ""
-"Login (uid) is not unique inside the LDAP tree. Please contact your "
-"administrator."
+#: plugins/personal/generic/class_user.inc:432
+msgid "Employee number"
 msgstr ""
 
-#: include/functions.inc:616
-msgid "Authentication error"
+#: plugins/personal/generic/class_user.inc:436
+msgid "Employee type"
+msgstr "员工类别"
+
+#: plugins/personal/generic/class_user.inc:440
+#: plugins/admin/departments/class_department.inc:84
+msgid "Manager"
 msgstr ""
 
-#: include/functions.inc:617
-msgid ""
-"It seems your user password has expired. Please use <a "
-"href=\"recovery.php\">password recovery</a> to change it."
+#: plugins/personal/generic/class_user.inc:607
+#, php-format
+msgid "Ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: include/functions.inc:668 include/functions.inc:791
-msgid "Error while adding a lock. Contact the developers!"
+#: plugins/personal/generic/class_user.inc:610
+msgid "You are not allowed to change your own password"
 msgstr ""
 
-#: include/functions.inc:678
+#: plugins/personal/generic/class_user.inc:621
 #, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+msgid "You must wait %d seconds before changing your password again"
 msgstr ""
 
-#: include/functions.inc:678
-#, php-format
-msgid "LDAP server returned: %s"
+#: plugins/personal/generic/class_user.inc:635
+msgid "Password is in history of old passwords"
 msgstr ""
 
-#: include/functions.inc:859
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: plugins/personal/generic/class_user.inc:640
+#: plugins/personal/generic/class_user.inc:644
+msgid "Password is not being changed from existing value"
 msgstr ""
 
-#: include/functions.inc:1130
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "超过了 %d 个条目的大小限制!"
+#: plugins/personal/generic/class_user.inc:651
+msgid "You need to specify your current password in order to proceed."
+msgstr "您需要输入当前口令才能继续。"
 
-#: include/functions.inc:1132
-#, php-format
+#: plugins/personal/generic/class_user.inc:653
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
-msgstr "设置新的大小限制为 %s 并且如果限制依然超出还显示这条信息。"
-
-#: include/functions.inc:1149
-msgid "Configure"
-msgstr "配置"
-
-#: include/functions.inc:1154
-msgid "incomplete"
-msgstr "不完整"
-
-#: include/functions.inc:1559
-msgid "Continue anyway"
-msgstr "仍然继续"
-
-#: include/functions.inc:1561
-msgid "Edit anyway"
-msgstr "仍然编辑"
-
-#: include/functions.inc:1563
-#, php-format
-msgid "You're going to edit the LDAP entry/entries %s"
-msgstr ""
-
-#: include/functions.inc:1818
-msgid "Entries per page"
-msgstr "每页条目数"
+"The passwords you've entered as \"New password\" and \"Repeated new "
+"password\" do not match."
+msgstr ""
 
-#: include/functions.inc:1849 include/class_filter.inc:353
-msgid "Apply filter"
-msgstr "应用过滤器"
+#: plugins/personal/generic/class_user.inc:655
+#: ihtml/themes/breezy/recovery.tpl.c:29 ihtml/themes/breezy/recovery.tpl.c:32
+msgid "New password"
+msgstr "新口令"
 
-#: include/functions.inc:2117
-#, php-format
-msgid "%sB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:657
+msgid "The password used as new and current are too similar."
+msgstr "输入的新口令和当前口令非常相似。"
 
-#: include/functions.inc:2118
-#, php-format
-msgid "%sKiB"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:659
+msgid "The password used as new is to short."
+msgstr "输入的新口令太短了。"
 
-#: include/functions.inc:2119
-#, php-format
-msgid "%sMiB"
+#: plugins/personal/generic/class_user.inc:661
+msgid "The password contains possibly problematic Unicode characters!"
 msgstr ""
 
-#: include/functions.inc:2120
-#, php-format
-msgid "%sGiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
+msgid "Statistics about users"
 msgstr ""
 
-#: include/functions.inc:2121
-#, php-format
-msgid "%sTiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
+msgid "Users statistics"
 msgstr ""
 
-#: include/functions.inc:2122
-#, php-format
-msgid "%sPiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
+msgid "Groups statistics"
 msgstr ""
 
-#: include/functions.inc:2123
-#, php-format
-msgid "%sEiB"
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
+#: plugins/addons/dashboard/users_accounts.tpl.c:8
+msgid "Expired accounts"
 msgstr ""
 
-#: include/functions.inc:2124
-#, php-format
-msgid "%sZiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:27
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
+msgid "Dashboard"
 msgstr ""
 
-#: include/functions.inc:2125
-#, php-format
-msgid "%sYiB"
+#: plugins/addons/dashboard/class_dashBoard.inc:29
+msgid "Statistics and various informations"
 msgstr ""
 
-#: include/functions.inc:2157 include/class_filter.inc:315
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-
-#: include/functions.inc:2294
-#, php-format
-msgid ""
-"File '%s' could not be deleted. Try fusiondirectory-setup --check-"
-"directories to fix permissions."
+#: plugins/addons/dashboard/class_dashBoard.inc:38
+msgid "Reporting"
 msgstr ""
 
-#: include/functions.inc:2336
-msgid "Cannot write to revision file!"
+#: plugins/addons/dashboard/class_dashBoard.inc:49
+#: plugins/addons/dashboard/main_stats.tpl.c:2
+msgid "Statistics"
 msgstr ""
 
-#: include/functions.inc:2365
-msgid "Cannot read to revision file!"
+#: plugins/config/class_recoveryConfig.inc:28
+msgid "Password recovery"
 msgstr ""
 
-#: include/functions.inc:2568
-msgid "'nextIdHook' is not available. Using default base!"
+#: plugins/config/class_recoveryConfig.inc:29
+msgid "Settings for the password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "LDAP warning"
+#: plugins/config/class_recoveryConfig.inc:40
+msgid "Password recovery settings"
 msgstr ""
 
-#: include/functions.inc:2586
-msgid "Cannot get schema information from server. No schema check possible!"
+#: plugins/config/class_recoveryConfig.inc:45
+msgid "Activate password recovery"
 msgstr ""
 
-#: include/functions.inc:2609
-msgid "Main FusionDirectory schema"
+#: plugins/config/class_recoveryConfig.inc:46
+msgid "Whether to activate or not password recovery feature"
 msgstr ""
 
-#: include/functions.inc:2616
-msgid "Schema used to store FusionDirectory configuration"
+#: plugins/config/class_recoveryConfig.inc:51
+msgid "Sender email address"
 msgstr ""
 
-#: include/functions.inc:2623
-msgid "Used to store trust mode information in users or groups."
+#: plugins/config/class_recoveryConfig.inc:52
+msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: include/functions.inc:2630
-msgid "Used to store templates."
+#: plugins/config/class_recoveryConfig.inc:58
+msgid "Link validity (minutes)"
 msgstr ""
 
-#: include/functions.inc:2637
-msgid "Used to store POSIX information."
+#: plugins/config/class_recoveryConfig.inc:59
+msgid "Number of minutes before a recovery link expires"
 msgstr ""
 
-#: include/functions.inc:2644
-#, php-format
-msgid "Missing required object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:65
+msgid "Salt for tokens"
 msgstr ""
 
-#: include/functions.inc:2646
-#, php-format
-msgid "Missing optional object class \"%s\"!"
+#: plugins/config/class_recoveryConfig.inc:66
+msgid ""
+"Just a security measure, you can put anything in there, even random "
+"characters"
 msgstr ""
 
-#: include/functions.inc:2650
-#, php-format
-msgid "Class(es) available"
+#: plugins/config/class_recoveryConfig.inc:72
+msgid "Allow the use of alternate addresses"
 msgstr ""
 
-#: include/functions.inc:2668
+#: plugins/config/class_recoveryConfig.inc:73
 msgid ""
-"You have installed the mixed groups plugin, but your schema configuration "
-"does not support this."
+"Users will also be able to enter one of theirs alternate addresses to "
+"recover their password"
 msgstr ""
 
-#: include/functions.inc:2669
-msgid ""
-"In order to use mixed groups the objectClass \"posixGroup\" must be "
-"AUXILIARY"
+#: plugins/config/class_recoveryConfig.inc:80
+msgid "First email"
 msgstr ""
 
-#: include/functions.inc:2672
-msgid ""
-"Your schema is configured to support mixed groups, but this plugin is not "
-"present."
+#: plugins/config/class_recoveryConfig.inc:83
+#: plugins/config/class_recoveryConfig.inc:102
+msgid "Subject"
 msgstr ""
 
-#: include/functions.inc:2673
-msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
+#: plugins/config/class_recoveryConfig.inc:84
+msgid "Subject of the first email"
 msgstr ""
 
-#: include/functions.inc:3154 include/functions.inc:3175
-#: include/functions.inc:3215 include/functions.inc:3227
-#: include/functions.inc:3231 include/functions.inc:3238
-#: include/functions.inc:3247
-msgid "Cannot allocate a free ID:"
+#: plugins/config/class_recoveryConfig.inc:87
+msgid "[FusionDirectory] Password recovery link"
 msgstr ""
 
-#: include/functions.inc:3154
-msgid "unknown idAllocation method!"
+#: plugins/config/class_recoveryConfig.inc:90
+#, php-format
+msgid "Body (first %s is login, second is link)"
 msgstr ""
 
-#: include/functions.inc:3175
+#: plugins/config/class_recoveryConfig.inc:91
 #, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+msgid ""
+"Body of the first email, sent when the user ask for a new password. Use %s "
+"for the login and the recovery link."
 msgstr ""
 
-#: include/functions.inc:3215
-msgid "sambaUnixIdPool is not unique!"
+#: plugins/config/class_recoveryConfig.inc:94
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Here are your informations : \n"
+" - Login : %s\n"
+" - Link : %s\n"
+"\n"
+"This link is only valid for 10 minutes."
 msgstr ""
 
-#: include/functions.inc:3227 include/functions.inc:3231
-msgid "no ID available!"
+#: plugins/config/class_recoveryConfig.inc:99
+msgid "Second email"
 msgstr ""
 
-#: include/functions.inc:3247
-msgid "maximum tries exceeded!"
+#: plugins/config/class_recoveryConfig.inc:103
+msgid "Subject of the second email"
 msgstr ""
 
-#: include/functions.inc:3309
-msgid "Cannot allocate a free ID!"
+#: plugins/config/class_recoveryConfig.inc:106
+msgid "[FusionDirectory] Password recovery successful"
 msgstr ""
 
-#: include/functions.inc:3345
+#: plugins/config/class_recoveryConfig.inc:109
 #, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgid "Body (%s is login)"
 msgstr ""
 
-#: include/class_session.inc:50 include/class_session.inc:88
-#: include/class_session.inc:127
-msgid "Requested channel does not exist! Please contact your Administrator."
+#: plugins/config/class_recoveryConfig.inc:110
+#, php-format
+msgid ""
+"Body of the second email, sent to confirm the password has been changed. Use"
+" %s for the user login."
 msgstr ""
 
-#: include/class_template.inc:37
-msgid "Object template, used to create several objects with similar values"
+#: plugins/config/class_recoveryConfig.inc:113
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"Your password has been changed.\n"
+"Your login is still %s."
 msgstr ""
 
-#: include/class_template.inc:41
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "Template name"
-msgstr "模板名称"
-
-#: include/class_pluglist.inc:163
-msgid "All objects in this category"
+#: plugins/config/class_configInLdap.inc:56
+#: plugins/config/class_configInLdap.inc:70
+msgid "Configuration"
 msgstr ""
 
-#: include/php_setup.inc:45 include/php_setup.inc:132
-msgid "File"
-msgstr "文件"
-
-#: include/php_setup.inc:47 include/php_setup.inc:132
-msgid "Line"
-msgstr "行"
-
-#: include/php_setup.inc:53
-msgid "PHP error"
-msgstr "PHP 错误"
-
-#: include/php_setup.inc:62
-msgid "class"
-msgstr "ç±»"
-
-#: include/php_setup.inc:70
-msgid "function"
-msgstr "功能"
-
-#: include/php_setup.inc:76
-msgid "static"
-msgstr "静态"
-
-#: include/php_setup.inc:80
-msgid "method"
-msgstr "方法"
-
-#: include/php_setup.inc:131 ihtml/themes/breezy/msg_dialog.tpl.c:11
-msgid "Trace"
-msgstr "跟踪"
-
-#: include/php_setup.inc:132
-msgid "Type"
-msgstr "类型"
-
-#: include/php_setup.inc:133
-msgid "Arguments"
-msgstr "参数"
-
-#: include/php_setup.inc:231
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "生成这个页面导致 PHP 解析器发生一些错误!"
-
-#: include/php_setup.inc:236
-msgid "Send bug report to the FusionDirectory Team"
+#: plugins/config/class_configInLdap.inc:57
+#: plugins/config/class_configInLdap.inc:62
+msgid "FusionDirectory configuration"
 msgstr ""
 
-#: include/php_setup.inc:237
-msgid "Send bugreport"
+#: plugins/config/class_configInLdap.inc:58
+msgid "Configuration screen of FusionDirectory"
 msgstr ""
 
-#: include/php_setup.inc:242
-msgid "Toggle information"
-msgstr "切换信息"
-
-#: include/class_msg_dialog.inc:167
-msgid "Please fix the above error and reload the page."
+#: plugins/config/class_configInLdap.inc:88
+msgid "Look and feel"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:30
-msgid "Creating an object snapshot"
+#: plugins/config/class_configInLdap.inc:91
+msgid "Language"
+msgstr "语言"
+
+#: 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 ""
 
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "DN of the object you are creating a snapshot of"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp"
-msgstr "日期"
+#: plugins/config/class_configInLdap.inc:96
+msgid "Theme to be used"
+msgstr ""
 
-#: include/class_SnapshotDialogs.inc:37
-msgid "Timestamp of this snapshot creation"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason"
+#: plugins/config/class_configInLdap.inc:102
+msgid "Timezone to be used"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:41
-msgid "Reason for creating this snapshot"
+#: plugins/config/class_configInLdap.inc:110
+msgid "Schema setup"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:60 include/class_SnapshotDialogs.inc:118
-msgid "Y-m-d, H:i:s"
+#: plugins/config/class_configInLdap.inc:113
+msgid "Schema validation"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:135 include/class_SnapshotDialogs.inc:136
-msgid "Restore"
+#: plugins/config/class_configInLdap.inc:114
+msgid "Enables schema checking during login."
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:178
-msgid "Restoring snapshots"
+#: plugins/config/class_configInLdap.inc:121
+msgid "Password settings"
 msgstr ""
 
-#: include/class_SnapshotDialogs.inc:186
-msgid "Existing snapshots for this object"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Password default hash"
 msgstr ""
 
-#: include/exporter/class_PDF.php:61
-msgid "Page"
+#: plugins/config/class_configInLdap.inc:124
+msgid "Default hash to be used"
 msgstr ""
 
-#: include/exporter/class_cvsExporter.inc:93
-msgid "CSV"
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force default hash"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:58
-msgid "No PDF export possible: there is no FPDF library installed."
+#: plugins/config/class_configInLdap.inc:129
+msgid "Force the use of the default password hash"
 msgstr ""
 
-#: include/exporter/class_pdfExporter.inc:196
-msgid "PDF"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Password minimum length"
 msgstr ""
 
-#: include/class_xml.inc:66
-msgid "in"
-msgstr "于"
+#: plugins/config/class_configInLdap.inc:133
+msgid "Minimum length of user passwords"
+msgstr ""
 
-#: include/class_xml.inc:68
-msgid "on line"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Password minimum differs"
 msgstr ""
 
-#: include/class_xml.inc:69
-msgid "XML error"
+#: plugins/config/class_configInLdap.inc:138
+msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: include/class_plugin.inc:543
-#: include/simpleplugin/class_simplePlugin.inc:759
-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!"
+#: plugins/config/class_configInLdap.inc:143
+msgid "Use account expiration"
 msgstr ""
 
-#: include/class_plugin.inc:795
-#, php-format
+#: plugins/config/class_configInLdap.inc:144
 msgid ""
-"Recursive dependency in the template fields: \"%1$s\" cannot depend on "
-"\"%2$s\" as \"%2$s\" already depends on \"%1$s\""
+"Enables shadow attribute tests during the login to FusionDirectory and "
+"forces password renewal or account locking"
 msgstr ""
 
-#: include/class_plugin.inc:1322
-#, php-format
-msgid "Tab \"%s\""
+#: plugins/config/class_configInLdap.inc:148
+msgid "SASL Realm"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:302
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:20
-msgid "Cancel all"
+#: plugins/config/class_configInLdap.inc:152
+msgid "SASL Exop"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:369
-msgid "Cannot paste"
+#: plugins/config/class_configInLdap.inc:152
+msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:168
-msgid "Template settings"
+#: plugins/config/class_configInLdap.inc:158
+msgid "Core settings"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:171
-msgid "This is the name of the template"
+#: plugins/config/class_configInLdap.inc:161
+msgid "Display summary in listings"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:271
-msgid "Only main tab can compute dn"
+#: plugins/config/class_configInLdap.inc:162
+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 ""
 
-#: include/simpleplugin/class_simplePlugin.inc:278
-#, php-format
-msgid "Could not compute dn: no parent tab class for \"%s\""
+#: plugins/config/class_configInLdap.inc:167
+msgid "Edit locking"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:290
-#, php-format
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
-"Could not compute dn: could not find objectType infos from tab class \"%s\""
+"Check if a entry currently being edited has been modified outside of "
+"FusionDirectory in the meantime."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#: include/simpleplugin/class_simplePlugin.inc:694
-msgid "Error when saving"
+#: plugins/config/class_configInLdap.inc:173
+msgid "Enable logging"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:686
-#, php-format
-msgid "There is already an entry with the same dn : %s"
+#: plugins/config/class_configInLdap.inc:174
+msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:694
-#, php-format
-msgid "The entry %s is not existing"
+#: plugins/config/class_configInLdap.inc:179
+msgid "LDAP size limit"
 msgstr ""
 
-#: include/simpleplugin/class_simplePlugin.inc:1038
-#, php-format
-msgid "Unknown field \"%s\""
+#: plugins/config/class_configInLdap.inc:179
+msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: include/simpleplugin/simple-select-list.xml:11
-msgid "Please select the desired entries"
+#: plugins/config/class_configInLdap.inc:186
+msgid "Login and session"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:243
-#, php-format
-msgid "%s template"
+#: plugins/config/class_configInLdap.inc:189
+msgid "Login attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simpleManagement.inc:401
-#: include/simpleplugin/class_simpleManagement.inc:407
-#, php-format
-msgid "Show %s"
+#: plugins/config/class_configInLdap.inc:190
+msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:426
-#, php-format
-msgid "POSIX group %s"
+#: plugins/config/class_configInLdap.inc:196
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:428
-#, php-format
-msgid "Role %s"
+#: plugins/config/class_configInLdap.inc:197
+msgid ""
+"Enables PHP security checks to force encrypted access (https) to the web "
+"interface."
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:430
-#, php-format
-msgid "Group %s"
+#: plugins/config/class_configInLdap.inc:201
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:465
-msgid "Group of user"
-msgstr "用户组"
+#: plugins/config/class_configInLdap.inc:202
+msgid "will display a warning to the user when http is used instead of https."
+msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:634
-#: include/simpleplugin/class_attribute.inc:1105
-#: include/simpleplugin/class_attribute.inc:1139
-msgid "None"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Session lifetime"
 msgstr ""
 
-#: include/simpleplugin/class_dialogAttributes.inc:636
-msgid "Unknown"
-msgstr "未知"
+#: plugins/config/class_configInLdap.inc:207
+msgid "Defines when a session will expire in seconds (0 to disable)."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:264
-msgid "B"
+#: plugins/config/class_configInLdap.inc:212
+msgid "HTTP Basic authentication"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:265
-msgid "KiB"
+#: plugins/config/class_configInLdap.inc:212
+msgid "Use HTTP Basic authentication protocol instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:266
-msgid "MiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "HTTP Header authentication"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:267
-msgid "GiB"
+#: plugins/config/class_configInLdap.inc:217
+msgid "Use HTTP Header authentication instead of the login form."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:268
-msgid "TiB"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Header name"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:279
-msgid "seconds"
+#: plugins/config/class_configInLdap.inc:222
+msgid "Name of the header containing user identifier."
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:280
-msgid "minutes"
+#: plugins/config/class_configInLdap.inc:232
+msgid "Enable snapshots"
 msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:281
-msgid "hours"
-msgstr "小时"
+#: plugins/config/class_configInLdap.inc:232
+msgid ""
+"This enables you to save certain states of entries and restore them later "
+"on."
+msgstr ""
 
-#: include/simpleplugin/class_helpersAttribute.inc:282
-msgid "days"
-msgstr "天"
+#: plugins/config/class_configInLdap.inc:237
+msgid "Snapshot base"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:544
-#: include/simpleplugin/class_attribute.inc:2272
-#, php-format
-msgid "%s (required)"
+#: plugins/config/class_configInLdap.inc:237
+msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1165
-#, php-format
-msgid "The value \"%s\" for field \"%s\" is not in the list of possible choices"
+#: plugins/config/class_configInLdap.inc:244
+msgid "SSL"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1292
-#, php-format
-msgid "An integer between %d and %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Key path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1294
-#, php-format
-msgid "An integer larger than %d"
+#: plugins/config/class_configInLdap.inc:247
+msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1296
-#, php-format
-msgid "An integer smaller than %d"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1398
-#, php-format
-msgid "A float between %f and %f"
+#: plugins/config/class_configInLdap.inc:252
+msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1400
-#, php-format
-msgid "A float larger than %f"
+#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:272
+msgid "CA certificate path"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1402
-#, php-format
-msgid "A float smaller than %f"
+#: plugins/config/class_configInLdap.inc:257
+msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1530
-#, php-format
-msgid "Error, incorrect date: %s"
+#: plugins/config/class_configInLdap.inc:264
+msgid "CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-#: include/simpleplugin/class_attribute.inc:1597
-#: include/simpleplugin/class_attribute.inc:1600
-#, php-format
-msgid "Cannot read uploaded file: %s"
+#: plugins/config/class_configInLdap.inc:267
+msgid "Enable CAS"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1594
-msgid "file is empty"
+#: plugins/config/class_configInLdap.inc:267
+msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1597
-msgid "file not found"
+#: plugins/config/class_configInLdap.inc:272
+msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1600
-msgid "file not readable"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1633
-#, php-format
-msgid "%s (%d bytes)"
+#: plugins/config/class_configInLdap.inc:277
+msgid "Host of the CAS server"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1680
-#: include/simpleplugin/class_attribute.inc:1877
-#: include/simpleplugin/class_attribute.inc:1878
-msgid "Upload"
-msgstr "上传"
-
-#: include/simpleplugin/class_attribute.inc:1685
-#: include/simpleplugin/class_attribute.inc:1686
-msgid "Download"
-msgstr "下载"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port"
+msgstr "端口"
 
-#: include/simpleplugin/class_attribute.inc:1853
-msgid ""
-"Cannot save user picture, FusionDirectory requires the PHP module "
-"\"imagick\" to be installed!"
+#: plugins/config/class_configInLdap.inc:282
+msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1924
-#: setup/class_setupStep_Ldap.inc:50 ihtml/themes/breezy/simple-list.tpl.c:2
-msgid "Base"
-msgstr "位置"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context"
+msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:1927
-msgid "Object base"
+#: plugins/config/class_configInLdap.inc:287
+msgid "CAS context to be used"
 msgstr ""
 
-#: include/simpleplugin/class_attribute.inc:2886
-#, php-format
-msgid "Invalid value for %s"
+#: plugins/config/class_configInLdap.inc:294
+msgid "People and group storage"
 msgstr ""
 
-#: include/simpleplugin/simple-list.xml:11
-msgid "NO LABEL"
+#: plugins/config/class_configInLdap.inc:298
+msgid "People DN attribute"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:90
-#, php-format
-msgid ""
-"No plugin definitions found to initialize '%s', please check your "
-"configuration file."
+#: plugins/config/class_configInLdap.inc:298
+msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:319
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "删除进程被插件 '%s' 取消: %s"
+#: plugins/config/class_configInLdap.inc:303
+msgid "CN pattern"
+msgstr ""
 
-#: include/simpleplugin/class_simpleTabs.inc:399
-#, php-format
-msgid "Move from \"%s\" to \"%s\" failed"
+#: plugins/config/class_configInLdap.inc:303
+msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: include/class_timezone.inc:52
-#, php-format
-msgid "The timezone setting \"%s\" in your configuration is not valid."
+#: plugins/config/class_configInLdap.inc:308
+msgid "Strict naming policy"
 msgstr ""
 
-#: include/class_acl.inc:35 include/class_acl.inc:39
-msgid "ACL"
-msgstr "ACL"
+#: plugins/config/class_configInLdap.inc:309
+msgid "Enables strict checking of user and group names"
+msgstr ""
 
-#: include/class_acl.inc:36
-msgid "Manage access control lists"
+#: plugins/config/class_configInLdap.inc:314
+msgid "Group/user min id"
 msgstr ""
 
-#: include/class_acl.inc:118
-#, php-format
+#: plugins/config/class_configInLdap.inc:315
 msgid ""
-"Unkown ACL type '%s'!\n"
-"You might need to run \"fusiondirectory-setup --migrate-acls\" to migrate your acls to the new format."
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: include/class_acl.inc:165
-#, php-format
-msgid "Unknown entry '%s'!"
+#: plugins/config/class_configInLdap.inc:320
+msgid "Next id hook"
 msgstr ""
 
-#: include/class_acl.inc:168
-#, php-format
-msgid "All users"
+#: plugins/config/class_configInLdap.inc:320
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:59
-#, php-format
-msgid "Cannot change password, unknown user '%s'"
+#: plugins/config/class_configInLdap.inc:324
+msgid "Base number for user id"
 msgstr ""
 
-#: include/password-methods/class_password-methods-sasl.inc:85
-msgid ""
-"You need to fill saslRealm or saslExop in the configuration screen in order "
-"to use SASL"
+#: plugins/config/class_configInLdap.inc:325
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: include/class_SnapshotHandler.inc:422
-msgid "There was a problem uncompressing snapshot data"
+#: plugins/config/class_configInLdap.inc:330
+msgid "Base number for group id"
 msgstr ""
 
-#: include/class_logging.inc:80
-#, php-format
-msgid "Logging failed: %s"
+#: plugins/config/class_configInLdap.inc:331
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: include/class_logging.inc:102
-#, php-format
-msgid "Invalid option \"%s\" specified!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "Users RDN"
 msgstr ""
 
-#: include/class_logging.inc:106
-msgid "Specified objectType is empty or invalid!"
+#: plugins/config/class_configInLdap.inc:336
+msgid "The branch where users are stored."
 msgstr ""
 
-#: html/index.php:56 html/class_passwordRecovery.inc:165
-#, php-format
-msgid "Warning: <a href=\"%s\">Session is not encrypted!</a>"
+#: plugins/config/class_configInLdap.inc:341
+msgid "Groups RDN"
 msgstr ""
 
-#: html/index.php:62
-msgid ""
-"Warning: The session lifetime configured in your fusiondirectory.conf will "
-"be overridden by php.ini settings."
+#: plugins/config/class_configInLdap.inc:341
+msgid "The branch where groups are stored."
 msgstr ""
 
-#: html/index.php:150
-#, php-format
-msgid ""
-"FusionDirectory configuration %s/%s is not readable. Please run "
-"fusiondirectory-setup --check-config to fix this."
+#: plugins/config/class_configInLdap.inc:346
+msgid "ACL role RDN"
 msgstr ""
 
-#: html/index.php:171
-msgid "Smarty error"
+#: plugins/config/class_configInLdap.inc:346
+msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: html/index.php:173
-#, php-format
-msgid "Directory \"%s\" specified as compile directory is not accessible!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Id allocation method"
 msgstr ""
 
-#: html/index.php:208
-msgid "Your FusionDirectory session has expired!"
+#: plugins/config/class_configInLdap.inc:351
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: html/index.php:211
-msgid "Your IP has changed!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Traditional"
 msgstr ""
 
-#: html/index.php:214
-#, php-format
-msgid "Invalid plugin parameter \"%s\"!"
+#: plugins/config/class_configInLdap.inc:354
+msgid "Samba unix id pool"
 msgstr ""
 
-#: html/index.php:217
-msgid "No session found!"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Pool user id min"
 msgstr ""
 
-#: html/index.php:253
-msgid "LDAP schema check reported errors:"
+#: plugins/config/class_configInLdap.inc:357
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: html/index.php:255
-msgid "LDAP schema error"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Pool user id max"
 msgstr ""
 
-#: html/index.php:282
-msgid "Please specify a valid username!"
-msgstr "请输入一个有效的用户名!"
+#: plugins/config/class_configInLdap.inc:362
+msgid "Maximum value for user id when using pool method"
+msgstr ""
 
-#: html/index.php:285
-msgid "Please specify your password!"
-msgstr "请输入您的口令!"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Pool group id min"
+msgstr ""
 
-#: html/index.php:304
-msgid "Please check the username/password combination."
-msgstr "请检查用户名/口令。"
+#: plugins/config/class_configInLdap.inc:367
+msgid "Minimum value for group id when using pool method"
+msgstr ""
 
-#: html/index.php:334
-msgid "Account locked. Please contact your system administrator!"
+#: plugins/config/class_configInLdap.inc:372
+msgid "Pool group id max"
 msgstr ""
 
-#: html/index.php:454
-#, php-format
-msgid "No value found in HTTP header \"%s\""
+#: plugins/config/class_configInLdap.inc:372
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: html/index.php:475
-#, php-format
-msgid "Header user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid "Restrict role members"
 msgstr ""
 
-#: html/index.php:485
-#, php-format
-msgid "Header user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:377
+msgid ""
+"When enabled only users from the same branch or members of groups from the "
+"same branch can be added to a role."
 msgstr ""
 
-#: html/index.php:547
-#, php-format
-msgid "CAS user \"%s\" could not be found in the LDAP"
+#: plugins/config/class_configInLdap.inc:383
+msgid "Debugging"
 msgstr ""
 
-#: html/index.php:557
-#, php-format
-msgid "CAS user \"%s\" match several users in the LDAP"
+#: plugins/config/class_configInLdap.inc:386
+msgid "Display errors"
 msgstr ""
 
-#: html/index.php:596
+#: plugins/config/class_configInLdap.inc:387
 msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "您的浏览器已经禁用 cookies。请启用 cookies 并在登录前重新加载本页面!"
+"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 ""
 
-#: html/main.php:115
-msgid "PHP configuration"
+#: plugins/config/class_configInLdap.inc:391
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: html/main.php:116
+#: plugins/config/class_configInLdap.inc:391
 msgid ""
-"Fatal error: Register globals is on. FusionDirectory will refuse to login "
-"unless this is fixed by an administrator."
+"Stop LDAP actions if there is no answer within the specified number of "
+"seconds."
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:396
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: html/main.php:142
-msgid "Password change"
+#: plugins/config/class_configInLdap.inc:397
+msgid ""
+"Track LDAP timing statistics to the syslog. This may help to find indexing "
+"problems or bad search filters."
 msgstr ""
 
-#: html/main.php:142
-msgid "Your password is about to expire, please change your password!"
+#: plugins/config/class_configInLdap.inc:402
+msgid "Debug level"
 msgstr ""
 
-#: html/main.php:158
-msgid "Your password has expired, please set a new one."
+#: plugins/config/class_configInLdap.inc:403
+msgid "Display certain information on each page load."
 msgstr ""
 
-#: html/main.php:208
-msgid "Running out of memory!"
-msgstr ""
+#: plugins/config/class_configInLdap.inc:415
+msgid "Miscellaneous"
+msgstr "杂项"
 
-#: html/main.php:251
-msgid "User ACL checks disabled"
+#: plugins/config/class_configInLdap.inc:420
+msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: html/main.php:289
-msgid "Plugin"
+#: plugins/config/class_configInLdap.inc:424
+msgid "tab"
 msgstr ""
 
-#: html/main.php:290
-#, php-format
-msgid ""
-"Fatal error: Cannot find any plugin definitions for plugin '%s' ('%s' is not"
-" a file)!"
+#: plugins/config/class_configInLdap.inc:424
+msgid "The tab that this hook concerns"
 msgstr ""
 
-#: html/main.php:305
-msgid "Configuration Error"
+#: plugins/config/class_configInLdap.inc:429
+msgid "mode"
+msgstr "模式"
+
+#: plugins/config/class_configInLdap.inc:429
+msgid "When to call this command"
 msgstr ""
 
-#: html/main.php:306
-#, php-format
-msgid ""
-"Fatal error: not all POST variables have been transfered by PHP - please "
-"inform your administrator!"
+#: plugins/config/class_configInLdap.inc:435
+msgid "cmd"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:109
-#, php-format
-msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
+#: plugins/config/class_configInLdap.inc:435
+msgid "The command that will be called"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:132 html/setup.php:59
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "目录 '%s' 作为编译目录无法访问!"
+#: plugins/config/class_configInLdap.inc:442
+msgid "Hooks"
+msgstr "钩子"
 
-#: html/class_passwordRecovery.inc:455
-#, php-format
-msgid "Did not find an account with login \"%s\""
+#: plugins/config/class_configInLdap.inc:449
+msgid "Display hook output"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:458
-#, php-format
-msgid "Found multiple accounts with login \"%s\""
+#: plugins/config/class_configInLdap.inc:450
+msgid ""
+"When enabled successful hook execution output is displayed to the user using"
+" a dialog."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:472 ihtml/themes/breezy/recovery.tpl.c:71
-msgid "Email address"
-msgstr "邮件地址"
-
-#: html/class_passwordRecovery.inc:495
-#, php-format
-msgid "There is no account using email \"%s\""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available shells"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:498
-#, php-format
-msgid "There are several accounts using email \"%s\""
+#: plugins/config/class_configInLdap.inc:455
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:506
-#, php-format
-msgid "The user using email \"%s\" is locked. Please contact your administrator."
+#: plugins/config/class_configInLdap.inc:462
+msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:548
-msgid "Contact your administrator, there was a problem with mail server"
+#: plugins/config/class_configInLdap.inc:463
+msgid ""
+"For very specific ACL rights setting where you might need to give right on a"
+" single object."
 msgstr ""
 
-#: html/class_passwordRecovery.inc:559
-msgid "This token is invalid"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available department categories"
 msgstr ""
 
-#: html/class_passwordRecovery.inc:613
-msgid "There was a problem with mail server, confirmation email not sent"
+#: plugins/config/class_configInLdap.inc:468
+msgid "Available categories in the departments dropdown"
 msgstr ""
 
-#: html/setup.php:59
-msgid "Smarty"
+#: plugins/config/class_pluginsConfigInLdap.inc:29
+msgid "Plugins"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:33
-msgid "LDAP connection"
+#: plugins/config/class_pluginsConfigInLdap.inc:30
+msgid "Configuration for plugins"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Location name"
-msgstr "位置名称"
+#: plugins/config/class_mainPluginsConfig.inc:28
+msgid "Plugins configuration"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:36
-msgid "Name of this connexion to show in the LDAP server list"
+#: plugins/config/class_mainPluginsConfig.inc:29
+msgid "FusionDirectory plugins configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "Connection URI"
+#: plugins/config/class_mainPluginsConfig.inc:42
+msgid "Object groups"
+msgstr "对象组"
+
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "OGroup RDN"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:41
-msgid "URI to contact the LDAP server. Usually starts with ldap://"
+#: plugins/config/class_mainPluginsConfig.inc:45
+msgid "Branch in which object groups will be stored"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "TLS connection"
+#: plugins/config/class_mainPluginsConfig.inc:52
+msgid "SASL"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:46
-msgid "Should TLS be used to connect to this LDAP server?"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid "Force to ask for password"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:50
-msgid "The LDAP directory base"
+#: plugins/config/class_mainPluginsConfig.inc:55
+msgid ""
+"Useful if you add a hook using password value when SASL user passwords are "
+"edited"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:56
-msgid "Authentication"
+#: plugins/config/class_dashBoardConfig.inc:28
+msgid "Dashboard configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:59
-msgid ""
-"DN of the admin account to use for binding to the LDAP. Base is "
-"automatically appended."
+#: plugins/config/class_dashBoardConfig.inc:29
+msgid "FusionDirectory dashboard plugin configuration"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:74
-msgid "Admin DN"
-msgstr "管理员 DN"
+#: plugins/config/class_dashBoardConfig.inc:42
+msgid "Dashboard name schema"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Admin password"
-msgstr "管理员口令"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:77
-msgid "Password for the admin account to use for binding to the LDAP"
+#: plugins/config/class_dashBoardConfig.inc:45
+msgid "Number of digits to use after prefix"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Current status"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:86
-msgid "Result of last attempt at checking LDAP binding and basic schemas"
+#: plugins/config/class_dashBoardConfig.inc:51
+msgid "Prefixes to be used for computer ids"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-msgid "LDAP setup"
+#: plugins/config/class_dashBoardConfig.inc:59
+msgid "Dashboard expired users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:108
-msgid "LDAP connection setup"
+#: plugins/config/class_dashBoardConfig.inc:62
+msgid "Number of days"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:109
+#: plugins/config/class_dashBoardConfig.inc:62
 msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"FusionDirectory."
+"Number of days before expiration needed for an account to show in the "
+"dashboard next expired accounts list"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:166
+#: plugins/admin/departments/class_department.inc:34
+#: plugins/admin/departments/class_department.inc:35
+#: plugins/admin/departments/class_departmentManagement.inc:34
+msgid "Departments"
+msgstr "部门"
+
+#: plugins/admin/departments/class_department.inc:57
+msgid "department"
+msgstr "部门"
+
+#: plugins/admin/departments/class_department.inc:63
+#: plugins/admin/users/user-list.xml:57
+#: plugins/admin/groups/class_ogroup.inc:190
+#: plugins/admin/groups/group-list.xml:49
+#: plugins/admin/groups/class_group.inc:56
+#: plugins/admin/acl/class_aclAssignment.inc:38
+#: plugins/admin/aclrole/class_aclRole.inc:95
+msgid "Properties"
+msgstr "属性"
+
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Anonymous bind to server '%s' failed!"
+msgid "Name of %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:168
+#: plugins/admin/departments/class_department.inc:67
 #, php-format
-msgid "Bind as user '%s' failed!"
+msgid "A name for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:170
-msgid "Retry"
-msgstr "重试"
+#: plugins/admin/departments/class_department.inc:72
+#, php-format
+msgid "Short description of this %s"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:174
+#: plugins/admin/departments/class_department.inc:76
+msgid "Category"
+msgstr "分类"
+
+#: plugins/admin/departments/class_department.inc:76
 #, php-format
-msgid "Anonymous bind to server '%s' succeeded."
+msgid "Category of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:175 setup/class_setupStep_Ldap.inc:179
-msgid "Refresh"
-msgstr "刷新"
+#: plugins/admin/departments/class_department.inc:80
+msgid "Website"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:176
-msgid "Please specify user and password!"
+#: plugins/admin/departments/class_department.inc:80
+#, php-format
+msgid "Website of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:178
+#: plugins/admin/departments/class_department.inc:84
 #, php-format
-msgid "Bind as user '%s' to server '%s' succeeded!"
+msgid "Manager of this %s"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:196 setup/class_setupStep_Ldap.inc:198
+#: plugins/admin/departments/class_department.inc:99
+#: plugins/admin/departments/class_country.inc:29
+#: plugins/admin/departments/class_country.inc:30
+#: plugins/admin/departments/class_country.inc:33
+msgid "Country"
+msgstr "国家"
+
+#: plugins/admin/departments/class_department.inc:102
 #, php-format
-msgid ""
-"%s\n"
-"Schema \"%s\": %s"
+msgid "A postal address for this %s"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:30 setup/class_setupStep_Welcome.inc:30
-#: setup/class_setupStep_Welcome.inc:50
-msgid "Welcome"
+#: plugins/admin/departments/class_department.inc:106
+msgid "Telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:40
-#: ihtml/themes/breezy/copyPasteDialog.tpl.c:26
-msgid "Finish"
-msgstr "完成"
-
-#: setup/class_setupStep_Finish.inc:41
-msgid "Finish - write the configuration file"
+#: plugins/admin/departments/class_department.inc:110
+msgid "Facsimile telephone number"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:42
-msgid "Write configuration file"
+#: plugins/admin/departments/class_organization.inc:51
+msgid "organization"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:89
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/departments/class_domain.inc:30
+#: plugins/admin/departments/class_domain.inc:31
+#: plugins/admin/departments/class_domain.inc:34
+msgid "Domain"
+msgstr "域"
+
+#: plugins/admin/departments/class_domain.inc:51
+msgid "domain"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:91
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/departments/class_departmentManagement.inc:35
+msgid "Manage departments"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:96
-#, php-format
+#: plugins/admin/departments/class_departmentManagement.inc:36
 msgid ""
-"After downloading and placing the file under %s, please make sure that the "
-"user the webserver is running with is able to read %s, while other users "
-"shouldn't."
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:157 setup/setup_migrate_baseOC.tpl.c:11
-msgid "Migrate"
+#: plugins/admin/departments/class_departmentManagement.inc:38
+msgid "Users and groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:206 setup/class_setupStep_Checks.inc:30
-msgid "PHP module and extension checks"
+#: plugins/admin/departments/class_dcObject.inc:30
+#: plugins/admin/departments/class_dcObject.inc:31
+#: plugins/admin/departments/class_dcObject.inc:34
+msgid "Domain Component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:223 setup/class_setupStep_Migrate.inc:224
-msgid "LDAP inspection"
+#: plugins/admin/departments/class_dcObject.inc:51
+msgid "domain component"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:225
-msgid "Analyze your current LDAP for FusionDirectory compatibility"
+#: plugins/admin/departments/class_locality.inc:30
+#: plugins/admin/departments/class_locality.inc:31
+#: plugins/admin/departments/class_locality.inc:34
+msgid "Locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:233
-msgid "Give all rights on users in the given branch"
+#: plugins/admin/departments/class_locality.inc:51
+msgid "locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:239
-msgid ""
-"Allow users to edit their own information (main tab and posix use only on "
-"base)"
-msgstr ""
+#: plugins/admin/departments/dep-list.xml:9
+msgid "List of departments"
+msgstr "部门列表"
 
-#: setup/class_setupStep_Migrate.inc:245
-msgid "Allow users to edit their own password (use only on base)"
+#: plugins/admin/departments/class_country.inc:50
+msgid "country"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:258
-msgid "Inspecting object classes in root object"
+#: plugins/admin/users/class_userManagement.inc:43
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:259
-msgid "Checking permission for LDAP database"
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:260
-msgid "Checking for invisible users"
+#: plugins/admin/users/class_userManagement.inc:191
+msgid "Account locking"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:261
-msgid "Checking for super administrator"
+#: plugins/admin/users/class_userManagement.inc:192
+#, php-format
+msgid ""
+"Password method \"%s\" does not support locking. Account \"%s\" has not been"
+" locked!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-msgid "Checking for default ACL roles and groups"
+#: plugins/admin/users/class_userManagement.inc:220
+msgid "Unlock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:263
-msgid "Checking for users outside the people tree"
+#: plugins/admin/users/class_userManagement.inc:222
+msgid "Lock account"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:264
-msgid "Checking for groups outside the groups tree"
-msgstr ""
+#: plugins/admin/users/user-list.xml:11
+msgid "List of users"
+msgstr "用户列表"
 
-#: setup/class_setupStep_Migrate.inc:265
-msgid "Checking for invisible departments"
-msgstr ""
+#: plugins/admin/users/user-list.xml:33
+msgid "Surname"
+msgstr "å§“"
 
-#: setup/class_setupStep_Migrate.inc:266
-msgid "Checking for duplicated UID numbers"
+#: plugins/admin/users/user-list.xml:41
+msgid "Given name"
+msgstr "名"
+
+#: plugins/admin/users/user-list.xml:127
+msgid "Lock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:267
-msgid "Checking for duplicated GID numbers"
+#: plugins/admin/users/user-list.xml:135
+msgid "Unlock users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:329 setup/class_setupStep_Migrate.inc:487
-#: setup/class_setupStep_Migrate.inc:564 setup/class_setupStep_Migrate.inc:702
-#: setup/class_setupStep_Migrate.inc:980
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1179
-#: setup/class_setupStep_Migrate.inc:1272
-#: setup/class_setupStep_Migrate.inc:1351
-#: setup/class_setupStep_Migrate.inc:1395
-msgid "LDAP query failed"
+#: plugins/admin/users/user-list.xml:146
+msgid "Apply template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:488
-#: setup/class_setupStep_Migrate.inc:565 setup/class_setupStep_Migrate.inc:703
-#: setup/class_setupStep_Migrate.inc:981
-#: setup/class_setupStep_Migrate.inc:1057
-#: setup/class_setupStep_Migrate.inc:1180
-#: setup/class_setupStep_Migrate.inc:1273
-#: setup/class_setupStep_Migrate.inc:1352
-#: setup/class_setupStep_Migrate.inc:1396
-msgid "Possibly the \"root object\" is missing."
+#: plugins/admin/users/user-list.xml:177
+msgid "New user from template"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:346 setup/class_setupStep_Migrate.inc:368
-#: setup/class_setupStep_Migrate.inc:419 setup/class_setupStep_Migrate.inc:499
-#: setup/class_setupStep_Migrate.inc:510 setup/class_setupStep_Migrate.inc:864
-#: setup/class_setupStep_Migrate.inc:879
-msgid "Failed"
-msgstr "失败"
+#: plugins/admin/users/user-list.xml:189
+msgid "Edit user"
+msgstr "编辑用户"
 
-#: setup/class_setupStep_Migrate.inc:347
-#, php-format
-msgid "Missing FusionDirectory object class '%s'!"
+#: plugins/admin/users/user-list.xml:198
+msgid "%{filter:lockLabel(userPassword)}"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:348
-msgid "Please check your installation."
+#: plugins/admin/users/user-list.xml:212
+msgid "Remove user"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:369
-#, php-format
-msgid ""
-"Cannot handle the structural object type of your root object. Please try to "
-"add the object class '%s' manually."
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:55
+#: plugins/admin/groups/class_roleGeneric.inc:59
+#: plugins/admin/groups/class_groupManagement.inc:69
+#: plugins/admin/acl/class_aclAssignment.inc:47
+#: plugins/admin/aclrole/class_aclRole.inc:77
+msgid "Role"
+msgstr "角色"
 
-#: setup/class_setupStep_Migrate.inc:500
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your LDAP database."
+#: plugins/admin/groups/class_roleGeneric.inc:56
+msgid "Role information"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:511
-#, php-format
-msgid "The specified user \"%s\" does not have full access to your ldap database."
+#: plugins/admin/groups/class_roleGeneric.inc:60
+msgid "Organizational role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:574
-#, php-format
-msgid ""
-"Found %s user(s) that will not be visible in FusionDirectory or which are "
-"incomplete."
+#: plugins/admin/groups/class_roleGeneric.inc:82
+msgid "Informations"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:583 setup/class_setupStep_Migrate.inc:588
-msgid "User migration"
+#: plugins/admin/groups/class_roleGeneric.inc:86
+#: plugins/admin/groups/class_ogroup.inc:194
+#: plugins/admin/groups/class_group.inc:60
+msgid "Name of this group"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:671
-#: setup/class_setupStep_Migrate.inc:1027
-msgid "Migration error"
+#: plugins/admin/groups/class_roleGeneric.inc:91
+msgid "Description of the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:673
-#, php-format
-msgid "Cannot migrate entry \"%s\":"
-msgstr ""
+#: plugins/admin/groups/class_roleGeneric.inc:95
+msgid "Phone number"
+msgstr "电话号码"
 
-#: setup/class_setupStep_Migrate.inc:857
-#, php-format
-msgid "FD 1.0.7 administrative accounts found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:99
+msgid "Fax number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:860
-#, php-format
-msgid "FD 1.0.7 administrative groups found: %s"
+#: plugins/admin/groups/class_roleGeneric.inc:105
+msgid "Role members"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:862
-msgid ""
-"You may run <i>fusiondirectory-setup --migrate-acls</i> after saving config "
-"file at the end of the setup to migrate it.<br/>"
+#: plugins/admin/groups/class_roleGeneric.inc:108
+msgid "Add users for the role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:865
-msgid ""
-"There is no valid FusionDirectory 1.0.8 administrator account inside your "
-"LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:32
+msgid "Manage groups and roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:874
-msgid "Groups"
-msgstr "用户组"
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:880
-msgid "There is no FusionDirectory administrator account inside your LDAP."
+#: plugins/admin/groups/class_groupManagement.inc:69
+msgid "Edit role properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:918
-msgid "Gives all rights on all objects"
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Posix"
+msgstr "Posix"
+
+#: plugins/admin/groups/class_groupManagement.inc:85
+msgid "Edit posix properties"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:995
-msgid "Default ACL roles have not been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:128
+msgid "Show user groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:997
-msgid "Some default ACL roles are missing"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:129
+#: include/select/groupSelect/group-filter.tpl.c:5
+msgid "Show primary groups"
+msgstr "显示主要组"
 
-#: setup/class_setupStep_Migrate.inc:999
-msgid "Default ACL roles have been inserted"
+#: plugins/admin/groups/class_groupManagement.inc:130
+msgid "Show organizational roles"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1029
-#, php-format
-msgid "Cannot add ACL role \"%s\":"
+#: plugins/admin/groups/class_groupManagement.inc:131
+msgid "Show application groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1084
-#, php-format
-msgid "Found %s user(s) outside the configured tree \"%s\"."
+#: plugins/admin/groups/class_groupManagement.inc:132
+msgid "Show unidentified groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1098
-#: setup/class_setupStep_Migrate.inc:1112
-msgid "Move users into configured user tree"
+#: plugins/admin/groups/class_groupManagement.inc:135
+#: include/select/groupSelect/group-filter.tpl.c:11
+msgid "Show mail groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1130
-msgid "Cannot move entries to the requested department!"
-msgstr ""
+#: plugins/admin/groups/class_groupManagement.inc:138
+#: include/select/groupSelect/group-filter.tpl.c:8
+msgid "Show samba groups"
+msgstr "显示 samba 用户组"
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "Entry will be moved from"
+#: plugins/admin/groups/class_groupManagement.inc:141
+msgid "Show DSA entries"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1142
-msgid "to"
+#: plugins/admin/groups/class_groupManagement.inc:147
+msgid "Show server groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "The following references will be updated"
+#: plugins/admin/groups/class_groupManagement.inc:148
+msgid "Show workstation groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1203
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:149
+msgid "Show windows groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1217
-#: setup/class_setupStep_Migrate.inc:1231
-msgid "Move groups into configured groups tree"
+#: plugins/admin/groups/class_groupManagement.inc:150
+msgid "Show terminal groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1314
-#, php-format
-msgid "Found %s department(s) that will not be visible in FusionDirectory."
+#: plugins/admin/groups/class_groupManagement.inc:151
+msgid "Show printer groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1323
-#: setup/class_setupStep_Migrate.inc:1328
-msgid "Department migration"
+#: plugins/admin/groups/class_groupManagement.inc:152
+msgid "Show phone groups"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1378
+#: plugins/admin/groups/class_ogroup.inc:63
 #, php-format
-msgid "Found %s duplicate values for attribute \"uidNumber\":%s"
+msgid "Unknown type : %s"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1422
+#: plugins/admin/groups/class_ogroup.inc:67
 #, php-format
-msgid "Found %s duplicate values for attribute \"gidNumber\":%s"
+msgid "Non existing dn: %s"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:59 setup/class_setupStep_Language.inc:60
-msgid "Language setup"
-msgstr ""
+#: plugins/admin/groups/class_ogroup.inc:156
+msgid "Object group"
+msgstr "对象组"
 
-#: setup/class_setupStep_Language.inc:61
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/groups/class_ogroup.inc:157
+msgid "Object group information"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:62
-msgid ""
-"At this point, you can select the site wide default language. Choosing "
-"\"automatic\" will use the language requested by the browser. This setting "
-"can be overriden per user."
+#: plugins/admin/groups/class_ogroup.inc:161
+#: plugins/admin/groups/class_ogroup.inc:162
+#: plugins/admin/groups/class_group.inc:33
+msgid "Group"
+msgstr "组"
+
+#: plugins/admin/groups/class_ogroup.inc:199
+#: plugins/admin/groups/class_group.inc:65
+msgid "Short description of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:51
-msgid "Welcome to FusionDirectory setup wizard"
+#: plugins/admin/groups/class_ogroup.inc:206
+msgid "Member objects"
+msgstr "成员对象"
+
+#: plugins/admin/groups/class_ogroup.inc:209
+msgid "Objects member of this group"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:52
-msgid "The welcome message"
+#: plugins/admin/groups/class_ogroup.inc:227
+#: plugins/admin/groups/class_group.inc:101
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:37
+#: plugins/admin/groups/class_ogroup.inc:321
 msgid ""
-"PHP setup configuration (<a href=\"?info\" target=\"_blank\">show "
-"information)</a>)"
+"Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:48 setup/class_setupStep_Checks.inc:49
-msgid "Installation check"
-msgstr ""
+#: plugins/admin/groups/group-list.xml:11
+msgid "List of groups"
+msgstr "组列表"
 
-#: setup/class_setupStep_Checks.inc:50
-msgid "Basic checks for PHP compatibility and extensions"
+#: plugins/admin/groups/class_group.inc:34
+msgid "POSIX group information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:67
-msgid "Checking PHP version"
+#: plugins/admin/groups/class_group.inc:37
+msgid "POSIX group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:68
-#, php-format
-msgid "PHP must be of version %s or above."
+#: plugins/admin/groups/class_group.inc:38
+msgid "POSIX user group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:69
-msgid "Please upgrade to a supported version."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID"
+msgstr "强制 GID"
 
-#: setup/class_setupStep_Checks.inc:76
-msgid "FusionDirectory requires this module to talk with your LDAP server."
+#: plugins/admin/groups/class_group.inc:69
+msgid "Force GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:84
-msgid ""
-"FusionDirectory requires this module for an internationalized interface."
+#: plugins/admin/groups/class_group.inc:73
+msgid "GID value for this group"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:92
-msgid ""
-"FusionDirectory requires this module to communicate with different types of "
-"servers and protocols."
-msgstr ""
+#: plugins/admin/groups/class_group.inc:80
+#: plugins/admin/groups/class_group.inc:83
+msgid "Group members"
+msgstr "组成员"
 
-#: setup/class_setupStep_Checks.inc:100
-msgid "FusionDirectory requires this module for the samba integration."
+#: plugins/admin/acl/class_aclManagement.inc:31
+#: plugins/admin/acl/class_aclManagement.inc:32
+#: plugins/admin/acl/class_aclManagement.inc:45
+msgid "ACL assignment creation"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:108
-msgid ""
-"FusionDirectory requires either 'mhash' or the 'sha1' module to make use of "
-"SSHA encryption."
+#: plugins/admin/acl/class_aclManagement.inc:33
+msgid "Create an ACL assignment on an arbitrary dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:116
-msgid "FusionDirectory requires this module to talk to an IMAP server."
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "Dn"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:123
-msgid "mbstring"
+#: plugins/admin/acl/class_aclManagement.inc:49
+msgid "DN you wish to add assignments for"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:124
-msgid "FusionDirectory requires this module to handle unicode strings."
+#: plugins/admin/acl/class_aclManagement.inc:110
+msgid "The dn you entered could not be found in the LDAP"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid "imagick"
+#: plugins/admin/acl/class_aclManagement.inc:139
+msgid "ACL assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:131
-msgid "FusionDirectory requires this extension to handle images."
+#: plugins/admin/acl/class_aclManagement.inc:140
+msgid "ACL assignments management"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid "compression module"
+#: plugins/admin/acl/class_aclManagement.inc:141
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid "FusionDirectory requires this extension to handle snapshots."
+#: plugins/admin/acl/class_aclManagement.inc:208
+#: plugins/admin/acl/class_aclAssignment.inc:266
+msgid "ACL Assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:148
-msgid ""
-"register_globals is a PHP mechanism to register all global variables to be "
-"accessible from scripts without changing the scope. This may be a security "
-"risk."
+#: plugins/admin/acl/class_aclAssignment.inc:26
+msgid "ACL Assignment Dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:149
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:27
+msgid "Access control roles assignment dialog"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:156
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr ""
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Mode"
+msgstr "模式"
 
-#: setup/class_setupStep_Checks.inc:157
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: plugins/admin/acl/class_aclAssignment.inc:41
+msgid "Is this applying on complete subtree or only the base?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:158
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Subtree"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:165 setup/class_setupStep_Checks.inc:181
-#: setup/class_setupStep_Checks.inc:197 setup/class_setupStep_Checks.inc:205
-msgid "Off"
+#: plugins/admin/acl/class_aclAssignment.inc:44
+msgid "Base only"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:166
-msgid ""
-"In Order to use FusionDirectory without any trouble, the session.auto_start "
-"option in your php.ini should be set to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:47
+msgid "Role to apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:167
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "For all users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:174
-msgid ""
-"FusionDirectory needs at least 128MB of memory. Setting it below this limit "
-"may cause errors that are not reproducable! Increase it for larger setups."
+#: plugins/admin/acl/class_aclAssignment.inc:52
+msgid "Apply this ACL for all LDAP users"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:175
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '128M' or higher."
+#: plugins/admin/acl/class_aclAssignment.inc:56
+#: ihtml/themes/breezy/acl.tpl.c:32
+msgid "Members"
+msgstr "成员"
+
+#: plugins/admin/acl/class_aclAssignment.inc:56
+msgid "Users or groups to assign this role to."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:182
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: plugins/admin/acl/class_aclAssignment.inc:252
+msgid "ACL assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:183
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: plugins/admin/acl/class_aclAssignment.inc:267
+msgid "Access control roles assignment"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:190
-msgid "The Execution time should be at least 30 seconds."
+#: plugins/admin/acl/class_aclAssignment.inc:286
+msgid "Assignments"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or "
-"higher."
+#: plugins/admin/acl/class_aclAssignment.inc:290
+msgid "ACL role assignments for this base"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:198
-msgid ""
-"Increase the server security by setting expose_php to 'off'. PHP won't send "
-"any information about the server you are running in this case."
+#: plugins/admin/acl/class_aclAssignment.inc:301
+#, php-format
+msgid "Assignments on object or subtree %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:199
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:206
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:207
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to "
-"'Off'."
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:122
-msgid "Setup error"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: setup/class_setup.inc:202
-msgid "Completed"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/breezy/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setup.inc:245
-msgid "Next"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl.c:2
-msgid "The FusionDirectory team"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/generic/references/contents.tpl.c:2
-msgid "<strong>%1</strong> references our <strong>%3</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
+msgstr "读"
 
-#: plugins/generic/references/contents.tpl.c:5
-msgid ""
-"<strong>%1</strong> references our field <strong>%3</strong> from tab "
-"<strong>%2</strong>"
-msgstr ""
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
+msgstr "写"
 
-#: plugins/generic/references/contents.tpl.c:8
-msgid "This object has no relationship to other objects."
-msgstr "这个对象和其他对象没有关系。"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:2
-#: ihtml/themes/breezy/simple-filter.tpl.c:2
-#: include/select/groupSelect/group-filter.tpl.c:2
-msgid "Filter"
-msgstr "过滤器"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:5
-msgid "Show templates"
-msgstr "显示模板"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
+msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:8
-msgid "Show functional users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:11
-msgid "Show POSIX users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:14
-msgid "Show Mail users"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/users/user-filter.tpl.c:17
-msgid "Show Samba users"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:2
-msgid ""
-"Warning: you are about to delete the ACL assignments on the following "
-"objects"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:5
-msgid ""
-"This includes all ACL assignments made on this node(s). If you want the list"
-" of these assignments, please cancel and open the objects."
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl.c:8
-msgid "Press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/aclrole/class_aclRole.inc:78
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:2
-msgid "There is one expired account"
-msgid_plural "There are %1 expired accounts"
-msgstr[0] ""
+#: plugins/admin/aclrole/class_aclRole.inc:81
+msgid "ACL role"
+msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:5
-msgid "There is no expired account"
+#: plugins/admin/aclrole/class_aclRole.inc:99
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:11
-#: plugins/addons/dashboard/users_accounts.tpl.c:44
-msgid "Manager concerned"
+#: plugins/admin/aclrole/class_aclRole.inc:103
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:14
-#: plugins/addons/dashboard/users_accounts.tpl.c:47
-msgid "uid"
+#: plugins/admin/aclrole/class_aclRole.inc:109
+msgid "ACLs"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:17
-#: plugins/addons/dashboard/users_accounts.tpl.c:50
-msgid "cn"
+#: plugins/admin/aclrole/class_aclRole.inc:113
+msgid "ACLs which are part of this group"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:20
-#: plugins/addons/dashboard/users_accounts.tpl.c:32
-#: plugins/addons/dashboard/users_accounts.tpl.c:53
-#: plugins/addons/dashboard/users_accounts.tpl.c:65
-msgid "telephoneNumber"
+#: setup/setup_checks.tpl.c:11
+msgid "FusionDirectory will NOT run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:23
-#: plugins/addons/dashboard/users_accounts.tpl.c:56
-msgid "shadowExpire"
+#: setup/setup_checks.tpl.c:14
+msgid "FusionDirectory will run without fixing this."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:26
-#: plugins/addons/dashboard/users_accounts.tpl.c:59
-msgid "manager"
+#: setup/setup_migrate_adminAccount.tpl.c:2
+msgid "Create a new FusionDirectory administrator account"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:29
-#: plugins/addons/dashboard/users_accounts.tpl.c:62
-msgid "mail"
+#: setup/setup_migrate_adminAccount.tpl.c:5
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:35
-msgid "There is one account expiring in the next %1 days"
-msgid_plural "There are %2 accounts expiring in the next %1 days"
-msgstr[0] ""
+#: setup/setup_migrate_adminAccount.tpl.c:11
+msgid "User ID"
+msgstr "用户 ID"
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:38
-msgid "There is no account expiring in the next %1 days"
+#: setup/setup_migrate_adminAccount.tpl.c:17
+msgid "Password (again)"
 msgstr ""
 
-#: plugins/addons/dashboard/users_accounts.tpl.c:41
-msgid "Next expired accounts"
+#: setup/setup_welcome.tpl.c:2
+msgid ""
+"This seems to be the first time you start FusionDirectory - we didn't find "
+"any configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:2
-msgid "There is 1 group:"
-msgid_plural "There are %1 groups:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:5
+msgid "What will the wizard do for you?"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:5
-msgid "One of them is a %1 group"
-msgid_plural "%2 are %1 groups"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:8
+msgid "Create a basic, single site configuration"
+msgstr ""
 
-#: plugins/addons/dashboard/groups_stats.tpl.c:8
-msgid "There is no %1 group"
+#: setup/setup_welcome.tpl.c:11
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:2
-msgid "There is 1 user:"
-msgid_plural "There are %1 users:"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:14
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:5
-msgid "One of them have a %1 account"
-msgid_plural "%2 of them have a %1 account"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:17
+msgid "Guided migration of existing LDAP trees"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:8
-msgid "None of them have a %1 account"
+#: setup/setup_welcome.tpl.c:20
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:11
-msgid "One of them is locked"
-msgid_plural "%1 of them are locked"
-msgstr[0] ""
+#: setup/setup_welcome.tpl.c:23
+msgid "Find every possible configuration error"
+msgstr ""
 
-#: plugins/addons/dashboard/users_stats.tpl.c:14
-msgid "None of them is locked"
+#: setup/setup_welcome.tpl.c:26
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: plugins/personal/generic/changed.tpl.c:2
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "您已经成功更改口令。还要记住更改相关程序设定。"
+#: setup/setup_welcome.tpl.c:29
+msgid "To continue:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:2
-msgid "User settings"
-msgstr "用户设置"
+#: setup/setup_welcome.tpl.c:32
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '%1', containing the current session ID on the servers "
+"local filesystem. This can be done by executing the following command:"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:17
-msgid "Clear password"
-msgstr "清除口令"
+#: setup/setup_welcome.tpl.c:35
+msgid "Click the 'Next' button when you've finished."
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:20
-msgid "Set new password"
-msgstr "设置新密码"
+#: setup/setup_migrate_baseOC.tpl.c:2
+msgid "Add required object classes to the LDAP base"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:23
-msgid "Personal picture"
-msgstr "个人图片"
+#: setup/setup_migrate_baseOC.tpl.c:5
+#: setup/setup_migrate_gosaAccounts.tpl.c:17
+msgid "Current"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:26
-msgid "User picture"
-msgstr "用户图片"
+#: setup/setup_migrate_baseOC.tpl.c:8
+#: setup/setup_migrate_gosaAccounts.tpl.c:20
+msgid "After migration"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl.c:29
-msgid "Remove picture"
-msgstr "删除图片"
+#: setup/setup_migrate_baseOC.tpl.c:14
+msgid "Close"
+msgstr "关闭"
 
-#: plugins/personal/generic/nochange.tpl.c:2
-msgid "You have no permission to change your password at this time"
+#: setup/setup_migrate_gosaAccounts.tpl.c:2
+msgid ""
+"This dialog allows moving a couple of entries to the configured tree. Doing "
+"this may straighten your LDAP service."
 msgstr ""
 
-#: plugins/personal/generic/nochange.tpl.c:5
-msgid "Your password hash method will not be changed!"
+#: setup/setup_migrate_gosaAccounts.tpl.c:5
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"entries. The FusionDirectory setup can't migrate references, so you may want"
+" to cancel the migration in this case."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:2
-msgid "Locking conflict detected"
-msgstr "检测到锁定冲突"
+#: setup/setup_migrate_gosaAccounts.tpl.c:8
+msgid "Move selected entries into this tree"
+msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:8
-msgid "\"%1\" has been locked by \"%2\" since %3"
+#: setup/setup_migrate_gosaAccounts.tpl.c:11
+msgid ""
+"The listed entries are currently invisible in the FusionDirectory interface."
+" If you want to change this for a couple of entries only, just select them "
+"and use the 'Migrate' button below."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:11
+#: setup/setup_migrate_gosaAccounts.tpl.c:14
 msgid ""
-"If this lock detection is false, the other person may have closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the \"%1\" button."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
 
-#: ihtml/themes/breezy/islocked.tpl.c:14
-msgid "Read only"
+#: setup/setup_migrate_gosaAccounts.tpl.c:26
+msgid "Show changes"
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:2
-msgid "Creating a new object using templates"
+#: setup/setup_migrate.tpl.c:2
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls"
+" that may occur when migration to FusionDirectory base LDAP administration. "
+"You may want to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: ihtml/themes/breezy/template.tpl.c:8
-#: ihtml/themes/breezy/restore-confirm.tpl.c:14
-msgid "Continue"
-msgstr "ç»§ç»­"
+#: setup/setup_migrate.tpl.c:5
+msgid "Check again"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:2
-msgid ""
-"The size limit option makes LDAP operations faster and saves the LDAP server"
-" from getting too much load. The easiest way to handle big databases without"
-" long timeouts would be to limit your search to smaller values and use "
-"filters to get the entries you are looking for."
-msgstr "大小限制选项会让 LDAP 操作更快,以免使 LDAP 服务器过载。最简单让大数据库处理不发成长时间超时的办法是,将查询缩小到更少并且使用过滤器。"
+#: setup/setup_finish.tpl.c:2
+msgid "Create your configuration file"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:5
-msgid "Please choose the way to react for this session"
-msgstr "请选择响应这个会话的方法"
+#: setup/setup_finish.tpl.c:5
+msgid "Run %1 to put the correct right on fusiondirectory.conf"
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:8
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "忽略错误并显示 LDAP 服务器返回的所有条目"
+#: setup/setup_finish.tpl.c:8
+msgid "Download configuration"
+msgstr "下载配置"
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:11
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "忽略错误并显示在定义限制长度内的所有条目,并让我使用过滤器。"
+#: setup/setup_finish.tpl.c:11
+msgid "Status: "
+msgstr ""
 
-#: ihtml/themes/breezy/sizelimit.tpl.c:14
-msgid "Set"
-msgstr "设置"
+#: include/select/groupSelect/group-filter.tpl.c:2
+#: ihtml/themes/breezy/simple-filter.tpl.c:2
+#: plugins/admin/users/user-filter.tpl.c:2
+msgid "Filter"
+msgstr "过滤器"
 
 #: ihtml/themes/breezy/recovery.tpl.c:8
 msgid "Lost password"
@@ -4926,17 +4842,6 @@ msgid ""
 "contact your administrator"
 msgstr ""
 
-#: ihtml/themes/breezy/remove.tpl.c:5
-msgid ""
-"This may be used by several groups. Please double check if you really want "
-"to do this since there is no way for FusionDirectory to get your data back."
-msgstr ""
-
-#: ihtml/themes/breezy/remove.tpl.c:8
-#: ihtml/themes/breezy/simple-remove.tpl.c:8
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "所以,如果您确定,请按“删除”继续,否则按“取消”退出。"
-
 #: ihtml/themes/breezy/login.tpl.c:2
 msgid "Login screen"
 msgstr ""
@@ -4964,72 +4869,106 @@ msgstr "登录"
 msgid "Click here to log in"
 msgstr "点击这里登录"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:2
-msgid "Warning: you are about to restore the following snapshot"
-msgstr ""
+#: ihtml/themes/breezy/sizelimit.tpl.c:2
+msgid ""
+"The size limit option makes LDAP operations faster and saves the LDAP server"
+" from getting too much load. The easiest way to handle big databases without"
+" long timeouts would be to limit your search to smaller values and use "
+"filters to get the entries you are looking for."
+msgstr "大小限制选项会让 LDAP 操作更快,以免使 LDAP 服务器过载。最简单让大数据库处理不发成长时间超时的办法是,将查询缩小到更少并且使用过滤器。"
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:5
-msgid "Any modification made to the object since this snapshot will be lost."
+#: ihtml/themes/breezy/sizelimit.tpl.c:5
+msgid "Please choose the way to react for this session"
+msgstr "请选择响应这个会话的方法"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:8
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "忽略错误并显示 LDAP 服务器返回的所有条目"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:11
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "忽略错误并显示在定义限制长度内的所有条目,并让我使用过滤器。"
+
+#: ihtml/themes/breezy/sizelimit.tpl.c:14
+msgid "Set"
+msgstr "设置"
+
+#: ihtml/themes/breezy/simple-remove.tpl.c:2
+msgid "Warning: you are about to delete the following objects"
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 #: ihtml/themes/breezy/simple-remove.tpl.c:5
+#: ihtml/themes/breezy/restore-confirm.tpl.c:8
 msgid ""
 "Please double check if you really want to do this since there is no way for "
 "FusionDirectory to get your data back."
 msgstr ""
 
-#: ihtml/themes/breezy/restore-confirm.tpl.c:11
-msgid ""
-"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
-msgstr ""
+#: ihtml/themes/breezy/simple-remove.tpl.c:8
+#: ihtml/themes/breezy/remove.tpl.c:8
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "所以,如果您确定,请按“删除”继续,否则按“取消”退出。"
 
-#: ihtml/themes/breezy/acl.tpl.c:2
-msgid "Assigned ACL for current entry"
-msgstr ""
+#: ihtml/themes/breezy/framework.tpl.c:2
+msgid "Main"
+msgstr "首页"
 
-#: ihtml/themes/breezy/acl.tpl.c:5
-msgid "New ACL"
-msgstr ""
+#: ihtml/themes/breezy/framework.tpl.c:5
+msgid "Sign out"
+msgstr "退出"
 
-#: ihtml/themes/breezy/acl.tpl.c:8
-msgid "ACL type"
-msgstr ""
+#: ihtml/themes/breezy/framework.tpl.c:8
+msgid "Signed in:"
+msgstr "登录:"
 
-#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
-msgid "Select an acl type"
+#: ihtml/themes/breezy/framework.tpl.c:11
+#, c-format
+msgid "Session expires in %d!"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:17
-msgid "Additional filter options"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:2
+msgid "Warning: you are about to restore the following snapshot"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:20
-msgid "Use members from"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:5
+msgid "Any modification made to the object since this snapshot will be lost."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:23
-msgid "Available members"
+#: ihtml/themes/breezy/restore-confirm.tpl.c:11
+msgid ""
+"So - if you're sure - press 'Continue' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
-msgid "List message possible targets"
-msgstr ""
+#: ihtml/themes/breezy/restore-confirm.tpl.c:14
+#: ihtml/themes/breezy/template.tpl.c:8
+msgid "Continue"
+msgstr "ç»§ç»­"
 
-#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
-msgid "List message recipients"
+#: ihtml/themes/breezy/islocked.tpl.c:2
+msgid "Locking conflict detected"
+msgstr "检测到锁定冲突"
+
+#: ihtml/themes/breezy/islocked.tpl.c:8
+msgid "\"%1\" has been locked by \"%2\" since %3"
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:44
-msgid "ACL for this object"
+#: ihtml/themes/breezy/islocked.tpl.c:11
+msgid ""
+"If this lock detection is false, the other person may have closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the \"%1\" button."
 msgstr ""
 
-#: ihtml/themes/breezy/acl.tpl.c:47
-msgid "Available roles"
+#: ihtml/themes/breezy/islocked.tpl.c:14
+msgid "Read only"
 msgstr ""
 
-#: ihtml/themes/breezy/simple-remove.tpl.c:2
-msgid "Warning: you are about to delete the following objects"
+#: ihtml/themes/breezy/remove.tpl.c:5
+msgid ""
+"This may be used by several groups. Please double check if you really want "
+"to do this since there is no way for FusionDirectory to get your data back."
 msgstr ""
 
 #: ihtml/themes/breezy/copyPasteDialog.tpl.c:2
@@ -5057,182 +4996,242 @@ msgstr ""
 msgid "Operation complete"
 msgstr "操作完成"
 
+#: ihtml/themes/breezy/template.tpl.c:2
+msgid "Creating a new object using templates"
+msgstr ""
+
 #: ihtml/themes/breezy/msg_dialog.tpl.c:8
 msgid "Information"
 msgstr "提示信息"
 
-#: ihtml/themes/breezy/framework.tpl.c:2
-msgid "Main"
-msgstr "首页"
+#: ihtml/themes/breezy/acl.tpl.c:2
+msgid "Assigned ACL for current entry"
+msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:5
-msgid "Sign out"
-msgstr "退出"
+#: ihtml/themes/breezy/acl.tpl.c:5
+msgid "New ACL"
+msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:8
-msgid "Signed in:"
-msgstr "登录:"
+#: ihtml/themes/breezy/acl.tpl.c:8
+msgid "ACL type"
+msgstr ""
 
-#: ihtml/themes/breezy/framework.tpl.c:11
-#, c-format
-msgid "Session expires in %d!"
+#: ihtml/themes/breezy/acl.tpl.c:11 ihtml/themes/breezy/acl.tpl.c:14
+msgid "Select an acl type"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:2
-msgid "Add required object classes to the LDAP base"
+#: ihtml/themes/breezy/acl.tpl.c:17
+msgid "Additional filter options"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:5
-#: setup/setup_migrate_gosaAccounts.tpl.c:17
-msgid "Current"
+#: ihtml/themes/breezy/acl.tpl.c:20
+msgid "Use members from"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:8
-#: setup/setup_migrate_gosaAccounts.tpl.c:20
-msgid "After migration"
+#: ihtml/themes/breezy/acl.tpl.c:23
+msgid "Available members"
 msgstr ""
 
-#: setup/setup_migrate_baseOC.tpl.c:14
-msgid "Close"
-msgstr "关闭"
+#: ihtml/themes/breezy/acl.tpl.c:26 ihtml/themes/breezy/acl.tpl.c:29
+msgid "List message possible targets"
+msgstr ""
 
-#: setup/setup_finish.tpl.c:2
-msgid "Create your configuration file"
+#: ihtml/themes/breezy/acl.tpl.c:35 ihtml/themes/breezy/acl.tpl.c:38
+msgid "List message recipients"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:5
-msgid "Run %1 to put the correct right on fusiondirectory.conf"
+#: ihtml/themes/breezy/acl.tpl.c:44
+msgid "ACL for this object"
 msgstr ""
 
-#: setup/setup_finish.tpl.c:8
-msgid "Download configuration"
-msgstr "下载配置"
+#: ihtml/themes/breezy/acl.tpl.c:47
+msgid "Available roles"
+msgstr ""
 
-#: setup/setup_finish.tpl.c:11
-msgid "Status: "
+#: plugins/generic/welcome/welcome.tpl.c:2
+msgid "The FusionDirectory team"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:2
-msgid "Create a new FusionDirectory administrator account"
+#: plugins/generic/references/contents.tpl.c:2
+msgid "<strong>%1</strong> references our <strong>%3</strong>"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:5
+#: plugins/generic/references/contents.tpl.c:5
 msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+"<strong>%1</strong> references our field <strong>%3</strong> from tab "
+"<strong>%2</strong>"
 msgstr ""
 
-#: setup/setup_migrate_adminAccount.tpl.c:11
-msgid "User ID"
-msgstr "用户 ID"
+#: plugins/generic/references/contents.tpl.c:8
+msgid "This object has no relationship to other objects."
+msgstr "这个对象和其他对象没有关系。"
 
-#: setup/setup_migrate_adminAccount.tpl.c:17
-msgid "Password (again)"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl.c:2
+msgid "User settings"
+msgstr "用户设置"
 
-#: setup/setup_welcome.tpl.c:2
-msgid ""
-"This seems to be the first time you start FusionDirectory - we didn't find "
-"any configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/personal/generic/paste_generic.tpl.c:17
+msgid "Clear password"
+msgstr "清除口令"
+
+#: plugins/personal/generic/paste_generic.tpl.c:20
+msgid "Set new password"
+msgstr "设置新密码"
+
+#: plugins/personal/generic/paste_generic.tpl.c:23
+msgid "Personal picture"
+msgstr "个人图片"
+
+#: plugins/personal/generic/paste_generic.tpl.c:26
+msgid "User picture"
+msgstr "用户图片"
+
+#: plugins/personal/generic/paste_generic.tpl.c:29
+msgid "Remove picture"
+msgstr "删除图片"
+
+#: plugins/personal/generic/nochange.tpl.c:2
+msgid "You have no permission to change your password at this time"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:5
-msgid "What will the wizard do for you?"
+#: plugins/personal/generic/nochange.tpl.c:5
+msgid "Your password hash method will not be changed!"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:8
-msgid "Create a basic, single site configuration"
+#: plugins/personal/generic/changed.tpl.c:2
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "您已经成功更改口令。还要记住更改相关程序设定。"
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:2
+msgid "There is 1 group:"
+msgid_plural "There are %1 groups:"
+msgstr[0] ""
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:5
+msgid "One of them is a %1 group"
+msgid_plural "%2 are %1 groups"
+msgstr[0] ""
+
+#: plugins/addons/dashboard/groups_stats.tpl.c:8
+msgid "There is no %1 group"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:11
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/addons/dashboard/users_stats.tpl.c:2
+msgid "There is 1 user:"
+msgid_plural "There are %1 users:"
+msgstr[0] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:5
+msgid "One of them have a %1 account"
+msgid_plural "%2 of them have a %1 account"
+msgstr[0] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:8
+msgid "None of them have a %1 account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:14
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/dashboard/users_stats.tpl.c:11
+msgid "One of them is locked"
+msgid_plural "%1 of them are locked"
+msgstr[0] ""
+
+#: plugins/addons/dashboard/users_stats.tpl.c:14
+msgid "None of them is locked"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:17
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/dashboard/users_accounts.tpl.c:2
+msgid "There is one expired account"
+msgid_plural "There are %1 expired accounts"
+msgstr[0] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:5
+msgid "There is no expired account"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:20
-msgid "What will the wizard NOT do for you?"
+#: plugins/addons/dashboard/users_accounts.tpl.c:11
+#: plugins/addons/dashboard/users_accounts.tpl.c:44
+msgid "Manager concerned"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:23
-msgid "Find every possible configuration error"
+#: plugins/addons/dashboard/users_accounts.tpl.c:14
+#: plugins/addons/dashboard/users_accounts.tpl.c:47
+msgid "uid"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:26
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/addons/dashboard/users_accounts.tpl.c:17
+#: plugins/addons/dashboard/users_accounts.tpl.c:50
+msgid "cn"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:29
-msgid "To continue:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:20
+#: plugins/addons/dashboard/users_accounts.tpl.c:32
+#: plugins/addons/dashboard/users_accounts.tpl.c:53
+#: plugins/addons/dashboard/users_accounts.tpl.c:65
+msgid "telephoneNumber"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:32
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '%1', containing the current session ID on the servers "
-"local filesystem. This can be done by executing the following command:"
+#: plugins/addons/dashboard/users_accounts.tpl.c:23
+#: plugins/addons/dashboard/users_accounts.tpl.c:56
+msgid "shadowExpire"
 msgstr ""
 
-#: setup/setup_welcome.tpl.c:35
-msgid "Click the 'Next' button when you've finished."
+#: plugins/addons/dashboard/users_accounts.tpl.c:26
+#: plugins/addons/dashboard/users_accounts.tpl.c:59
+msgid "manager"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:11
-msgid "FusionDirectory will NOT run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:29
+#: plugins/addons/dashboard/users_accounts.tpl.c:62
+msgid "mail"
 msgstr ""
 
-#: setup/setup_checks.tpl.c:14
-msgid "FusionDirectory will run without fixing this."
+#: plugins/addons/dashboard/users_accounts.tpl.c:35
+msgid "There is one account expiring in the next %1 days"
+msgid_plural "There are %2 accounts expiring in the next %1 days"
+msgstr[0] ""
+
+#: plugins/addons/dashboard/users_accounts.tpl.c:38
+msgid "There is no account expiring in the next %1 days"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:2
-msgid ""
-"This dialog allows moving a couple of entries to the configured tree. Doing "
-"this may straighten your LDAP service."
+#: plugins/addons/dashboard/users_accounts.tpl.c:41
+msgid "Next expired accounts"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:5
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"entries. The FusionDirectory setup can't migrate references, so you may want"
-" to cancel the migration in this case."
+#: plugins/admin/users/user-filter.tpl.c:5
+msgid "Show templates"
+msgstr "显示模板"
+
+#: plugins/admin/users/user-filter.tpl.c:8
+msgid "Show functional users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:8
-msgid "Move selected entries into this tree"
+#: plugins/admin/users/user-filter.tpl.c:11
+msgid "Show POSIX users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:11
-msgid ""
-"The listed entries are currently invisible in the FusionDirectory interface."
-" If you want to change this for a couple of entries only, just select them "
-"and use the 'Migrate' button below."
+#: plugins/admin/users/user-filter.tpl.c:14
+msgid "Show Mail users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:14
-msgid ""
-"If you want to know what will be done when migrating the selected entries, "
-"use the 'Show changes' button to see the LDIF."
+#: plugins/admin/users/user-filter.tpl.c:17
+msgid "Show Samba users"
 msgstr ""
 
-#: setup/setup_migrate_gosaAccounts.tpl.c:26
-msgid "Show changes"
+#: plugins/admin/acl/remove.tpl.c:2
+msgid ""
+"Warning: you are about to delete the ACL assignments on the following "
+"objects"
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:2
+#: plugins/admin/acl/remove.tpl.c:5
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls"
-" that may occur when migration to FusionDirectory base LDAP administration. "
-"You may want to fix the problems below, in order to provide smooth services."
+"This includes all ACL assignments made on this node(s). If you want the list"
+" of these assignments, please cancel and open the objects."
 msgstr ""
 
-#: setup/setup_migrate.tpl.c:5
-msgid "Check again"
+#: plugins/admin/acl/remove.tpl.c:8
+msgid "Press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
diff --git a/plugins/addons/dashboard/class_dashBoardUsers.inc b/plugins/addons/dashboard/class_dashBoardUsers.inc
index 8efebea97c3f5d29c803555ad033af4f787791b2..4f4b6241f62f1045085002c56c5908a48abe48d5 100644
--- a/plugins/addons/dashboard/class_dashBoardUsers.inc
+++ b/plugins/addons/dashboard/class_dashBoardUsers.inc
@@ -128,7 +128,7 @@ class dashboardUsers extends simplePlugin
      */
 
     /* getting the date in TIMESTAMP UNIX format */
-    $today        = floor(time() / 86400); // 24 * 60 * 60
+    $today        = floor(time() / 86400);
 
     /* Fetch global value from fusiondirectory.conf */
     $next_expired_days = $config->get_cfg_value('dashboardExpiredAccountsDays', 15);
@@ -175,7 +175,7 @@ class dashboardUsers extends simplePlugin
       $manager_phone  = '';
     }
 
-    $human_shadowExpire = date('d.m.Y', $attrs['shadowExpire'][0] * 86400); // 24 * 60 * 60
+    $human_shadowExpire = date('d.m.Y', $attrs['shadowExpire'][0] * 86400);
 
     return array(
       'uid'             => $attrs['uid'][0],
diff --git a/plugins/addons/dashboard/groups_stats.tpl b/plugins/addons/dashboard/groups_stats.tpl
index 2869668ac6ddbdf1124e434c118c5a8ef7cadd53..10459eadf0f2abb8f32257c3ce3baf443b04f862 100644
--- a/plugins/addons/dashboard/groups_stats.tpl
+++ b/plugins/addons/dashboard/groups_stats.tpl
@@ -1,4 +1,4 @@
-<div id="{$sectionId}"  class="plugin_section">
+<div id="{$sectionId}"  class="plugin-section">
   <span class="legend">
     {$section}
   </span>
diff --git a/plugins/addons/dashboard/main.inc b/plugins/addons/dashboard/main.inc
index 67bc57735033d753a1a04c718639b7d2ee61c4c7..62f1fffb12f7c3b9f0c341ffc926dff2ce9d3353 100644
--- a/plugins/addons/dashboard/main.inc
+++ b/plugins/addons/dashboard/main.inc
@@ -2,17 +2,17 @@
 /*
   This code is part of FusionDirectory (http://www.fusiondirectory.org)
   Copyright (C) 2013-2016  FusionDirectory
- 
+
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
- 
+
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
- 
+
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
diff --git a/plugins/addons/dashboard/main_stats.tpl b/plugins/addons/dashboard/main_stats.tpl
index 9b34b12c1755d62db406aa57f2c843b5bca60aa3..336f09534baa692c7e95a51522bd83b63823654f 100644
--- a/plugins/addons/dashboard/main_stats.tpl
+++ b/plugins/addons/dashboard/main_stats.tpl
@@ -1,4 +1,4 @@
-<div class="plugin_section">
+<div class="plugin-section">
   <span class="legend">
     {t}Statistics{/t}
   </span>
diff --git a/plugins/addons/dashboard/users_accounts.tpl b/plugins/addons/dashboard/users_accounts.tpl
index 7f936105a483e391026b57f3de08133e390e66e7..fcb8f286284a29a58d280dc65e7ce1a5841d4c1d 100644
--- a/plugins/addons/dashboard/users_accounts.tpl
+++ b/plugins/addons/dashboard/users_accounts.tpl
@@ -1,4 +1,4 @@
-<div id="{$sectionId}"  class="plugin_section fullwidth">
+<div id="{$sectionId}"  class="plugin-section fullwidth">
   <span class="legend">
     {$section}
   </span>
diff --git a/plugins/addons/dashboard/users_stats.tpl b/plugins/addons/dashboard/users_stats.tpl
index 9ad688bb7e6d4eeeac5439f179260bb7e60b78f9..b158efd44a7ef0c664fc7f472f653ffb56ba4f3f 100644
--- a/plugins/addons/dashboard/users_stats.tpl
+++ b/plugins/addons/dashboard/users_stats.tpl
@@ -1,4 +1,4 @@
-<div id="{$sectionId}"  class="plugin_section">
+<div id="{$sectionId}"  class="plugin-section">
   <span class="legend">
     {$section}
   </span>
diff --git a/plugins/admin/acl/class_aclAssignment.inc b/plugins/admin/acl/class_aclAssignment.inc
index ecb2f283c2d821089ecc045081554711b2870e7b..34c80f3649f1a6500c6583afac5e21419af156ba 100644
--- a/plugins/admin/acl/class_aclAssignment.inc
+++ b/plugins/admin/acl/class_aclAssignment.inc
@@ -156,6 +156,11 @@ class ACLsAssignmentDialog extends GenericDialog
   function handle_finish ()
   {
     $this->dialog->save_object();
+    $messages = $this->dialog->check();
+    if (!empty($messages)) {
+      msg_dialog::displayChecks($messages);
+      return $this->dialog->execute();
+    }
     $this->attribute->addValue($this->dialog->getAclEntry());
     return FALSE;
   }
diff --git a/plugins/admin/acl/class_aclManagement.inc b/plugins/admin/acl/class_aclManagement.inc
index 28b3b493b419bb34b6a7f0a37d309d0b0b40eaf8..41e51104edc9594e0f65e282526a68966efa70e9 100644
--- a/plugins/admin/acl/class_aclManagement.inc
+++ b/plugins/admin/acl/class_aclManagement.inc
@@ -166,7 +166,8 @@ class aclManagement extends simpleManagement
 
   function configureHeadpage ()
   {
-    $this->headpage->objectTypes = array(); // Remove department types so that we don't mistake assignments with them.
+    /* Remove department types so that we don't mistake assignments with them. */
+    $this->headpage->objectTypes = array();
     $this->headpage->registerElementFilter('filterLabel', 'aclManagement::filterLabel');
     parent::configureHeadpage();
   }
diff --git a/plugins/admin/departments/class_country.inc b/plugins/admin/departments/class_country.inc
index 8c4f9c1e931d9faac4f0858ff132af6e33910720..466c94c40be74720d671877849dde67a459602d3 100644
--- a/plugins/admin/departments/class_country.inc
+++ b/plugins/admin/departments/class_country.inc
@@ -47,7 +47,7 @@ class country extends department
 
   static function getAttributesInfo ()
   {
-    $attributesInfo = parent::getDepartmentAttributesInfo(_('country'), self::$namingAttr);
+    $attributesInfo = parent::getDepartmentAttributesInfo(_('country'));
     unset($attributesInfo['location']);
     unset($attributesInfo['properties']['attrs'][3]); // category
     /* Country c attribut cannot contain any underscore */
diff --git a/plugins/admin/departments/class_dcObject.inc b/plugins/admin/departments/class_dcObject.inc
index 68551859a54fdae2a273cf60ace34a81a54dee34..5cb75677ba092f1da2b33224907012ab7f642341 100644
--- a/plugins/admin/departments/class_dcObject.inc
+++ b/plugins/admin/departments/class_dcObject.inc
@@ -48,7 +48,7 @@ class dcObject extends department
 
   static function getAttributesInfo ()
   {
-    $attributesInfo = parent::getDepartmentAttributesInfo(_('domain component'), self::$namingAttr);
+    $attributesInfo = parent::getDepartmentAttributesInfo(_('domain component'));
     unset($attributesInfo['location']);
     unset($attributesInfo['properties']['attrs'][3]); // category
     return $attributesInfo;
diff --git a/plugins/admin/departments/class_department.inc b/plugins/admin/departments/class_department.inc
index 2966e464126fc201b180ea29df66d41b50b045b5..741119217172f1121fd56b037f84637a6060ed3a 100644
--- a/plugins/admin/departments/class_department.inc
+++ b/plugins/admin/departments/class_department.inc
@@ -54,9 +54,9 @@ class department extends simplePlugin
 
   static function getAttributesInfo()
   {
-    return self::getDepartmentAttributesInfo(_('department'), self::$namingAttr);
+    return static::getDepartmentAttributesInfo(_('department'));
   }
-  static function getDepartmentAttributesInfo($name, $namingAttr)
+  static function getDepartmentAttributesInfo($name)
   {
     $attributesInfo = array(
       'properties' => array(
@@ -65,7 +65,7 @@ class department extends simplePlugin
           new BaseSelectorAttribute(''),
           new StringAttribute(
             sprintf(_('Name of %s'), $name), sprintf(_('A name for this %s'), $name),
-            $namingAttr, TRUE,
+            static::$namingAttr, TRUE,
             '', '', '/^[a-z0-9\._-]+$/i'
           ),
           new TextAreaAttribute(
@@ -113,7 +113,7 @@ class department extends simplePlugin
         )
       ),
     );
-    if ($namingAttr != 'ou') {
+    if (static::$namingAttr != 'ou') {
       $attributesInfo['properties']['attrs'][] = new HiddenAttribute('ou');
     }
     return $attributesInfo;
@@ -155,13 +155,7 @@ class department extends simplePlugin
       $this->attributesAccess['businessCategory']->setChoices($categoriesList);
     }
 
-    $this->attributesAccess[$this->getNamingAttr()]->setUnique(TRUE);
-  }
-
-  function getNamingAttr()
-  {
-    $class = get_class($this);
-    return $class::$namingAttr;
+    $this->attributesAccess[static::$namingAttr]->setUnique(TRUE);
   }
 
   /* Check values */
@@ -170,7 +164,7 @@ class department extends simplePlugin
     /* Call common method to give check the hook */
     $message = parent::check();
 
-    $namingAttr = $this->getNamingAttr();
+    $namingAttr = static::$namingAttr;
 
     if (tests::is_department_name_reserved($this->$namingAttr, $this->base)) {
       $message[] = msgPool::reserved(_("Name"));
@@ -195,8 +189,8 @@ class department extends simplePlugin
 
   function prepare_save()
   {
-    if ($this->getNamingAttr() != 'ou') {
-      $this->attributesAccess['ou']->setValue($this->attributesAccess[$this->getNamingAttr()]->getValue());
+    if (static::$namingAttr != 'ou') {
+      $this->attributesAccess['ou']->setValue($this->attributesAccess[static::$namingAttr]->getValue());
     }
     return parent::prepare_save();
   }
diff --git a/plugins/admin/departments/class_domain.inc b/plugins/admin/departments/class_domain.inc
index 8e50f5980aefc3da8a8d7042c433fdd3ec716aa7..aebd568de9a23cf2dfffc20556759b23d278fc71 100644
--- a/plugins/admin/departments/class_domain.inc
+++ b/plugins/admin/departments/class_domain.inc
@@ -48,7 +48,7 @@ class domain extends department
 
   static function getAttributesInfo ()
   {
-    $attributesInfo = parent::getDepartmentAttributesInfo(_('domain'), self::$namingAttr);
+    $attributesInfo = parent::getDepartmentAttributesInfo(_('domain'));
     unset($attributesInfo['location']);
     unset($attributesInfo['properties']['attrs'][3]); // category
     return $attributesInfo;
diff --git a/plugins/admin/departments/class_locality.inc b/plugins/admin/departments/class_locality.inc
index 8f94477506e2057c728536a92e52202c5bf22ac5..2bb901dda3be5fb89f60ab0d2d0b61288b6a2697 100644
--- a/plugins/admin/departments/class_locality.inc
+++ b/plugins/admin/departments/class_locality.inc
@@ -48,7 +48,7 @@ class locality extends department
 
   static function getAttributesInfo ()
   {
-    $attributesInfo = parent::getDepartmentAttributesInfo(_('locality'), self::$namingAttr);
+    $attributesInfo = parent::getDepartmentAttributesInfo(_('locality'));
     unset($attributesInfo['location']);
     unset($attributesInfo['properties']['attrs'][3]); // category
     return $attributesInfo;
diff --git a/plugins/admin/departments/class_organization.inc b/plugins/admin/departments/class_organization.inc
index b3a0ab4c59f92aa06371d1faa8307fdb6753b878..6b72ad4ce0403db878ff1255ccc65036ac0c6998 100644
--- a/plugins/admin/departments/class_organization.inc
+++ b/plugins/admin/departments/class_organization.inc
@@ -48,7 +48,7 @@ class organization extends department
 
   static function getAttributesInfo ()
   {
-    return parent::getDepartmentAttributesInfo(_('organization'), self::$namingAttr);
+    return parent::getDepartmentAttributesInfo(_('organization'));
   }
 }
 ?>
diff --git a/plugins/admin/departments/dep-list.xml b/plugins/admin/departments/dep-list.xml
index 4daa4cc48c642ffbdd1b923148645092658f8ee2..86cf577d32f8e615f7eb1968b61b585b9aec9633 100644
--- a/plugins/admin/departments/dep-list.xml
+++ b/plugins/admin/departments/dep-list.xml
@@ -14,7 +14,7 @@
     <layout>|20px;c|||70px;r|</layout>
 
     <column>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:objectType(row,dn)}</value>
     </column>
 
     <column>
@@ -43,9 +43,9 @@
   <actionmenu>
 
     <action>
-     <type>sub</type>
-     <image>geticon.php?context=actions&amp;icon=document-new&amp;size=16</image>
-     <label>Create</label>
+      <type>sub</type>
+      <image>geticon.php?context=actions&amp;icon=document-new&amp;size=16</image>
+      <label>Create</label>
     </action>
 
     <action>
diff --git a/plugins/admin/groups/class_groupManagement.inc b/plugins/admin/groups/class_groupManagement.inc
index 4e50e1951ae17d811fb85af61f170be314ac3be5..8412c914db621386a7de5561f2324d9343879bfa 100644
--- a/plugins/admin/groups/class_groupManagement.inc
+++ b/plugins/admin/groups/class_groupManagement.inc
@@ -49,24 +49,22 @@ class groupManagement extends simpleManagement
     $this->headpage->registerElementFilter('filterProperties', 'groupManagement::filterProperties');
   }
 
-  static function filterProperties($row, $dn, $gosaGroupObjects = NULL)
+  static function filterProperties($row, $dn, $objectType, $attrs, $gosaGroupObjects = NULL)
   {
     global $config;
     static $grouptabs = array();
 
     // Load information if needed
-    $ldap = $config->get_ldap_link();
-    $ldap->cat($dn);
     $result = '&nbsp;';
-    if ($attrs = $ldap->fetch()) {
-      if (objects::isOfType($attrs, 'ogroup')) {
+    if (!empty($attrs)) {
+      if (strtolower($objectType) == 'ogroup') {
         if (empty($gosaGroupObjects)) {
           return $result;
         } else {
           return self::filterGroupObjects($row, $gosaGroupObjects);
         }
       }
-      if (objects::isOfType($attrs, 'role')) {
+      if (strtolower($objectType) == 'role') {
         return '<input class="center" type="image" src="geticon.php?context=types&amp;icon=role&amp;size=16" '.
                  'alt="'._('Role').'" title="'._('Edit role properties').'" '.
                  'name="listing_edit_'.$row.'" style="padding:1px"/>';
diff --git a/plugins/admin/groups/class_ogroup.inc b/plugins/admin/groups/class_ogroup.inc
index ae4e57c5442a29f4ae4c0867f052c1d1578e50cc..c3c2de7d84379b5fbab780e59f3da87e1a344976 100644
--- a/plugins/admin/groups/class_ogroup.inc
+++ b/plugins/admin/groups/class_ogroup.inc
@@ -42,7 +42,7 @@ class ObjectsAttribute extends GenericDialogAttribute
             $infos = objects::infos($objectType);
             $this->types[$i]    = $code;
             $this->displays[$i] = $attrs[$infos['nameAttr']][0];
-            if ($objectType == 'user') {
+            if (strtolower($objectType) == 'user') {
               if (isset($attrs['description'][0])) {
                 $this->displays[$i] .= ' ['.$attrs['uid'][0].' - '.$attrs['description'][0].']';
               } else {
@@ -115,7 +115,8 @@ class ObjectsAttribute extends GenericDialogAttribute
 
   function listObjectTypes()
   {
-    $this->getDisplayValues(); // refresh types and displays
+    /* refresh types and displays */
+    $this->getDisplayValues();
     return '['.join(array_unique($this->types)).']';
   }
 
diff --git a/plugins/admin/groups/group-filter.xml b/plugins/admin/groups/group-filter.xml
index 44b95fff7bf8cda820170600de340882111c01ce..deb01de124b95a8f0c138f675c9bf2e4d40e6200 100644
--- a/plugins/admin/groups/group-filter.xml
+++ b/plugins/admin/groups/group-filter.xml
@@ -11,11 +11,7 @@
     <query>
       <backend>LDAP</backend>
       <filter>(&amp;(|(&amp;(objectClass=posixGroup)(|$PRIMARY$MAIL$SAMBA))$ROLE(&amp;(objectClass=groupOfNames)(|(gosaGroupObjects=[])$USER$GROUP$APPLICATION$SERVER$WORKSTATION$WINDOWS$TERMINAL$PRINTER$PHONE$SIMPLESECURITYOBJECT$UNKNOWN)))$NAME)</filter>
-      <attribute>dn</attribute>
-      <attribute>objectClass</attribute>
-      <attribute>cn</attribute>
-      <attribute>description</attribute>
-      <attribute>gosaGroupObjects</attribute>
+      <attribute>*</attribute>
     </query>
     <scope>auto</scope>
   </search>
@@ -52,7 +48,7 @@
     <set>(objectClass=organizationalRole)</set>
   </element>
 
- <element>
+  <element>
     <type>checkbox</type>
     <tag>USER</tag>
     <default>true</default>
diff --git a/plugins/admin/groups/group-list.xml b/plugins/admin/groups/group-list.xml
index 6529dff53b49644e458dbb2e679189b3e424cef7..24525b7436373a0eee8a2ec51dcaf23181c9dc4a 100644
--- a/plugins/admin/groups/group-list.xml
+++ b/plugins/admin/groups/group-list.xml
@@ -17,7 +17,7 @@
     <layout>|20px;c|||120px-d|150px-d;r|</layout>
 
     <department>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:departmentType(row,dn)}</value>
     </department>
 
     <department>
@@ -26,7 +26,7 @@
     </department>
 
     <column>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:objectType(row,dn)}</value>
     </column>
 
     <column>
@@ -47,7 +47,7 @@
 
     <column>
       <label>Properties</label>
-      <value>%{filter:filterProperties(row,dn,gosaGroupObjects)}</value>
+      <value>%{filter:filterProperties(row,dn,objectType,entry,gosaGroupObjects)}</value>
     </column>
 
     <column>
diff --git a/plugins/admin/users/class_userManagement.inc b/plugins/admin/users/class_userManagement.inc
index 3deb397441ec2f8a13da3a76734e24a725766d75..a01db4ab1652170bbbb348c1de8a4426cd8a9ba4 100644
--- a/plugins/admin/users/class_userManagement.inc
+++ b/plugins/admin/users/class_userManagement.inc
@@ -225,7 +225,7 @@ class userManagement extends simpleManagement
     return $label;
   }
 
-  static function filterProperties($row, $dn)
+  static function filterProperties($row, $dn, $attrs)
   {
     global $config;
     static $usertabs = array();
@@ -243,12 +243,10 @@ class userManagement extends simpleManagement
     }
 
     // Load information if needed
-    $ldap = $config->get_ldap_link();
-    $ldap->cat($dn);
     $result = '<input class="center" type="image" src="geticon.php?context=applications&amp;icon=user-info&amp;size=16" '.
                        'alt="'._('User account').'" title="'._('User account information').'" '.
                        'name="listing_edit_tab_user_'.$row.'"/>';
-    if ($attrs = $ldap->fetch()) {
+    if (!empty($attrs)) {
       if (in_array_ics ('fdTemplate', $attrs['objectClass'])) {
         $attrs = plugin::tpl_template_to_attrs($attrs);
       }
diff --git a/plugins/admin/users/tabs_user.inc b/plugins/admin/users/tabs_user.inc
deleted file mode 100644
index 344e2e1043fe0c8e9876c1ebf65a52b75abe2c6b..0000000000000000000000000000000000000000
--- a/plugins/admin/users/tabs_user.inc
+++ /dev/null
@@ -1,69 +0,0 @@
-<?php
-/*
-  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
-  Copyright (C) 2003  Cajus Pollmeier
-  Copyright (C) 2011-2016  FusionDirectory
-
-  This program is free software; you can redistribute it and/or modify
-  it under the terms of the GNU General Public License as published by
-  the Free Software Foundation; either version 2 of the License, or
-  (at your option) any later version.
-
-  This program is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-
-  You should have received a copy of the GNU General Public License
-  along with this program; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
-*/
-
-class usertabs extends simpleTabs
-{
-  function save_object($save_current = FALSE)
-  {
-    parent::save_object($save_current);
-
-    if (isset($this->by_object['gofaxAccount']) && isset($this->by_object['mailAccount']) && $this->by_object['mailAccount']->is_account) {
-      $this->by_object['gofaxAccount']->mail = $this->by_object['mailAccount']->mail;
-    }
-
-    /* Move facsimile / phone number if nessecary */
-    if ($this->last == 'user' && isset($this->by_object['gofaxAccount'])) {
-      /* Move number to fax plugin */
-      $this->by_object['gofaxAccount']->facsimileTelephoneNumber =
-        $this->by_object['user']->facsimileTelephoneNumber;
-
-      /* Move phone number if plugin exists */
-      if (isset($this->by_object['phoneAccount']) &&
-          !$this->by_object['phoneAccount']->is_account) {
-        $this->by_object['phoneAccount']->phoneNumbers = array();
-        if ($this->by_object['user']->telephoneNumber != '') {
-          $this->by_object['phoneAccount']->phoneNumbers[$this->by_object['user']->telephoneNumber] = $this->by_object['user']->telephoneNumber;
-        }
-      }
-    }
-
-    /* Move number from fax plugin */
-    if ($this->last == 'gofaxAccount') {
-      $this->by_object['user']->facsimileTelephoneNumber =
-        $this->by_object['gofaxAccount']->facsimileTelephoneNumber;
-    }
-
-    /* Move number from fax plugin */
-    if ($this->last == 'phoneAccount' && $this->by_object['phoneAccount']->is_account) {
-      reset($this->by_object['phoneAccount']->phoneNumbers);
-      $number = key($this->by_object['phoneAccount']->phoneNumbers);
-
-      /* Only the first phoneAccount number, if it is not empty */
-      if (!empty($number)) {
-        $this->by_object['user']->telephoneNumber = $number;
-      }
-    }
-
-    /* Possibly change acl base */
-    $this->set_acl_base();
-  }
-}
-?>
diff --git a/plugins/admin/users/user-filter.tpl b/plugins/admin/users/user-filter.tpl
index 65aefc9cce78ab65fcfca1f4997b0ce60fd3c4f9..5629779ba77c94aac2b25b31c45fa66da4e2a8da 100644
--- a/plugins/admin/users/user-filter.tpl
+++ b/plugins/admin/users/user-filter.tpl
@@ -1,44 +1,27 @@
 <div class="contentboxh">
- <p class="contentboxh">
-  {t}Filter{/t}
- </p>
+ <p>{t}Filter{/t}</p>
 </div>
 
 <div class="contentboxb">
+  {$TEMPLATES}&nbsp;<label for='TEMPLATES'>{t}Show templates{/t}</label><br/>
+  {$FUNCTIONAL}&nbsp;<label for='FUNCTIONAL'>{t}Show functional users{/t}</label><br/>
+  {if $USE_POSIX}
+    {$POSIX}&nbsp;<label for='POSIX'>{t}Show POSIX users{/t}</label><br/>
+  {/if}
+  {if $USE_MAIL}
+    {$MAIL}&nbsp;<label for='MAIL'>{t}Show Mail users{/t}</label><br/>
+  {/if}
+  {if $USE_SAMBA}
+    {$SAMBA}&nbsp;<label for='SAMBA'>{t}Show Samba users{/t}</label><br/>
+  {/if}
 
-{$TEMPLATES}&nbsp;<label for='TEMPLATES'>{t}Show templates{/t}</label><br/>
-{$FUNCTIONAL}&nbsp;<label for='FUNCTIONAL'>{t}Show functional users{/t}</label><br/>
-{if $USE_POSIX}
-  {$POSIX}&nbsp;<label for='POSIX'>{t}Show POSIX users{/t}</label><br/>
-{/if}
-{if $USE_MAIL}
-  {$MAIL}&nbsp;<label for='MAIL'>{t}Show Mail users{/t}</label><br/>
-{/if}
-{if $USE_SAMBA}
-  {$SAMBA}&nbsp;<label for='SAMBA'>{t}Show Samba users{/t}</label><br/>
-{/if}
+  <hr/>
+  {$SCOPE}
+  <hr/>
 
- <div style="width:100%;border-top:1px solid #AAAAAA"></div>
- {$SCOPE}
+  <label for="NAME"><img src="geticon.php?context=actions&amp;icon=system-search&amp;size=16" alt="Search"/></label>{$NAME}
 
- <table style="width:100%;border-top:1px solid #B0B0B0;">
-  <tr>
-   <td>
-    <label for="NAME">
-     <img src="geticon.php?context=actions&amp;icon=system-search&amp;size=16" alt='search'/>&nbsp;{t}Name{/t}
-    </label>
-   </td>
-   <td>
-    {$NAME}
-   </td>
-  </tr>
- </table>
-
- <table style="width:100%;background:#EEEEEE;border-top:1px solid #B0B0B0;">
-  <tr>
-   <td style="width:100%;text-align:right;">
+  <div>
     {$APPLY}
-   </td>
-  </tr>
- </table>
+  </div>
 </div>
diff --git a/plugins/admin/users/user-filter.xml b/plugins/admin/users/user-filter.xml
index b339fb99a12a786457b4a42080ad01e2c123c1ba..f79a1f1a68db4a22598a0a3cd394dcd39b0e5991 100644
--- a/plugins/admin/users/user-filter.xml
+++ b/plugins/admin/users/user-filter.xml
@@ -11,15 +11,7 @@
     <query>
       <backend>LDAP</backend>
       <filter>(&amp;$NAME(|(&amp;(objectClass=inetOrgPerson)(|$FUNCTIONAL$SAMBA$POSIX$MAIL))$TEMPLATES))</filter>
-      <attribute>dn</attribute>
-      <attribute>objectClass</attribute>
-      <attribute>givenName</attribute>
-      <attribute>sn</attribute>
-      <attribute>cn</attribute>
-      <attribute>uid</attribute>
-      <attribute>userPassword</attribute>
-      <attribute>fdTemplateField</attribute>
-      <attribute>mail</attribute>
+      <attribute>*</attribute>
     </query>
     <scope>auto</scope>
   </search>
diff --git a/plugins/admin/users/user-list.xml b/plugins/admin/users/user-list.xml
index a81fba24dc29e3b1ca1f7c697f5987b48987777a..45ba2194cd2ba58cb6b40aff4d82ff9fb168dc8a 100644
--- a/plugins/admin/users/user-list.xml
+++ b/plugins/admin/users/user-list.xml
@@ -17,7 +17,7 @@
     <layout>|20px;c||||150px-d|185px-d;r|</layout>
 
     <department>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:departmentType(row,dn)}</value>
     </department>
 
     <department>
@@ -26,14 +26,14 @@
     </department>
 
     <column>
-      <value>%{filter:objectType(dn,objectClass)}</value>
+      <value>%{filter:objectType(row,dn)}</value>
     </column>
 
     <column>
       <label>Surname</label>
       <sortAttribute>sn</sortAttribute>
       <sortType>string</sortType>
-      <value>%{filter:filterRowLink(pid,row,dn,sn,cn)}</value>
+      <value>%{filter:link(row,dn,"%s",sn,cn)}</value>
       <export>true</export>
     </column>
 
@@ -55,7 +55,7 @@
 
     <column>
       <label>Properties</label>
-      <value>%{filter:filterProperties(row,dn)}</value>
+      <value>%{filter:filterProperties(row,dn,entry)}</value>
     </column>
 
     <column>
@@ -68,33 +68,33 @@
   <actionmenu>
 
     <action>
-     <type>sub</type>
-     <image>geticon.php?context=actions&amp;icon=document-new&amp;size=16</image>
-     <label>Create</label>
-
-     <action>
-      <name>new_user</name>
-      <type>entry</type>
-      <image>geticon.php?context=types&amp;icon=user&amp;size=16</image>
-      <label>User</label>
-      <acl>user/user[c]</acl>
-     </action>
-
-     <action>
-      <name>template_apply_user</name>
-      <type>entry</type>
-      <image>geticon.php?context=types&amp;icon=user&amp;size=16</image>
-      <label>From template</label>
-      <acl>user/user[c]</acl>
-     </action>
-
-     <action>
-      <name>new_template_user</name>
-      <type>entry</type>
+      <type>sub</type>
       <image>geticon.php?context=actions&amp;icon=document-new&amp;size=16</image>
-      <label>Template</label>
-      <acl>user/template[c]</acl>
-     </action>
+      <label>Create</label>
+
+      <action>
+        <name>new_user</name>
+        <type>entry</type>
+        <image>geticon.php?context=types&amp;icon=user&amp;size=16</image>
+        <label>User</label>
+        <acl>user/user[c]</acl>
+      </action>
+
+      <action>
+        <name>template_apply_user</name>
+        <type>entry</type>
+        <image>geticon.php?context=types&amp;icon=user&amp;size=16</image>
+        <label>From template</label>
+        <acl>user/user[c]</acl>
+      </action>
+
+      <action>
+        <name>new_template_user</name>
+        <type>entry</type>
+        <image>geticon.php?context=actions&amp;icon=document-new&amp;size=16</image>
+        <label>Template</label>
+        <acl>user/template[c]</acl>
+      </action>
     </action>
 
     <action>
@@ -179,7 +179,6 @@
 
     <action>
       <name>cp</name>
-      <objectclass></objectclass>
       <type>copypaste</type>
     </action>
 
diff --git a/plugins/generic/references/contents.tpl b/plugins/generic/references/contents.tpl
index 2243e3968ff6f4155c0654f290b01fc17c296d9a..c4fec404ddad08c414f61fa63b98aab07c0fba71 100644
--- a/plugins/generic/references/contents.tpl
+++ b/plugins/generic/references/contents.tpl
@@ -1,4 +1,4 @@
-<div id="{$sectionId}" class="plugin_section{$sectionClasses}">
+<div id="{$sectionId}" class="plugin-section{$sectionClasses}">
   <span class="legend">
     {$section}
   </span>
diff --git a/plugins/personal/generic/class_user.inc b/plugins/personal/generic/class_user.inc
index eeba0d55b5b54a2e37bc51dabf3bec4bd4e671ee..d8e956c834b974c91c2c2d3d7c9c718fe6303934 100644
--- a/plugins/personal/generic/class_user.inc
+++ b/plugins/personal/generic/class_user.inc
@@ -350,7 +350,8 @@ class user extends simplePlugin
             _('Phone'), _('Business phone number'),
             'telephoneNumber', FALSE
           ),
-          new PhoneNumberAttribute ( // TODO: mobile attribute
+          /* TODO: mobile attribute */
+          new PhoneNumberAttribute (
             _('Mobile'), _('Business mobile number'),
             'mobile', FALSE
           ),
diff --git a/plugins/personal/posix/class_posixAccount.inc b/plugins/personal/posix/class_posixAccount.inc
index e5dd5a894cccad90266070d23a821cb335a0fe8a..18dfaede8afbefa05ec5ba2382a35af0fda1c53b 100644
--- a/plugins/personal/posix/class_posixAccount.inc
+++ b/plugins/personal/posix/class_posixAccount.inc
@@ -32,7 +32,7 @@
 
 class EpochDaysDateAttribute extends DateAttribute
 {
-  public static $secondsPerDay = 86400; //60 * 60 * 24
+  public static $secondsPerDay = 86400;
 
   function __construct ($label, $description, $ldapName, $required, $defaultValue = 'now', $acl = "")
   {
@@ -349,7 +349,7 @@ class posixAccount extends simplePlugin
           } else {
             $entry = $attrs['cn'][0].' ['.$attrs['description'][0].']';
           }
-          $groupMembership[$ldap->getDN()] = $entry;
+          $groupMembership[$attrs['dn']] = $entry;
         }
         asort($groupMembership);
         reset($groupMembership);
@@ -392,7 +392,8 @@ class posixAccount extends simplePlugin
 
     if ($ldap->count() > 0) {
       /* The copied user had its own group */
-      $this->primaryGroup = 0; // switch back to automatic
+      /* switch back to automatic */
+      $this->primaryGroup = 0;
     }
 
     $this->force_ids = FALSE;
@@ -659,7 +660,7 @@ class posixAccount extends simplePlugin
     if ($ldap->count() != 0) {
       $attrs = $ldap->fetch();
       if ($attrs['cn'][0] == $this->getUid() && !isset($this->attrs['memberUid'])) {
-        $ldap->rmDir($ldap->getDN());
+        $ldap->rmDir($attrs['dn']);
       }
     }
   }
diff --git a/plugins/personal/roles/class_userRoles.inc b/plugins/personal/roles/class_userRoles.inc
index 47c3d1ae450ed1099406658b5257a49b6db50429..e16a5d92ebd772045a23f79ad42d9a8c403b8c9f 100644
--- a/plugins/personal/roles/class_userRoles.inc
+++ b/plugins/personal/roles/class_userRoles.inc
@@ -94,10 +94,14 @@ class userRoles extends simplePlugin
         $this->groupsMembership = $this->attrs['userGroups'];
       }
     } else {
-      $myGroups  = objects::ls(
-        'ogroup', NULL, NULL,
-        '(member='.$this->dn.')'
-      );
+      if (($this->dn != '') && ($this->dn != 'new')) {
+        $myGroups  = objects::ls(
+          'ogroup', NULL, NULL,
+          '(member='.$this->dn.')'
+        );
+      } else {
+        $myGroups = array();
+      }
       $this->attributesAccess['groupsMembership']->setValue(array_keys($myGroups));
       $this->savedGroupsMembership = array_keys($myGroups);
     }
@@ -123,14 +127,21 @@ class userRoles extends simplePlugin
         $this->rolesMembership = $this->attrs['userRoles'];
       }
     } else {
-      $myRoles  = objects::ls(
-        'role', NULL, NULL,
-        '(roleOccupant='.$this->dn.')'
-      );
+      if (($this->dn != '') && ($this->dn != 'new')) {
+        $myRoles  = objects::ls(
+          'role', NULL, NULL,
+          '(roleOccupant='.$this->dn.')'
+        );
+      } else {
+        $myRoles = array();
+      }
       $this->attributesAccess['rolesMembership']->setValue(array_keys($myRoles));
       $this->savedRolesMembership = array_keys($myRoles);
     }
 
+    $this->is_account = ((count($this->rolesMembership) > 0) || (count($this->groupsMembership) > 0));
+    $this->initially_was_account = $this->is_account;
+
     $this->updateAttributesValues();
   }
 
@@ -145,13 +156,12 @@ class userRoles extends simplePlugin
       }
       return FALSE;
     }
-    return ((objects::count('role', NULL, '(roleOccupant='.$attrs['dn'].')') > 0) ||
-            (objects::count('ogroup', NULL, '(member='.$attrs['dn'].')') > 0));
+    return FALSE;
   }
 
   function remove_from_parent()
   {
-    if (!$this->is_template) {
+    if (!$this->is_template && ($this->dn != '') && ($this->dn != 'new')) {
       /* Remove all groups */
       foreach ($this->savedGroupsMembership as $ogroupdn) {
         $g = objects::open($ogroupdn, 'ogroup');
diff --git a/setup/class_setup.inc b/setup/class_setup.inc
index ea42be777b5d54ce6ba7751765d7a94ee37795fc..c2889f118870e13de5092a198c5be4c67c678238 100644
--- a/setup/class_setup.inc
+++ b/setup/class_setup.inc
@@ -40,9 +40,12 @@ class fake_userinfo extends userinfo
 
 class setup
 {
-  var $i_steps;               // Number of setup steps
-  var $i_current        = 0;  // Current step
-  var $i_previous       = 0;  // Previous setup step;
+  /* Number of setup steps */
+  var $i_steps;
+  /* Current step */
+  var $i_current        = 0;
+  /* Previous setup step; */
+  var $i_previous       = 0;
   var $i_config         = 4;
   var $o_steps          = array();
   var $captured_values  = array();
@@ -207,18 +210,18 @@ class setup
       if ($b_enabled) {
         if ($b_active) {
           $str .= '<li class="menuitem menucurrent" title="'.$s_description.'">';
-          $str .= '<a class="navigation_title">'.$s.$s_short_name.'</a>';
-          $str .= '<a class="navigation_info">'.$s_description.'</a>';
+          $str .= '<a class="navigation-title">'.$s.$s_short_name.'</a>';
+          $str .= '<a class="navigation-info">'.$s_description.'</a>';
           $str .= '</li>';
         } else {
           $str .= '<li class="menuitem" title="'.$s_description.'">';
           $str .= '<a onClick="document.mainform.setup_goto_step.value=\''.$key.'\';document.mainform.submit();"
-            class="navigation_title">'.$s.$s_short_name.'</a>';
+            class="navigation-title">'.$s.$s_short_name.'</a>';
           $str .= '</li>';
         }
       } else {
         $str .= '<li class="menuitem disabled" title="'.$s_description.'">';
-        $str .= '<a class="navigation_title">'.$s.$s_short_name.'</a>';
+        $str .= '<a class="navigation-title">'.$s.$s_short_name.'</a>';
         $str .= '</li>';
       }
     }
diff --git a/setup/class_setupStep_Finish.inc b/setup/class_setupStep_Finish.inc
index ebc4bc6455838117d6f331e299ecc695e4d6b27b..318f4c500dedcc280704ecbdac4607c157f31d50 100644
--- a/setup/class_setupStep_Finish.inc
+++ b/setup/class_setupStep_Finish.inc
@@ -76,7 +76,7 @@ class Step_Finish extends setupStep
 
     /* Now we can save LDAP config */
     $config->loadPlist($plist);
-    $config->checkLdapConfig();
+    $config->checkLdapConfig(TRUE);
   }
 
   function execute()
diff --git a/setup/class_setupStep_Language.inc b/setup/class_setupStep_Language.inc
index cfd3e4cd7ff555400ca771ce779c13121de62f8a..088bff6e0ca91930189506c906153d40ce5324ab 100644
--- a/setup/class_setupStep_Language.inc
+++ b/setup/class_setupStep_Language.inc
@@ -28,7 +28,7 @@ class Step_Language extends setupStep
     return array(
       'lang' => array(
         'name'      => _('Preferred language'),
-        'class'     => array('fullwidth', 'setup_language'),
+        'class'     => array('fullwidth', 'setup-language'),
         'attrs'     => array(
           new DisplayAttribute(
             '', '',
diff --git a/setup/class_setupStep_Migrate.inc b/setup/class_setupStep_Migrate.inc
index eec385b5ca386453c840767531f6227f22bc19d0..02d6f68c0a5ef56e00fcb92ae40af1b2370f97ec 100644
--- a/setup/class_setupStep_Migrate.inc
+++ b/setup/class_setupStep_Migrate.inc
@@ -352,7 +352,9 @@ class Step_Migrate extends setupStep
       /* Try to detect base class type, e.g. is it a dcObject */
       $dep_types  = departmentManagement::getDepartmentTypes();
       $dep_type   = "";
-      $attrs['objectClass'][] = 'gosaDepartment'; // This allow us to filter it as if it was already migrated
+      $attrs['objectClass'][] = 'gosaDepartment';
+
+      /* This allow us to filter it as if it was already migrated */
       foreach ($dep_types as $type) {
         if (objects::isOfType($attrs, $type)) {
           $dep_type = $type;
@@ -883,7 +885,7 @@ class Step_Migrate extends setupStep
       }
     }
 
-    // Reload base OC
+    /* Reload base OC */
     $this->checks['baseOC']->run();
     return '';
   }
diff --git a/setup/setup_checks.tpl b/setup/setup_checks.tpl
index 2479df2fd4ea4f90dd2ceb20ca07e9150e4d7a31..80776db1c243919eb69e191e9c62e2353ef1bdf7 100644
--- a/setup/setup_checks.tpl
+++ b/setup/setup_checks.tpl
@@ -1,4 +1,4 @@
-<div id="{$sectionId}" class="plugin_section">
+<div id="{$sectionId}" class="plugin-section">
   <span class="legend">
     {$section}
   </span>
@@ -10,34 +10,34 @@
         {if $val.SOLUTION != "" && !$val.RESULT}
 
           <!-- Add ability to display info popup -->
-          <div class='step2_entry_container_info' style='background-color:{cycle values="#F0F0F0, #FFF"}'>
+          <div class='step2-entry-container-info' style='background-color:{cycle values="#F0F0F0, #FFF"}'>
         {else}
 
           <!-- Normal entry everything is fine -->
-          <div class='step2_entry_container' style='background-color:{cycle values="#F0F0F0, #FFF"}'>
+          <div class='step2-entry-container' style='background-color:{cycle values="#F0F0F0, #FFF"}'>
         {/if}
 
-        <div class='step2_entry_name'>{$val.NAME}</div>
-        <div class='step2_entry_status'>
+        <div class='step2-entry-name'>{$val.NAME}</div>
+        <div class='step2-entry-status'>
 
         {if $val.RESULT}
-          <div class='step2_successful'>{t}Ok{/t}</div>
+          <div class='step2-successful'>{t}Ok{/t}</div>
         {else}
           {if $val.MUST}
-            <div class='step2_failed'>{t}Error{/t}</div>
+            <div class='step2-failed'>{t}Error{/t}</div>
           {else}
-            <div class='step2_warning'>{t}Warning{/t}</div>
+            <div class='step2-warning'>{t}Warning{/t}</div>
           {/if}
           {if $val.SOLUTION != ""}
 
           <!-- Information popup -->
-          <div class='solution_visible' id='sol_{$key}'>
+          <div class='solution-visible' id='sol_{$key}'>
             {if $val.MUST}
-              <div class='step2_failed_text' style="background-image: url('geticon.php?context=status&icon=dialog-error&size=16')">
+              <div class='step2-failed-text' style="background-image: url('geticon.php?context=status&icon=dialog-error&size=16')">
               {$val.SOLUTION}<br/>
               <b>{t}FusionDirectory will NOT run without fixing this.{/t}</b>
             {else}
-              <div class="step2_warning_text" style="background-image: url('geticon.php?context=status&icon=dialog-warning&size=16')">
+              <div class="step2-warning-text" style="background-image: url('geticon.php?context=status&icon=dialog-warning&size=16')">
               {$val.SOLUTION}<br/>
               <b>{t}FusionDirectory will run without fixing this.{/t}</b>
             {/if}
diff --git a/setup/setup_frame.tpl b/setup/setup_frame.tpl
index 2a7be1d4594d4ad9e88355dd81786468729e410a..071f5365c7636c16143a1b124394f27cb7a7bd75 100644
--- a/setup/setup_frame.tpl
+++ b/setup/setup_frame.tpl
@@ -2,14 +2,14 @@
 <body class="setup">
   {$php_errors}
   <form action="setup.php" name="mainform" id="mainform" method="post" enctype="multipart/form-data">
-    <div class="setup_header">
-      <div id="header_left">
-        <img id="fd_logo" class="optional" src="geticon.php?context=applications&amp;icon=fusiondirectory&amp;size=48" alt="FusionDirectory"/>
+    <div class="setup-header">
+      <div id="header-left">
+        <img id="fd-logo" class="optional" src="geticon.php?context=applications&amp;icon=fusiondirectory&amp;size=48" alt="FusionDirectory"/>
         <a class="plugtop">
           <img src="{$headline_image|escape}" alt="{t}{$headline}{/t}"/>{t}{$headline}{/t}
         </a>
       </div>
-      <div id="header_right">
+      <div id="header-right">
         <div class="version">
           {$version}
         </div>
@@ -20,7 +20,7 @@
       <tbody>
         <tr>
           <!-- Menu -->
-          <td id="menucell" class="setup_navigation">
+          <td id="menucell" class="setup-navigation">
             {$navigation}
             <br/>
           </td>
@@ -28,7 +28,7 @@
           <!-- Plugin window -->
           <td id="maincell">
             {$msg_dialogs}
-            <div class="plugin_window">
+            <div class="plugin-window">
               {$contents}
             </div>
           </td>
diff --git a/setup/setup_migrate.tpl b/setup/setup_migrate.tpl
index fe194fdf5acf607472465baa301674e46dd63510..346595123a707c7d598b5513d5283c4f38eb940f 100644
--- a/setup/setup_migrate.tpl
+++ b/setup/setup_migrate.tpl
@@ -1,4 +1,4 @@
-<div id="{$sectionId}" class="plugin_section{$sectionClasses}">
+<div id="{$sectionId}" class="plugin-section{$sectionClasses}">
   <span class="legend">
     {$section}
   </span>
@@ -11,17 +11,17 @@
         <div style="width:98%; padding:4px; background-color:{cycle values="#F0F0F0, #FFF"}">
           {if $check->error}
             <!-- Add ability to display info popup -->
-            <div class="step2_entry_container_info">
+            <div class="step2-entry-container-info">
           {else}
             <!-- Normal entry everything is fine -->
-            <div class="step2_entry_container">
+            <div class="step2-entry-container">
           {/if}
-          <div class="step2_entry_name"><b>{$check->title}</b></div>
-          <div class="step2_entry_status">
+          <div class="step2-entry-name"><b>{$check->title}</b></div>
+          <div class="step2-entry-status">
             {if $check->status}
-              <div class="step2_successful">{$check->msg}</div>
+              <div class="step2-successful">{$check->msg}</div>
             {else}
-              <div class="step2_failed">{$check->msg}</div>
+              <div class="step2-failed">{$check->msg}</div>
             {/if}
           </div>
             {if $check->error}
diff --git a/setup/setup_migrate_baseOC.tpl b/setup/setup_migrate_baseOC.tpl
index 1a320dbbce3c726bda8635f6dbfe06f346d0b83e..4a85846dff236694f76c63d6a5d104d290a971fc 100644
--- a/setup/setup_migrate_baseOC.tpl
+++ b/setup/setup_migrate_baseOC.tpl
@@ -3,14 +3,14 @@
     <h2>{t}Add required object classes to the LDAP base{/t}</h2>
 
     <b>{t}Current{/t}</b>
-    <div class="step2_entry_container_info">
+    <div class="step2-entry-container-info">
       <div style='padding-left:20px;'>
         <pre>{$infos.current}</pre>
       </div>
     </div>
     <br/>
     <b>{t}After migration{/t}</b>
-    <div class="step2_entry_container_info">
+    <div class="step2-entry-container-info">
       <div style='padding-left:20px;'>
         <pre>{$infos.target}</pre>
       </div>
diff --git a/setup/setup_migrate_gosaAccounts.tpl b/setup/setup_migrate_gosaAccounts.tpl
index 6094760c643ef347389dbf90819ba16bdd3ef26c..a2ebcdd4795042ad22aa069b060976d440c9fcfa 100644
--- a/setup/setup_migrate_gosaAccounts.tpl
+++ b/setup/setup_migrate_gosaAccounts.tpl
@@ -25,7 +25,7 @@
         <input type="checkbox" name="migrate_{$key}" checked="checked" id="migrate_{$key}"/>
         <label for="migrate_{$key}">{$entry.dn}</label>
         {if $entry.after != ""}
-          <div class="step2_entry_container_info">
+          <div class="step2-entry-container-info">
             {t}Current{/t}
             <div style="padding-left:20px;">
 <pre>
@@ -42,7 +42,7 @@ dn: {$entry.dn}
             </div>
           </div>
         {elseif $entry.ldif != ""}
-          <div class="step2_entry_container_info">
+          <div class="step2-entry-container-info">
             <div style="padding-left:20px;">
               <pre>{$entry.ldif}</pre>
             </div>